From e6f5e95bdffc5a9e7c0d560a566f04116aa6b2b0 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 4 Sep 2024 17:00:36 +0200 Subject: [PATCH 01/58] upgrage to nux 3.13.1 --- frontend/nuxt.config.js | 270 +++++++++++++++++++++------------------- frontend/package.json | 2 +- 2 files changed, 142 insertions(+), 130 deletions(-) diff --git a/frontend/nuxt.config.js b/frontend/nuxt.config.js index ac1435cb..b2b07395 100644 --- a/frontend/nuxt.config.js +++ b/frontend/nuxt.config.js @@ -6,134 +6,146 @@ const ONE_DAY = 60 * 60 * 24 * 1000 const ONE_WEEK = ONE_DAY * 7 export default defineNuxtConfig({ + ssr: true, - ssr: true, - build: { - transpile: ["vuetify", "vue-toastification/nuxt"], - }, - // For speeding up load time in development, loading in all components from external packages increases the loading time, here we disabling to auto imports - components: { - dirs: [ - '~/components' - ] - }, - experimental: { - inlineSSRStyles: false - }, - nitro: { - compressPublicAssets: true, - }, - app: { - head: { - title: "Citizen Voice", - link: [ - { rel: 'icon', type: 'image/x-icon', href: '/favicon.png' }, - { - rel: 'stylesheet', href: 'https://unpkg.com/leaflet@1.9.3/dist/leaflet.css', - integrity: 'sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=', crossorigin: '' - }, - ], - script: [ - { - src: "https://unpkg.com/leaflet@1.9.3/dist/leaflet.js", - integrity: "sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=", - crossorigin: "" - } - ] - } - }, - css: [ - '@mdi/font/css/materialdesignicons.min.css', - ], - imports: { - dirs: [ - 'stores', - // Scan top-level modules - 'composables', - // ... or scan modules nested one level deep with a specific name and file extension - 'composables/*/index.{ts,js,mjs,mts}', - // ... or scan all modules within given directory - 'composables/**' - ] - }, - plugins: [ - // { src: '@/plugins/vuedraggable' } - // { src: '@/plugins/vue-draggable/index.js', ssr: false } - ], - vite: { - define: { - 'process.env.DEBUG': false, - }, - ssr: { - noExternal: ["vuetify"], - }, - }, - modules: [ - // We are using @pinia/nuxt for the store - '@pinia/nuxt', - - // Nuxt api party is used for the proxy API - 'nuxt-api-party', - - // We are not using this now but maybe in the future - // '@kevinmarrec/nuxt-pwa', - - // We are using tailwind utility classes instead of the Vuetify utility css classes - // More info: https://tailwindcss.nuxtjs.org/ - '@nuxtjs/tailwindcss', - - // We are using NuxtOpenFetch for OpenAPI clients - // More info: https://nuxt-open-fetch.vercel.app/setup/quick-start - - - // this adds the vuetify vite plugin - // also produces type errors in the current beta release - async (options, nuxt) => { - nuxt.hooks.hook("vite:extendConfig", (config) => config.plugins.push(vuetify())); - }, - ], - - - runtimeConfig: { - cookieName: process.env.COOKIE_NAME || '__session', - cookieSecret: process.env.COOKIE_SECRET || 'secret', - cookieExpires: parseInt(process.env.COOKIE_REMEMBER_ME_EXPIRES || ONE_DAY.toString(), 10), // 1 day - cookieRememberMeExpires: parseInt(process.env.COOKIE_REMEMBER_ME_EXPIRES || ONE_WEEK.toString(), 10), // 7 days - public: { - baseAPI: process.env.BASE_API || 'http://localhost:3000', - apiHostPayment: '', - }, - paymentSecretKey: '', - }, - // See: https://github.com/johannschopplich/nuxt-api-party - apiParty: { - endpoints: { - cmsApi: { // Becomes `$cmsApi()` and useCmsApiData() - url: process.env.API_PARTY_CMS_URL, - schema: './openapi/citizenvoice/openapi.yaml' - }, - authApi: { // Becomes `$authApi()` and useAuthApiData() - url: process.env.API_PARTY_AUTH_URL, - schema: './openapi/citizenvoice/openapi.yaml' - } - } - }, - hooks: { - 'pages:extend'(routes) { - routes.push({ - name: "survey-design", - path: "/design/surveys/create", - file: path.resolve(__dirname, './pages/design/surveys/[_id]/index.vue') - }); - return routes - } - }, - routeRules: { - // Render these routes with SPA // See: https://nuxt.com/docs/guide/concepts/rendering#route-rules - '/design/**': { ssr: false }, - '/design/surveys/**': { ssr: false }, - '/user/**': { ssr: false }, - '/survey/**': { ssr: false }, - }, -}) + build: { + transpile: ["vuetify", "vue-toastification/nuxt"], + }, + // For speeding up load time in development, loading in all components from external packages increases the loading time, here we disabling to auto imports + components: { + dirs: [ + '~/components' + ] + }, + + experimental: { + inlineSSRStyles: false + }, + + nitro: { + compressPublicAssets: true, + }, + + app: { + head: { + title: "Citizen Voice", + link: [ + { rel: 'icon', type: 'image/x-icon', href: '/favicon.png' }, + { + rel: 'stylesheet', href: 'https://unpkg.com/leaflet@1.9.3/dist/leaflet.css', + integrity: 'sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=', crossorigin: '' + }, + ], + script: [ + { + src: "https://unpkg.com/leaflet@1.9.3/dist/leaflet.js", + integrity: "sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=", + crossorigin: "" + } + ] + } + }, + + css: [ + '@mdi/font/css/materialdesignicons.min.css', + ], + + imports: { + dirs: [ + 'stores', + // Scan top-level modules + 'composables', + // ... or scan modules nested one level deep with a specific name and file extension + 'composables/*/index.{ts,js,mjs,mts}', + // ... or scan all modules within given directory + 'composables/**' + ] + }, + + plugins: [ + // { src: '@/plugins/vuedraggable' } + // { src: '@/plugins/vue-draggable/index.js', ssr: false } + ], + + vite: { + define: { + 'process.env.DEBUG': false, + }, + ssr: { + noExternal: ["vuetify"], + }, + }, + + modules: [ + // We are using @pinia/nuxt for the store + '@pinia/nuxt', + + // Nuxt api party is used for the proxy API + 'nuxt-api-party', + + // We are not using this now but maybe in the future + // '@kevinmarrec/nuxt-pwa', + + // We are using tailwind utility classes instead of the Vuetify utility css classes + // More info: https://tailwindcss.nuxtjs.org/ + '@nuxtjs/tailwindcss', + + // We are using NuxtOpenFetch for OpenAPI clients + // More info: https://nuxt-open-fetch.vercel.app/setup/quick-start + + + // this adds the vuetify vite plugin + // also produces type errors in the current beta release + async (options, nuxt) => { + nuxt.hooks.hook("vite:extendConfig", (config) => config.plugins.push(vuetify())); + }, + ], + + runtimeConfig: { + cookieName: process.env.COOKIE_NAME || '__session', + cookieSecret: process.env.COOKIE_SECRET || 'secret', + cookieExpires: parseInt(process.env.COOKIE_REMEMBER_ME_EXPIRES || ONE_DAY.toString(), 10), // 1 day + cookieRememberMeExpires: parseInt(process.env.COOKIE_REMEMBER_ME_EXPIRES || ONE_WEEK.toString(), 10), // 7 days + public: { + baseAPI: process.env.BASE_API || 'http://localhost:3000', + apiHostPayment: '', + }, + paymentSecretKey: '', + }, + + // See: https://github.com/johannschopplich/nuxt-api-party + apiParty: { + endpoints: { + cmsApi: { // Becomes `$cmsApi()` and useCmsApiData() + url: process.env.API_PARTY_CMS_URL, + schema: './openapi/citizenvoice/openapi.yaml' + }, + authApi: { // Becomes `$authApi()` and useAuthApiData() + url: process.env.API_PARTY_AUTH_URL, + schema: './openapi/citizenvoice/openapi.yaml' + } + } + }, + + hooks: { + 'pages:extend'(routes) { + routes.push({ + name: "survey-design", + path: "/design/surveys/create", + file: path.resolve(__dirname, './pages/design/surveys/[_id]/index.vue') + }); + return routes + } + }, + + routeRules: { + // Render these routes with SPA // See: https://nuxt.com/docs/guide/concepts/rendering#route-rules + '/design/**': { ssr: false }, + '/design/surveys/**': { ssr: false }, + '/user/**': { ssr: false }, + '/survey/**': { ssr: false }, + }, + + compatibilityDate: '2024-09-04', +}) \ No newline at end of file diff --git a/frontend/package.json b/frontend/package.json index 906335f5..36eaff47 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -19,7 +19,7 @@ "autoprefixer": "^10.4.13", "eslint": "^8.27.0", "eslint-plugin-nuxt": "^4.0.0", - "nuxt": "^3.11.2", + "nuxt": "^3.13.1", "openapi-typescript": "^6.7.5", "postcss": "^8.4.21", "sass": "^1.58.0", From cd1079b096506f7edd50153288a1ed668bb8e01d Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 4 Sep 2024 18:26:48 +0200 Subject: [PATCH 02/58] bump up dependencies to attempt to fix dependencies warnings --- frontend/package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 36eaff47..aea950ba 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -14,12 +14,12 @@ "devDependencies": { "@kevinmarrec/nuxt-pwa": "^0.0.2", "@nuxtjs/eslint-config-typescript": "^12.0.0", - "@nuxtjs/tailwindcss": "^6.4.1", - "@pinia/nuxt": "^0.5.1", + "@nuxtjs/tailwindcss": "^6.0.0", + "@pinia/nuxt": "^0.5.0", "autoprefixer": "^10.4.13", "eslint": "^8.27.0", "eslint-plugin-nuxt": "^4.0.0", - "nuxt": "^3.13.1", + "nuxt": "^3.13.0", "openapi-typescript": "^6.7.5", "postcss": "^8.4.21", "sass": "^1.58.0", @@ -27,28 +27,28 @@ }, "dependencies": { "@mdi/font": "^7.1.96", - "@nuxt-alt/auth": "^2.1.9", - "@nuxt-alt/http": "^1.5.5", + "@nuxt-alt/auth": "^3.0.0", + "@nuxt-alt/http": "^1.0", "@vue-leaflet/vue-leaflet": "^0.8.4", - "@vueuse/nuxt": "^9.6.0", + "@vueuse/nuxt": "^11.0.0", "dayjs": "^1.11.6", "leaflet": "^1.9.3", "leaflet-draw": "^1.0.4", "leaflet-draw-toolbar": "^0.3.0-alpha.1", "leaflet-toolbar": "^0.4.0-alpha.2", "nuxt-api-party": "^2.0.0", - "pinia": "^2.1.7", + "pinia": "^2.2.0", "ramda": "^0.28.0", "typescript": "^5.4.5", "uuid": "^9.0.0", "vee-validate": "^4.9.5", - "vite-plugin-vuetify": "^1.0.2", + "vite-plugin-vuetify": "^2.0.0", "vue-toastification": "^2.0.0-rc.5", "vuedraggable": "^4.1.0", - "vuetify": "^3.3.0", + "vuetify": "^3.0.0", "yup": "^0.32.11" }, "overrides": { - "vue": "latest" + "vue": "^3.0.0" } } From c882ff3cb44336ff6b4e2fde19d02efeba0ed9d8 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 4 Sep 2024 18:27:13 +0200 Subject: [PATCH 03/58] bump up dependencies --- frontend/yarn.lock | 4273 ++++++++++++++++++-------------------------- 1 file changed, 1781 insertions(+), 2492 deletions(-) diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 884b3458..bde02866 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -15,121 +15,101 @@ "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" -"@antfu/utils@^0.7.7": - version "0.7.7" - resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.7.tgz#26ea493a831b4f3a85475e7157be02fb4eab51fb" - integrity sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg== +"@antfu/utils@^0.7.10": + version "0.7.10" + resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.10.tgz#ae829f170158e297a9b6a28f161a8e487d00814d" + integrity sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww== -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2": - version "7.24.2" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" - integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2", "@babel/code-frame@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== dependencies: - "@babel/highlight" "^7.24.2" + "@babel/highlight" "^7.24.7" picocolors "^1.0.0" -"@babel/compat-data@^7.23.5": - version "7.24.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a" - integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ== +"@babel/compat-data@^7.25.2": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb" + integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ== -"@babel/core@^7.23.0", "@babel/core@^7.23.3", "@babel/core@^7.23.7": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.5.tgz#15ab5b98e101972d171aeef92ac70d8d6718f06a" - integrity sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA== +"@babel/core@^7.23.0", "@babel/core@^7.23.7", "@babel/core@^7.24.7": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77" + integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.24.2" - "@babel/generator" "^7.24.5" - "@babel/helper-compilation-targets" "^7.23.6" - "@babel/helper-module-transforms" "^7.24.5" - "@babel/helpers" "^7.24.5" - "@babel/parser" "^7.24.5" - "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.5" - "@babel/types" "^7.24.5" + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.0" + "@babel/helper-compilation-targets" "^7.25.2" + "@babel/helper-module-transforms" "^7.25.2" + "@babel/helpers" "^7.25.0" + "@babel/parser" "^7.25.0" + "@babel/template" "^7.25.0" + "@babel/traverse" "^7.25.2" + "@babel/types" "^7.25.2" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.5.tgz#e5afc068f932f05616b66713e28d0f04e99daeb3" - integrity sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA== +"@babel/generator@^7.25.0", "@babel/generator@^7.25.6": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.6.tgz#0df1ad8cb32fe4d2b01d8bf437f153d19342a87c" + integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw== dependencies: - "@babel/types" "^7.24.5" + "@babel/types" "^7.25.6" "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== +"@babel/helper-annotate-as-pure@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" + integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.24.7" -"@babel/helper-compilation-targets@^7.23.6": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" - integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== +"@babel/helper-compilation-targets@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c" + integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== dependencies: - "@babel/compat-data" "^7.23.5" - "@babel/helper-validator-option" "^7.23.5" - browserslist "^4.22.2" + "@babel/compat-data" "^7.25.2" + "@babel/helper-validator-option" "^7.24.8" + browserslist "^4.23.1" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.24.1", "@babel/helper-create-class-features-plugin@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz#7d19da92c7e0cd8d11c09af2ce1b8e7512a6e723" - integrity sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-function-name" "^7.23.0" - "@babel/helper-member-expression-to-functions" "^7.24.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.24.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.24.5" +"@babel/helper-create-class-features-plugin@^7.24.7", "@babel/helper-create-class-features-plugin@^7.25.0": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz#57eaf1af38be4224a9d9dd01ddde05b741f50e14" + integrity sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.8" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/helper-replace-supers" "^7.25.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/traverse" "^7.25.4" semver "^6.3.1" -"@babel/helper-environment-visitor@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" - integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== - -"@babel/helper-function-name@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" - integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== - dependencies: - "@babel/template" "^7.22.15" - "@babel/types" "^7.23.0" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== +"@babel/helper-member-expression-to-functions@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6" + integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA== dependencies: - "@babel/types" "^7.22.5" + "@babel/traverse" "^7.24.8" + "@babel/types" "^7.24.8" -"@babel/helper-member-expression-to-functions@^7.23.0", "@babel/helper-member-expression-to-functions@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz#5981e131d5c7003c7d1fa1ad49e86c9b097ec475" - integrity sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA== +"@babel/helper-module-imports@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" + integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== dependencies: - "@babel/types" "^7.24.5" - -"@babel/helper-module-imports@^7.24.3": - version "7.24.3" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" - integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== - dependencies: - "@babel/types" "^7.24.0" + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" "@babel/helper-module-imports@~7.22.15": version "7.22.15" @@ -138,120 +118,115 @@ dependencies: "@babel/types" "^7.22.15" -"@babel/helper-module-transforms@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz#ea6c5e33f7b262a0ae762fd5986355c45f54a545" - integrity sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-module-imports" "^7.24.3" - "@babel/helper-simple-access" "^7.24.5" - "@babel/helper-split-export-declaration" "^7.24.5" - "@babel/helper-validator-identifier" "^7.24.5" - -"@babel/helper-optimise-call-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" - integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz#a924607dd254a65695e5bd209b98b902b3b2f11a" - integrity sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ== - -"@babel/helper-replace-supers@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1" - integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-member-expression-to-functions" "^7.23.0" - "@babel/helper-optimise-call-expression" "^7.22.5" - -"@babel/helper-simple-access@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz#50da5b72f58c16b07fbd992810be6049478e85ba" - integrity sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ== - dependencies: - "@babel/types" "^7.24.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" - integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-split-export-declaration@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz#b9a67f06a46b0b339323617c8c6213b9055a78b6" - integrity sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q== - dependencies: - "@babel/types" "^7.24.5" - -"@babel/helper-string-parser@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" - integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== - -"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz#918b1a7fa23056603506370089bd990d8720db62" - integrity sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA== - -"@babel/helper-validator-option@^7.23.5": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" - integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== - -"@babel/helpers@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.5.tgz#fedeb87eeafa62b621160402181ad8585a22a40a" - integrity sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q== - dependencies: - "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.5" - "@babel/types" "^7.24.5" - -"@babel/highlight@^7.24.2": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.5.tgz#bc0613f98e1dd0720e99b2a9ee3760194a704b6e" - integrity sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw== - dependencies: - "@babel/helper-validator-identifier" "^7.24.5" +"@babel/helper-module-transforms@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6" + integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-simple-access" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + "@babel/traverse" "^7.25.2" + +"@babel/helper-optimise-call-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" + integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" + integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== + +"@babel/helper-replace-supers@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz#ff44deac1c9f619523fe2ca1fd650773792000a9" + integrity sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.24.8" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/traverse" "^7.25.0" + +"@babel/helper-simple-access@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" + integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" + integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-string-parser@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" + integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== + +"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + +"@babel/helper-validator-option@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" + integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== + +"@babel/helpers@^7.25.0": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.6.tgz#57ee60141829ba2e102f30711ffe3afab357cc60" + integrity sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q== + dependencies: + "@babel/template" "^7.25.0" + "@babel/types" "^7.25.6" + +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" chalk "^2.4.2" js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/parser@^7.22.7", "@babel/parser@^7.23.9", "@babel/parser@^7.24.0", "@babel/parser@^7.24.4", "@babel/parser@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.5.tgz#4a4d5ab4315579e5398a82dcf636ca80c3392790" - integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg== +"@babel/parser@^7.23.9", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3", "@babel/parser@^7.25.4", "@babel/parser@^7.25.6": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f" + integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q== + dependencies: + "@babel/types" "^7.25.6" "@babel/plugin-proposal-decorators@^7.23.0": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.1.tgz#bab2b9e174a2680f0a80f341f3ec70f809f8bb4b" - integrity sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA== + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz#7e2dcfeda4a42596b57c4c9de1f5176bbfc532e3" + integrity sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.24.1" - "@babel/helper-plugin-utils" "^7.24.0" - "@babel/plugin-syntax-decorators" "^7.24.1" + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-decorators" "^7.24.7" -"@babel/plugin-syntax-decorators@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.1.tgz#71d9ad06063a6ac5430db126b5df48c70ee885fa" - integrity sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw== +"@babel/plugin-syntax-decorators@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz#e4f8a0a8778ccec669611cd5aed1ed8e6e3a6fcf" + integrity sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ== dependencies: - "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-plugin-utils" "^7.24.7" "@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz#c66b966c63b714c4eec508fcf5763b1f2d381093" - integrity sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA== + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz#6d4c78f042db0e82fd6436cd65fec5dc78ad2bde" + integrity sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ== dependencies: - "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-plugin-utils" "^7.24.8" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" @@ -261,79 +236,77 @@ "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-jsx@^7.23.3": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10" - integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" + integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== dependencies: - "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-plugin-utils" "^7.24.7" -"@babel/plugin-syntax-typescript@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844" - integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw== +"@babel/plugin-syntax-typescript@^7.24.7": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz#04db9ce5a9043d9c635e75ae7969a2cd50ca97ff" + integrity sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg== dependencies: - "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-plugin-utils" "^7.24.8" -"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.23.3": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz#bcba979e462120dc06a75bd34c473a04781931b8" - integrity sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw== +"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.24.7": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz#237c5d10de6d493be31637c6b9fa30b6c5461add" + integrity sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A== dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.24.5" - "@babel/helper-plugin-utils" "^7.24.5" - "@babel/plugin-syntax-typescript" "^7.24.1" + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.25.0" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-syntax-typescript" "^7.24.7" "@babel/runtime@^7.15.4": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.5.tgz#230946857c053a36ccc66e1dd03b17dd0c4ed02c" - integrity sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g== + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.6.tgz#9afc3289f7184d8d7f98b099884c26317b9264d2" + integrity sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ== dependencies: regenerator-runtime "^0.14.0" "@babel/standalone@^7.23.8": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.24.5.tgz#2003c40665adf222c952b6d652607f30b3152c0d" - integrity sha512-Sl8oN9bGfRlNUA2jzfzoHEZxFBDliBlwi5mPVCAWKSlBNkXXJOHpu7SDOqjF6mRoTa6GNX/1kAWG3Tr+YQ3N7A== - -"@babel/template@^7.22.15", "@babel/template@^7.23.9", "@babel/template@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50" - integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== - dependencies: - "@babel/code-frame" "^7.23.5" - "@babel/parser" "^7.24.0" - "@babel/types" "^7.24.0" - -"@babel/traverse@^7.23.9", "@babel/traverse@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.5.tgz#972aa0bc45f16983bf64aa1f877b2dd0eea7e6f8" - integrity sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA== - dependencies: - "@babel/code-frame" "^7.24.2" - "@babel/generator" "^7.24.5" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-function-name" "^7.23.0" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.24.5" - "@babel/parser" "^7.24.5" - "@babel/types" "^7.24.5" + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.25.6.tgz#b81f6cefd3b667ae5334979d01b3633c70bb231f" + integrity sha512-Kf2ZcZVqsKbtYhlA7sP0z5A3q5hmCVYMKMWRWNK/5OVwHIve3JY1djVRmIVAx8FMueLIfZGKQDIILK2w8zO4mg== + +"@babel/template@^7.23.9", "@babel/template@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a" + integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/parser" "^7.25.0" + "@babel/types" "^7.25.0" + +"@babel/traverse@^7.23.9", "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.4": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.6.tgz#04fad980e444f182ecf1520504941940a90fea41" + integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.6" + "@babel/parser" "^7.25.6" + "@babel/template" "^7.25.0" + "@babel/types" "^7.25.6" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.24.0", "@babel/types@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7" - integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ== +"@babel/types@^7.22.15", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.4", "@babel/types@^7.25.6": + version "7.25.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6" + integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw== dependencies: - "@babel/helper-string-parser" "^7.24.1" - "@babel/helper-validator-identifier" "^7.24.5" + "@babel/helper-string-parser" "^7.24.8" + "@babel/helper-validator-identifier" "^7.24.7" to-fast-properties "^2.0.0" -"@cloudflare/kv-asset-handler@^0.3.1": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.2.tgz#06437b75664729823ac9033b89f06a3b078e4f55" - integrity sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA== +"@cloudflare/kv-asset-handler@^0.3.4": + version "0.3.4" + resolved "https://registry.yarnpkg.com/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.4.tgz#5cc152847c8ae4d280ec5d7f4f6ba8c976b585c3" + integrity sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q== dependencies: mime "^3.0.0" @@ -342,10 +315,10 @@ resolved "https://registry.yarnpkg.com/@csstools/selector-resolve-nested/-/selector-resolve-nested-1.1.0.tgz#d872f2da402d3ce8bd0cf16ea5f9fba76b18e430" integrity sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg== -"@csstools/selector-specificity@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.3.tgz#208a3929ee614967a1fc8cd6cb758d9fcbf0caae" - integrity sha512-KEPNw4+WW5AVEIyzC80rTbWEUatTW2lXpN8+8ILC8PiPeWPjwUzrPZDIOZ2wwqDmeqOYTdSGyL3+vE5GC3FB3Q== +"@csstools/selector-specificity@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz#63085d2995ca0f0e55aa8b8a07d69bfd48b844fe" + integrity sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA== "@esbuild/aix-ppc64@0.19.12": version "0.19.12" @@ -357,6 +330,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/aix-ppc64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" + integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== + "@esbuild/android-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4" @@ -367,6 +350,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" + integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== + "@esbuild/android-arm@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824" @@ -377,6 +370,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-arm@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" + integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== + "@esbuild/android-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d" @@ -387,6 +390,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/android-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" + integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== + "@esbuild/darwin-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e" @@ -397,6 +410,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16" + integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== + "@esbuild/darwin-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd" @@ -407,6 +430,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/darwin-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" + integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== + "@esbuild/freebsd-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487" @@ -417,6 +450,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" + integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== + "@esbuild/freebsd-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c" @@ -427,6 +470,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/freebsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" + integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== + "@esbuild/linux-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b" @@ -437,6 +490,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" + integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g== + "@esbuild/linux-arm@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef" @@ -447,6 +510,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-arm@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" + integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== + "@esbuild/linux-ia32@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601" @@ -457,6 +530,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-ia32@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" + integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== + "@esbuild/linux-loong64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299" @@ -467,6 +550,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-loong64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" + integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== + "@esbuild/linux-mips64el@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec" @@ -477,6 +570,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-mips64el@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" + integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== + "@esbuild/linux-ppc64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8" @@ -487,6 +590,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-ppc64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" + integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== + "@esbuild/linux-riscv64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf" @@ -497,6 +610,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-riscv64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" + integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== + "@esbuild/linux-s390x@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8" @@ -507,6 +630,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-s390x@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" + integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== + "@esbuild/linux-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78" @@ -517,6 +650,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/linux-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" + integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== + "@esbuild/netbsd-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b" @@ -527,6 +670,21 @@ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/netbsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" + integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== + +"@esbuild/openbsd-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" + integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== + "@esbuild/openbsd-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0" @@ -537,6 +695,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/openbsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" + integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== + "@esbuild/sunos-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30" @@ -547,6 +715,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/sunos-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" + integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== + "@esbuild/win32-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae" @@ -557,6 +735,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" + integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== + "@esbuild/win32-ia32@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67" @@ -567,6 +755,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-ia32@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" + integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== + "@esbuild/win32-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae" @@ -577,6 +775,16 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== + +"@esbuild/win32-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" + integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== + "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" @@ -585,9 +793,9 @@ eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1": - version "4.10.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" - integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== + version "4.11.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.0.tgz#b0ffd0312b4a3fd2d6f77237e7248a5ad3a680ae" + integrity sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A== "@eslint/eslintrc@^2.1.4": version "2.1.4" @@ -677,10 +885,10 @@ "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" @@ -738,22 +946,22 @@ resolved "https://registry.yarnpkg.com/@mdi/font/-/font-7.4.47.tgz#2ae522867da3a5c88b738d54b403eb91471903af" integrity sha512-43MtGpd585SNzHZPcYowu/84Vz2a2g31TvPMTm9uTiCSWzaheQySUcSyUH/46fPnuPQWof2yd0pGBtzee/IQWw== -"@netlify/functions@^2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-2.6.0.tgz#801a6fe8ceef2ce1512c637a28e53e6a3aae289b" - integrity sha512-vU20tij0fb4nRGACqb+5SQvKd50JYyTyEhQetCMHdakcJFzjLDivvRR16u1G2Oy4A7xNAtGJF1uz8reeOtTVcQ== +"@netlify/functions@^2.8.0": + version "2.8.1" + resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-2.8.1.tgz#67cd94f929551e156225fb50d2efba603b97e138" + integrity sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A== dependencies: - "@netlify/serverless-functions-api" "1.14.0" + "@netlify/serverless-functions-api" "1.19.1" "@netlify/node-cookies@^0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@netlify/node-cookies/-/node-cookies-0.1.0.tgz#dda912ba618527695cf519fafa221c5e6777c612" integrity sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g== -"@netlify/serverless-functions-api@1.14.0": - version "1.14.0" - resolved "https://registry.yarnpkg.com/@netlify/serverless-functions-api/-/serverless-functions-api-1.14.0.tgz#2bedff76cf898e24e48161aa2508776c4d261ed1" - integrity sha512-HUNETLNvNiC2J+SB/YuRwJA9+agPrc0azSoWVk8H85GC+YE114hcS5JW+dstpKwVerp2xILE3vNWN7IMXP5Q5Q== +"@netlify/serverless-functions-api@1.19.1": + version "1.19.1" + resolved "https://registry.yarnpkg.com/@netlify/serverless-functions-api/-/serverless-functions-api-1.19.1.tgz#f195d18dd9ef14c656225287abb57c333df3880f" + integrity sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew== dependencies: "@netlify/node-cookies" "^0.1.0" urlpattern-polyfill "8.0.2" @@ -779,104 +987,28 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@npmcli/agent@^2.0.0": - version "2.2.2" - resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5" - integrity sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og== - dependencies: - agent-base "^7.1.0" - http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.1" - lru-cache "^10.0.1" - socks-proxy-agent "^8.0.3" - -"@npmcli/fs@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e" - integrity sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w== - dependencies: - semver "^7.3.5" - -"@npmcli/git@^5.0.0": - version "5.0.6" - resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.6.tgz#d7b24eb2cff98754c8868faab40405abfa1abe28" - integrity sha512-4x/182sKXmQkf0EtXxT26GEsaOATpD7WVtza5hrYivWZeo6QefC6xq9KAXrnjtFKBZ4rZwR7aX/zClYYXgtwLw== - dependencies: - "@npmcli/promise-spawn" "^7.0.0" - lru-cache "^10.0.1" - npm-pick-manifest "^9.0.0" - proc-log "^4.0.0" - promise-inflight "^1.0.1" - promise-retry "^2.0.1" - semver "^7.3.5" - which "^4.0.0" - -"@npmcli/installed-package-contents@^2.0.1": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz#63048e5f6e40947a3a88dcbcb4fd9b76fdd37c17" - integrity sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w== - dependencies: - npm-bundled "^3.0.0" - npm-normalize-package-bin "^3.0.0" - -"@npmcli/node-gyp@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a" - integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== - -"@npmcli/package-json@^5.0.0", "@npmcli/package-json@^5.1.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.1.0.tgz#10d117b5fb175acc14c70901a151c52deffc843e" - integrity sha512-1aL4TuVrLS9sf8quCLerU3H9J4vtCtgu8VauYozrmEyU57i/EdKleCnsQ7vpnABIH6c9mnTxcH5sFkO3BlV8wQ== - dependencies: - "@npmcli/git" "^5.0.0" - glob "^10.2.2" - hosted-git-info "^7.0.0" - json-parse-even-better-errors "^3.0.0" - normalize-package-data "^6.0.0" - proc-log "^4.0.0" - semver "^7.5.3" - -"@npmcli/promise-spawn@^7.0.0": - version "7.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.1.tgz#a836de2f42a2245d629cf6fbb8dd6c74c74c55af" - integrity sha512-P4KkF9jX3y+7yFUxgcUdDtLy+t4OlDGuEBLNs57AZsfSfg+uV6MLndqGpnl4831ggaEdXwR50XFoZP4VFtHolg== - dependencies: - which "^4.0.0" - -"@npmcli/redact@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-2.0.0.tgz#72f9689e87bd0ce419c35e75b8470ce8ac9e14f0" - integrity sha512-SEjCPAVHWYUIQR+Yn03kJmrJjZDtJLYpj300m3HV9OTRZNpC5YpbMsM3eTkECyT4aWj8lDr9WeY6TWefpubtYQ== - -"@npmcli/run-script@^8.0.0": - version "8.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-8.1.0.tgz#a563e5e29b1ca4e648a6b1bbbfe7220b4bfe39fc" - integrity sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg== - dependencies: - "@npmcli/node-gyp" "^3.0.0" - "@npmcli/package-json" "^5.0.0" - "@npmcli/promise-spawn" "^7.0.0" - node-gyp "^10.0.0" - proc-log "^4.0.0" - which "^4.0.0" +"@nolyfill/is-core-module@1.0.39": + version "1.0.39" + resolved "https://registry.yarnpkg.com/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz#3dc35ba0f1e66b403c00b39344f870298ebb1c8e" + integrity sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA== -"@nuxt-alt/auth@^2.1.9": - version "2.7.6" - resolved "https://registry.yarnpkg.com/@nuxt-alt/auth/-/auth-2.7.6.tgz#d47fdf4f21c86679c125ea6d35a067978d072212" - integrity sha512-eQEU9mAs6NThpEpdEp550k0lIO3tUIaJzh3Y9JYPrHrc1jN8yqkX/N4SJAeiW4Q9XPcNFsoVlmDcy4yzW99+ew== +"@nuxt-alt/auth@^3.0.0": + version "3.1.7" + resolved "https://registry.yarnpkg.com/@nuxt-alt/auth/-/auth-3.1.7.tgz#f764b1f7906cd88d6ff3e59cc8de0ebe79029782" + integrity sha512-lVL3N5xb5tIyJCfORPJdORLmMExEhb7jxqgxcQRHM7xazuKs+CiNOyRNyx44FvMKiVtX9zY2nhGba6zpC+8jiw== dependencies: "@nuxt-alt/http" latest - "@nuxt/kit" "^3.8.1" - cookie-es "^1.0.0" + "@nuxt/kit" "^3.12.2" + "@refactorjs/serialize" latest + cookie-es "^1.1.0" defu "^6.1.3" jwt-decode "^4.0.0" ohash "^1.1.3" - pathe "^1.1.1" + pathe "^1.1.2" pinia "^2.1.7" requrl "^3.0.2" -"@nuxt-alt/http@^1.5.5", "@nuxt-alt/http@latest": +"@nuxt-alt/http@^1.0", "@nuxt-alt/http@latest": version "1.7.10" resolved "https://registry.yarnpkg.com/@nuxt-alt/http/-/http-1.7.10.tgz#1cf1e20522813976c0f80f15851fe8cf6832630f" integrity sha512-SsPQH6rFZKf8c1P4B12ucVGEoWUzuK3btO9AgSTSZhGQKrVXUihoidPeDLqJfFYnarTft2eeqwoXUUYtk9BUCQ== @@ -892,19 +1024,19 @@ resolved "https://registry.yarnpkg.com/@nuxt/devalue/-/devalue-2.0.2.tgz#5749f04df13bda4c863338d8dabaf370f45ef7c7" integrity sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA== -"@nuxt/devtools-kit@1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.2.0.tgz#149fa7c3baf1203df0238bd37b3558c392e84b6f" - integrity sha512-T81TQuaN6hbQFzgvQeRAMJjcL4mgWtYvlGTAvtuvd3TFuHV7bMK+tFZaxgJXzIu1/UPO7/aO4VLCB0xl5sSwZw== +"@nuxt/devtools-kit@1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.4.1.tgz#8a0fd642a131af2c6d8b7e3928988d28bc0d545f" + integrity sha512-6h7T9B0tSZVap13/hf7prEAgIzraj/kyux6/Iif455Trew96jHIFCCboBApUMastYEuCo3l17tgZKe0HW+jrtA== dependencies: - "@nuxt/kit" "^3.11.2" - "@nuxt/schema" "^3.11.2" + "@nuxt/kit" "^3.13.0" + "@nuxt/schema" "^3.13.0" execa "^7.2.0" -"@nuxt/devtools-wizard@1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.2.0.tgz#9bc957d2db85a0eea41d87df0cb87070696773b0" - integrity sha512-qGepEgm7m1q9fmnwcrbijpRgdprPbczStmVlKcONYE/9PrGn+MHeHthJHD0im30FHBVQytbN11jor1sHEauGhA== +"@nuxt/devtools-wizard@1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.4.1.tgz#9263397c529b1e02f0181331d46c3226e8f53c59" + integrity sha512-X9uTh5rgt0pw3UjXcHyl8ZFYmCgw8ITRe9Nr2VLCtNROfKz9yol/ESEhYMwTFiFlqSyfJP6/qtogJBjUt6dzTw== dependencies: consola "^3.2.3" diff "^5.2.0" @@ -912,77 +1044,78 @@ global-directory "^4.0.1" magicast "^0.3.4" pathe "^1.1.2" - pkg-types "^1.1.0" + pkg-types "^1.2.0" prompts "^2.4.2" rc9 "^2.1.2" - semver "^7.6.0" + semver "^7.6.3" -"@nuxt/devtools@^1.1.5": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.2.0.tgz#fff16c7f2fa53cfffb2be6f9be04c300c7f5f322" - integrity sha512-pdEvZJqovqxJp9E1BJAaGeFdFPEpCKwuuy9l9k4exBvwvxjTfjLeyW7oPD5RUTCGGxhOswgbXwuDrO4k+x2zpA== - dependencies: - "@antfu/utils" "^0.7.7" - "@nuxt/devtools-kit" "1.2.0" - "@nuxt/devtools-wizard" "1.2.0" - "@nuxt/kit" "^3.11.2" - "@vue/devtools-applet" "^7.0.27" - "@vue/devtools-core" "^7.0.27" - "@vue/devtools-kit" "^7.0.27" +"@nuxt/devtools@^1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.4.1.tgz#48c63cec97806d7dcecfabece5abcb2250497b36" + integrity sha512-BtmGRAr/pjSE3dBrM7iceNT6OZAQ/MHxq1brkHJDs2VdyZPnqqGS4n3/98saASoRdj0dddsuIElsqC/zIABhgg== + dependencies: + "@antfu/utils" "^0.7.10" + "@nuxt/devtools-kit" "1.4.1" + "@nuxt/devtools-wizard" "1.4.1" + "@nuxt/kit" "^3.13.0" + "@vue/devtools-core" "7.3.3" + "@vue/devtools-kit" "7.3.3" birpc "^0.2.17" consola "^3.2.3" - cronstrue "^2.49.0" + cronstrue "^2.50.0" destr "^2.0.3" - error-stack-parser-es "^0.1.1" + error-stack-parser-es "^0.1.5" execa "^7.2.0" - fast-glob "^3.3.2" + fast-npm-meta "^0.2.2" flatted "^3.3.1" get-port-please "^3.1.2" hookable "^5.5.3" - image-meta "^0.2.0" + image-meta "^0.2.1" is-installed-globally "^1.0.0" - launch-editor "^2.6.1" + launch-editor "^2.8.1" local-pkg "^0.5.0" magicast "^0.3.4" - nypm "^0.3.8" + nypm "^0.3.11" ohash "^1.1.3" - pacote "^18.0.0" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.1.0" + pkg-types "^1.2.0" rc9 "^2.1.2" scule "^1.3.0" - semver "^7.6.0" - simple-git "^3.24.0" + semver "^7.6.3" + simple-git "^3.25.0" sirv "^2.0.4" - unimport "^3.7.1" - vite-plugin-inspect "^0.8.3" - vite-plugin-vue-inspector "^4.0.2" + tinyglobby "^0.2.5" + unimport "^3.11.1" + vite-plugin-inspect "^0.8.7" + vite-plugin-vue-inspector "^5.1.3" which "^3.0.1" - ws "^8.16.0" + ws "^8.18.0" -"@nuxt/kit@3.11.2", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.2.0", "@nuxt/kit@^3.5.0", "@nuxt/kit@^3.8.1", "@nuxt/kit@^3.9.3": - version "3.11.2" - resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.11.2.tgz#dfc43c05992691bcd6aa58c14f88cf43e3abb788" - integrity sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg== +"@nuxt/kit@3.13.1", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.12.2", "@nuxt/kit@^3.12.3", "@nuxt/kit@^3.13.0", "@nuxt/kit@^3.9.0", "@nuxt/kit@^3.9.3": + version "3.13.1" + resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.13.1.tgz#69501efc661ba861f45ed947918efb3e84838365" + integrity sha512-FkUL349lp/3nVfTIyws4UDJ3d2jyv5Pk1DC1HQUCOkSloYYMdbRcQAUcb4fe2TCLNWvHM+FhU8jnzGTzjALZYA== dependencies: - "@nuxt/schema" "3.11.2" - c12 "^1.10.0" + "@nuxt/schema" "3.13.1" + c12 "^1.11.2" consola "^3.2.3" defu "^6.1.4" - globby "^14.0.1" + destr "^2.0.3" + globby "^14.0.2" hash-sum "^2.0.0" - ignore "^5.3.1" - jiti "^1.21.0" + ignore "^5.3.2" + jiti "^1.21.6" + klona "^2.0.6" knitwork "^1.1.0" - mlly "^1.6.1" + mlly "^1.7.1" pathe "^1.1.2" - pkg-types "^1.0.3" + pkg-types "^1.2.0" scule "^1.3.0" - semver "^7.6.0" - ufo "^1.5.3" + semver "^7.6.3" + ufo "^1.5.4" unctx "^2.3.1" - unimport "^3.7.1" + unimport "^3.11.1" untyped "^1.4.2" "@nuxt/module-builder@^0.5.4": @@ -996,24 +1129,25 @@ pathe "^1.1.1" unbuild "^2.0.0" -"@nuxt/schema@3.11.2", "@nuxt/schema@^3.11.2": - version "3.11.2" - resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.11.2.tgz#530c7b4efd24c24523d8fd2d83dd66f44474d434" - integrity sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg== +"@nuxt/schema@3.13.1", "@nuxt/schema@^3.13.0": + version "3.13.1" + resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.13.1.tgz#a60ccb53457dec085b4aa69b6b5a6683618af328" + integrity sha512-ishbhzVGspjshG9AG0hYnKYY6LWXzCtua7OXV7C/DQ2yA7rRcy1xHpzKZUDbIRyxCHHCAcBd8jfHEUmEuhEPrA== dependencies: - "@nuxt/ui-templates" "^1.3.2" + compatx "^0.1.8" consola "^3.2.3" defu "^6.1.4" hookable "^5.5.3" pathe "^1.1.2" - pkg-types "^1.0.3" + pkg-types "^1.2.0" scule "^1.3.0" std-env "^3.7.0" - ufo "^1.5.3" - unimport "^3.7.1" + ufo "^1.5.4" + uncrypto "^0.1.3" + unimport "^3.11.1" untyped "^1.4.2" -"@nuxt/telemetry@^2.5.3": +"@nuxt/telemetry@^2.5.4": version "2.5.4" resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-2.5.4.tgz#a395be090cef23de14204cd7b4e1a9faf81e1838" integrity sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ== @@ -1036,50 +1170,44 @@ rc9 "^2.1.2" std-env "^3.7.0" -"@nuxt/ui-templates@^1.3.2": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@nuxt/ui-templates/-/ui-templates-1.3.3.tgz#b52728772d247d5027f5cdc0afbc82120b390ff3" - integrity sha512-3BG5doAREcD50dbKyXgmjD4b1GzY8CUy3T41jMhHZXNDdaNwOd31IBq+D6dV00OSrDVhzrTVj0IxsUsnMyHvIQ== - -"@nuxt/vite-builder@3.11.2": - version "3.11.2" - resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.11.2.tgz#2edd81a1482aefce4a4782ef11b072c3742cc3ad" - integrity sha512-eXTZsAAN4dPz4eA2UD5YU2kD/DqgfyQp1UYsIdCe6+PAVe1ifkUboBjbc0piR5+3qI/S/eqk3nzxRGbiYF7Ccg== - dependencies: - "@nuxt/kit" "3.11.2" - "@rollup/plugin-replace" "^5.0.5" - "@vitejs/plugin-vue" "^5.0.4" - "@vitejs/plugin-vue-jsx" "^3.1.0" - autoprefixer "^10.4.19" +"@nuxt/vite-builder@3.13.1": + version "3.13.1" + resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.13.1.tgz#c57ce35736bdbfa6f53be5e37a5c2706a02702a0" + integrity sha512-qH5p5K7lMfFc5L9um3Q7sLb5mvrLHfPTqljZKkEVVEhenz08a33aUPgaKhvd6rJOgW8Z0uh8BS2EoStBK2sSog== + dependencies: + "@nuxt/kit" "3.13.1" + "@rollup/plugin-replace" "^5.0.7" + "@vitejs/plugin-vue" "^5.1.3" + "@vitejs/plugin-vue-jsx" "^4.0.1" + autoprefixer "^10.4.20" clear "^0.1.0" consola "^3.2.3" - cssnano "^6.1.2" + cssnano "^7.0.5" defu "^6.1.4" - esbuild "^0.20.2" + esbuild "^0.23.1" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" externality "^1.0.2" - fs-extra "^11.2.0" get-port-please "^3.1.2" - h3 "^1.11.1" + h3 "^1.12.0" knitwork "^1.1.0" - magic-string "^0.30.9" - mlly "^1.6.1" + magic-string "^0.30.11" + mlly "^1.7.1" ohash "^1.1.3" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.0.3" - postcss "^8.4.38" + pkg-types "^1.2.0" + postcss "^8.4.44" rollup-plugin-visualizer "^5.12.0" std-env "^3.7.0" strip-literal "^2.1.0" - ufo "^1.5.3" - unenv "^1.9.0" - unplugin "^1.10.1" - vite "^5.2.8" - vite-node "^1.4.0" - vite-plugin-checker "^0.6.4" - vue-bundle-renderer "^2.0.0" + ufo "^1.5.4" + unenv "^1.10.0" + unplugin "^1.12.3" + vite "^5.4.3" + vite-node "^2.0.5" + vite-plugin-checker "^0.7.2" + vue-bundle-renderer "^2.1.0" "@nuxtjs/eslint-config-typescript@^12.0.0": version "12.1.0" @@ -1107,21 +1235,21 @@ eslint-plugin-vue "^9.7.0" local-pkg "^0.4.2" -"@nuxtjs/tailwindcss@^6.4.1": - version "6.12.0" - resolved "https://registry.yarnpkg.com/@nuxtjs/tailwindcss/-/tailwindcss-6.12.0.tgz#cb0ecaafd30c2773d98e175d32f411357ef210aa" - integrity sha512-vXvEq8z177TQcx0tc10mw3O6T9WeN0iTL8hIKGDfidmr+HKReexJU01aPgHefFrCu4LJB70egYFYnywzB9lMyQ== +"@nuxtjs/tailwindcss@^6.0.0": + version "6.12.1" + resolved "https://registry.yarnpkg.com/@nuxtjs/tailwindcss/-/tailwindcss-6.12.1.tgz#9871b234385c2b97fc84306415a6c6163f150278" + integrity sha512-UKmaPRVpxlFqLorhL6neEba2tySlsj6w6yDb7jzS6A0AAjyBQ6k3BQqWO+AaTy2iQLX7eR+1yj3/w43HzY8RtA== dependencies: - "@nuxt/kit" "^3.11.2" + "@nuxt/kit" "^3.12.3" autoprefixer "^10.4.19" consola "^3.2.3" defu "^6.1.4" - h3 "^1.11.1" + h3 "^1.12.0" pathe "^1.1.2" postcss "^8.4.38" - postcss-nesting "^12.1.1" - tailwind-config-viewer "^2.0.1" - tailwindcss "~3.4.3" + postcss-nesting "^12.1.5" + tailwind-config-viewer "^2.0.4" + tailwindcss "~3.4.4" ufo "^1.5.3" unctx "^2.3.1" @@ -1217,13 +1345,13 @@ "@parcel/watcher-win32-ia32" "2.4.1" "@parcel/watcher-win32-x64" "2.4.1" -"@pinia/nuxt@^0.5.1": - version "0.5.1" - resolved "https://registry.yarnpkg.com/@pinia/nuxt/-/nuxt-0.5.1.tgz#ee7c979d365a5dfda882430ddfae405fbd78d8d5" - integrity sha512-6wT6TqY81n+7/x3Yhf0yfaJVKkZU42AGqOR0T3+UvChcaOJhSma7OWPN64v+ptYlznat+fS1VTwNAcbi2lzHnw== +"@pinia/nuxt@^0.5.0": + version "0.5.4" + resolved "https://registry.yarnpkg.com/@pinia/nuxt/-/nuxt-0.5.4.tgz#4c6109711bb866deafeea4908f139082d75456c3" + integrity sha512-nNEs2pq6+Ji5qIyRwmeD9LUdctL8aJ8QMVLTYxUc16cXEOcIIN+MSA8Xudsd0lVETYgEAROT5HiBHnOYRDY3yQ== dependencies: - "@nuxt/kit" "^3.5.0" - pinia ">=2.1.7" + "@nuxt/kit" "^3.9.0" + pinia "^2.2.2" "@pkgjs/parseargs@^0.11.0": version "0.11.0" @@ -1235,37 +1363,6 @@ resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.25.tgz#f077fdc0b5d0078d30893396ff4827a13f99e817" integrity sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ== -"@redocly/ajv@^8.11.0": - version "8.11.0" - resolved "https://registry.yarnpkg.com/@redocly/ajv/-/ajv-8.11.0.tgz#2fad322888dc0113af026e08fceb3e71aae495ae" - integrity sha512-9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -"@redocly/config@^0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@redocly/config/-/config-0.2.0.tgz#c61fd0a8ccac330de398e26e8cac1a3fedbf9165" - integrity sha512-r0TqTPVXrxdvhpbOntWnJofOx0rC7u+A+tfC0KFwMtw38QCNb3pwodVjeLa7MT5Uu+fcPxfO119yLBj0QHvBuQ== - -"@redocly/openapi-core@^1.12.0": - version "1.12.0" - resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.12.0.tgz#82047a92a138362c7f411046d855fdcde3a946b8" - integrity sha512-2Jfxv3iIk1JUwLSnLyewJ8GAsoxubROVieg13Sjo79TjuWaUBuI49j8GZqC08ljENqyEIp0JHReDjhKs4Snrhg== - dependencies: - "@redocly/ajv" "^8.11.0" - "@redocly/config" "^0.2.0" - colorette "^1.2.0" - js-levenshtein "^1.1.6" - js-yaml "^4.1.0" - lodash.isequal "^4.5.0" - minimatch "^5.0.1" - node-fetch "^2.6.1" - pluralize "^8.0.0" - yaml-ast-parser "0.0.43" - "@refactorjs/ofetch@latest": version "1.1.1" resolved "https://registry.yarnpkg.com/@refactorjs/ofetch/-/ofetch-1.1.1.tgz#7bb09976e9e6afc4de5b4e9636a7af941b6387ec" @@ -1276,6 +1373,11 @@ destr "^2.0.2" ofetch "^1.3.3" +"@refactorjs/serialize@latest": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@refactorjs/serialize/-/serialize-1.0.7.tgz#413bc69ff7bc8790859bd4e46a9be9e8608a07c4" + integrity sha512-6fdXkxp06pZ/E8YjxxCBm0gF234VadKvma2ut1vNkG991IDOnCr0DjIlxKmB44yg0hSMYfiG9s6rMOKg03WDSg== + "@rollup/plugin-alias@^5.0.0", "@rollup/plugin-alias@^5.1.0": version "5.1.0" resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz#99a94accc4ff9a3483be5baeedd5d7da3b597e93" @@ -1283,10 +1385,10 @@ dependencies: slash "^4.0.0" -"@rollup/plugin-commonjs@^25.0.4", "@rollup/plugin-commonjs@^25.0.7": - version "25.0.7" - resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.7.tgz#145cec7589ad952171aeb6a585bbeabd0fd3b4cf" - integrity sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ== +"@rollup/plugin-commonjs@^25.0.4", "@rollup/plugin-commonjs@^25.0.8": + version "25.0.8" + resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.8.tgz#c77e608ab112a666b7f2a6bea625c73224f7dd34" + integrity sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A== dependencies: "@rollup/pluginutils" "^5.0.1" commondir "^1.0.1" @@ -1323,10 +1425,10 @@ is-module "^1.0.0" resolve "^1.22.1" -"@rollup/plugin-replace@^5.0.2", "@rollup/plugin-replace@^5.0.5": - version "5.0.5" - resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz#33d5653dce6d03cb24ef98bef7f6d25b57faefdf" - integrity sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ== +"@rollup/plugin-replace@^5.0.2", "@rollup/plugin-replace@^5.0.7": + version "5.0.7" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.7.tgz#150c9ee9db8031d9e4580a61a0edeaaed3d37687" + integrity sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ== dependencies: "@rollup/pluginutils" "^5.0.1" magic-string "^0.30.3" @@ -1348,7 +1450,7 @@ estree-walker "^2.0.1" picomatch "^2.2.2" -"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.2", "@rollup/pluginutils@^5.0.3", "@rollup/pluginutils@^5.0.4", "@rollup/pluginutils@^5.1.0": +"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.3", "@rollup/pluginutils@^5.1.0": version "5.1.0" resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== @@ -1357,134 +1459,90 @@ estree-walker "^2.0.2" picomatch "^2.3.1" -"@rollup/rollup-android-arm-eabi@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" - integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== - -"@rollup/rollup-android-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" - integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== - -"@rollup/rollup-darwin-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" - integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== - -"@rollup/rollup-darwin-x64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" - integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== - -"@rollup/rollup-linux-arm-gnueabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" - integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== - -"@rollup/rollup-linux-arm-musleabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" - integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== - -"@rollup/rollup-linux-arm64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" - integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== - -"@rollup/rollup-linux-arm64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" - integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== - -"@rollup/rollup-linux-powerpc64le-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" - integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== - -"@rollup/rollup-linux-riscv64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" - integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== - -"@rollup/rollup-linux-s390x-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" - integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== - -"@rollup/rollup-linux-x64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" - integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== - -"@rollup/rollup-linux-x64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" - integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== - -"@rollup/rollup-win32-arm64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" - integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== - -"@rollup/rollup-win32-ia32-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" - integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== - -"@rollup/rollup-win32-x64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" - integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== - -"@shikijs/core@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-1.3.0.tgz#5b93b51ddb8def1e3a1543107f9b5b0540f716f6" - integrity sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA== - -"@sigstore/bundle@^2.3.0", "@sigstore/bundle@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.3.1.tgz#f6cdc67c8400e58ca27f0ef495b27a9327512073" - integrity sha512-eqV17lO3EIFqCWK3969Rz+J8MYrRZKw9IBHpSo6DEcEX2c+uzDFOgHE9f2MnyDpfs48LFO4hXmk9KhQ74JzU1g== - dependencies: - "@sigstore/protobuf-specs" "^0.3.1" - -"@sigstore/core@^1.0.0", "@sigstore/core@^1.1.0": +"@rollup/rollup-android-arm-eabi@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.2.tgz#0412834dc423d1ff7be4cb1fc13a86a0cd262c11" + integrity sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg== + +"@rollup/rollup-android-arm64@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.2.tgz#baf1a014b13654f3b9e835388df9caf8c35389cb" + integrity sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA== + +"@rollup/rollup-darwin-arm64@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.2.tgz#0a2c364e775acdf1172fe3327662eec7c46e55b1" + integrity sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q== + +"@rollup/rollup-darwin-x64@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.2.tgz#a972db75890dfab8df0da228c28993220a468c42" + integrity sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w== + +"@rollup/rollup-linux-arm-gnueabihf@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.2.tgz#1609d0630ef61109dd19a278353e5176d92e30a1" + integrity sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w== + +"@rollup/rollup-linux-arm-musleabihf@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.2.tgz#3c1dca5f160aa2e79e4b20ff6395eab21804f266" + integrity sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w== + +"@rollup/rollup-linux-arm64-gnu@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.2.tgz#c2fe376e8b04eafb52a286668a8df7c761470ac7" + integrity sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw== + +"@rollup/rollup-linux-arm64-musl@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.2.tgz#e62a4235f01e0f66dbba587c087ca6db8008ec80" + integrity sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w== + +"@rollup/rollup-linux-powerpc64le-gnu@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.2.tgz#24b3457e75ee9ae5b1c198bd39eea53222a74e54" + integrity sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ== + +"@rollup/rollup-linux-riscv64-gnu@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.2.tgz#38edfba9620fe2ca8116c97e02bd9f2d606bde09" + integrity sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg== + +"@rollup/rollup-linux-s390x-gnu@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.2.tgz#a3bfb8bc5f1e802f8c76cff4a4be2e9f9ac36a18" + integrity sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ== + +"@rollup/rollup-linux-x64-gnu@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.2.tgz#0dadf34be9199fcdda44b5985a086326344f30ad" + integrity sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw== + +"@rollup/rollup-linux-x64-musl@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.2.tgz#7b7deddce240400eb87f2406a445061b4fed99a8" + integrity sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg== + +"@rollup/rollup-win32-arm64-msvc@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.2.tgz#a0ca0c5149c2cfb26fab32e6ba3f16996fbdb504" + integrity sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ== + +"@rollup/rollup-win32-ia32-msvc@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.2.tgz#aae2886beec3024203dbb5569db3a137bc385f8e" + integrity sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw== + +"@rollup/rollup-win32-x64-msvc@4.21.2": + version "4.21.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz#e4291e3c1bc637083f87936c333cdbcad22af63b" + integrity sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA== + +"@rtsao/scc@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-1.1.0.tgz#5583d8f7ffe599fa0a89f2bf289301a5af262380" - integrity sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg== - -"@sigstore/protobuf-specs@^0.3.0", "@sigstore/protobuf-specs@^0.3.1": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.1.tgz#7095819fa7c5743efde48a858c37b30fab190a09" - integrity sha512-aIL8Z9NsMr3C64jyQzE0XlkEyBLpgEJJFDHLVVStkFV5Q3Il/r/YtY6NJWKQ4cy4AE7spP1IX5Jq7VCAxHHMfQ== - -"@sigstore/sign@^2.3.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.3.0.tgz#c35e10a3d707e0c69a29bd9f93fa2bdc6275817c" - integrity sha512-tsAyV6FC3R3pHmKS880IXcDJuiFJiKITO1jxR1qbplcsBkZLBmjrEw5GbC7ikD6f5RU1hr7WnmxB/2kKc1qUWQ== - dependencies: - "@sigstore/bundle" "^2.3.0" - "@sigstore/core" "^1.0.0" - "@sigstore/protobuf-specs" "^0.3.1" - make-fetch-happen "^13.0.0" - -"@sigstore/tuf@^2.3.1": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.3.2.tgz#e9c5bffc2a5f3434f87195902d7f9cd7f48c70fa" - integrity sha512-mwbY1VrEGU4CO55t+Kl6I7WZzIl+ysSzEYdA1Nv/FTrl2bkeaPXo5PnWZAVfcY2zSdhOpsUTJW67/M2zHXGn5w== - dependencies: - "@sigstore/protobuf-specs" "^0.3.0" - tuf-js "^2.2.0" - -"@sigstore/verify@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-1.2.0.tgz#48549186305d8a5e471a3a304cf4cb3e0c99dde7" - integrity sha512-hQF60nc9yab+Csi4AyoAmilGNfpXT+EXdBgFkP9OgPwIBPwyqVf7JAWPtmqrrrneTmAT6ojv7OlH1f6Ix5BG4Q== - dependencies: - "@sigstore/bundle" "^2.3.1" - "@sigstore/core" "^1.1.0" - "@sigstore/protobuf-specs" "^0.3.1" + resolved "https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8" + integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g== "@sindresorhus/merge-streams@^2.1.0": version "2.3.0" @@ -1496,28 +1554,15 @@ resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== -"@tufjs/canonical-json@2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a" - integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA== - -"@tufjs/models@2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.0.tgz#c7ab241cf11dd29deb213d6817dabb8c99ce0863" - integrity sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg== - dependencies: - "@tufjs/canonical-json" "2.0.0" - minimatch "^9.0.3" - "@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0": version "1.0.5" resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== "@types/http-proxy@^1.17.14": - version "1.17.14" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.14.tgz#57f8ccaa1c1c3780644f8a94f9c6b5000b5e2eec" - integrity sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w== + version "1.17.15" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.15.tgz#12118141ce9775a6499ecb4c01d02f90fc839d36" + integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ== dependencies: "@types/node" "*" @@ -1532,16 +1577,16 @@ integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== "@types/lodash@^4.14.175": - version "4.17.0" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.0.tgz#d774355e41f372d5350a4d0714abb48194a489c3" - integrity sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA== + version "4.17.7" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.7.tgz#2f776bcb53adc9e13b2c0dfd493dfcbd7de43612" + integrity sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA== "@types/node@*": - version "20.12.7" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.7.tgz#04080362fa3dd6c5822061aa3124f5c152cff384" - integrity sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg== + version "22.5.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.3.tgz#91a374e42c6e7ccb5893a87f1775f36ce1671d65" + integrity sha512-njripolh85IA9SQGTAqbmnNZTdxv7X/4OYGPz8tgy5JDr8MP+uDBa921GpYEoDDnwm0Hmn5ZPeJgiiSTPoOzkQ== dependencies: - undici-types "~5.26.4" + undici-types "~6.19.2" "@types/normalize-package-data@^2.4.0": version "2.4.4" @@ -1558,11 +1603,6 @@ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e" integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== -"@types/web-bluetooth@^0.0.16": - version "0.0.16" - resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz#1d12873a8e49567371f2a75fe3e7f7edca6662d8" - integrity sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ== - "@types/web-bluetooth@^0.0.20": version "0.0.20" resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz#f066abfcd1cbe66267cdbbf0de010d8a41b41597" @@ -1659,51 +1699,51 @@ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== -"@unhead/dom@1.9.8", "@unhead/dom@^1.9.4": - version "1.9.8" - resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.9.8.tgz#a9736bf16ebefc9c77d559a79be29e822c9b2ecb" - integrity sha512-izvWjrZTU6sxwGnKbu/4iznNpadxdbf9wGH8ye1C0akb1WFn9ZZ/mQncPeRwEXiRxtLD3VLqaAVKRPHk73g9HQ== +"@unhead/dom@1.10.4", "@unhead/dom@^1.10.4": + version "1.10.4" + resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.10.4.tgz#c26bd4c5e6849f03624085b35018756de9430cdc" + integrity sha512-ehMy9k6efo4GTLmiP27wCtywWYdiggrP3m7h6kD/d1uhfORH3yCgsd4yXQnmDoSbsMyX6GlY5DBzy5bnYPp/Xw== dependencies: - "@unhead/schema" "1.9.8" - "@unhead/shared" "1.9.8" + "@unhead/schema" "1.10.4" + "@unhead/shared" "1.10.4" -"@unhead/schema@1.9.8": - version "1.9.8" - resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.9.8.tgz#59e3deb1429003430d35ce7452471898b1e1b97e" - integrity sha512-jh5oT5kQpwWOPRN1wxi0wjsHj34EjvG3ODyx38WG5XJwGSWhShCkqhC16ZNAX+qShNdKe5l3bygGufth7rrgpA== +"@unhead/schema@1.10.4": + version "1.10.4" + resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.10.4.tgz#da1af88f5426d6589bc6f7ffdd6cb5b8e62183c5" + integrity sha512-nX9sJgKPy2t4GHB9ky/vkMLbYqXl9Num5NZToTr0rKrIGkshzHhUrbn/EiHreIjcGI1eIpu+edniCDIwGTJgmw== dependencies: hookable "^5.5.3" zhead "^2.2.4" -"@unhead/shared@1.9.8": - version "1.9.8" - resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.9.8.tgz#9f751fff7164ddbd262f7584f8249f11675a1e9e" - integrity sha512-JkKSpPgodn/Ku0B8kBjoAL0A7mBaa4n4nB5xe7Y5vHhI8HszZ3IXWogMGTo9cWs50NXyZ6IB8hibQTjVo1DriA== +"@unhead/shared@1.10.4": + version "1.10.4" + resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.10.4.tgz#cbde209ebec1963a3742d67fcb01f97b33b710b4" + integrity sha512-C5wsps9i/XCBObMVQUrbXPvZG17a/e5yL0IsxpICaT4QSiZAj9v7JrNQ5WpM5JOZVMKRI5MYRdafNDw3iSmqZg== dependencies: - "@unhead/schema" "1.9.8" + "@unhead/schema" "1.10.4" -"@unhead/ssr@^1.9.4": - version "1.9.8" - resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.9.8.tgz#1957e969041b62be3a387cafb8641d5327ad5bcc" - integrity sha512-CpINIicliCBf6BjzRW0wPaTZqEFgx5kvlyRXkXlYqLb/dVUM7yU45gI/xeFljLL4dT0M5WT5h9vO2eQw2Ggu3w== +"@unhead/ssr@^1.10.4": + version "1.10.4" + resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.10.4.tgz#e2ec53a06055afe4b48e3762b4160152ec0a5b69" + integrity sha512-2nDG08q9bTvMB24YGNJCXimAs1vuG9yVa01i/Et1B2y4P8qhweXOxnialGmt5j8xeXwPFUBCe36tC5kLCSuJoQ== dependencies: - "@unhead/schema" "1.9.8" - "@unhead/shared" "1.9.8" + "@unhead/schema" "1.10.4" + "@unhead/shared" "1.10.4" -"@unhead/vue@^1.9.4": - version "1.9.8" - resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.9.8.tgz#db430a6e22fa5b46a455e797f68d11bc1d69563a" - integrity sha512-v4Z20tfd08hZvYWDDtI+0tWvwIRqa1SFvkITzuPbJJwiGUdwz+p5M6KHhA2mtuQMAebMkD1W7LNPTG0g2W3lCA== +"@unhead/vue@^1.10.4": + version "1.10.4" + resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.10.4.tgz#8c566b522a184b969039552c6df69b1d16bc3e48" + integrity sha512-Q45F/KOvDeitc8GkfkPY45V8Dmw1m1b9A/aHM5A2BwRV8GyoRV+HRWVw5h02e0AO1TsICvcW8tI90qeCM2oGSA== dependencies: - "@unhead/schema" "1.9.8" - "@unhead/shared" "1.9.8" + "@unhead/schema" "1.10.4" + "@unhead/shared" "1.10.4" hookable "^5.5.3" - unhead "1.9.8" + unhead "1.10.4" -"@vercel/nft@^0.26.4": - version "0.26.4" - resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.26.4.tgz#d7e8ebb91567d25240e8cb996152ea77392cea7f" - integrity sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA== +"@vercel/nft@^0.26.5": + version "0.26.5" + resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.26.5.tgz#f21e40576b76446851b6cbff79f39a72dab4d6b2" + integrity sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ== dependencies: "@mapbox/node-pre-gyp" "^1.0.5" "@rollup/pluginutils" "^4.0.0" @@ -1718,43 +1758,43 @@ node-gyp-build "^4.2.2" resolve-from "^5.0.0" -"@vitejs/plugin-vue-jsx@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.1.0.tgz#9953fd9456539e1f0f253bf0fcd1289e66c67cd1" - integrity sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA== +"@vitejs/plugin-vue-jsx@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.0.1.tgz#7be8a66da75ad412c30e57f43486fd2af20697c0" + integrity sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg== dependencies: - "@babel/core" "^7.23.3" - "@babel/plugin-transform-typescript" "^7.23.3" - "@vue/babel-plugin-jsx" "^1.1.5" + "@babel/core" "^7.24.7" + "@babel/plugin-transform-typescript" "^7.24.7" + "@vue/babel-plugin-jsx" "^1.2.2" -"@vitejs/plugin-vue@^5.0.4": - version "5.0.4" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.0.4.tgz#508d6a0f2440f86945835d903fcc0d95d1bb8a37" - integrity sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ== +"@vitejs/plugin-vue@^5.1.3": + version "5.1.3" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693" + integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw== "@vue-leaflet/vue-leaflet@^0.8.4": version "0.8.4" resolved "https://registry.yarnpkg.com/@vue-leaflet/vue-leaflet/-/vue-leaflet-0.8.4.tgz#8a26606fd1c28e1ca8717aebd4c5c147057c6b29" integrity sha512-FyD75jMKzBQCW4TrzRMrIBa8OwaUXaSeaDWJvp7FIjpZzk8niHBfpP+QirA/BT9536FJXviRkmwac3Z7YOQHKQ== -"@vue-macros/common@^1.8.0": - version "1.10.2" - resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.10.2.tgz#4c886082cfd94de2fb16e8e1df99d141873450e7" - integrity sha512-WC66NPVh2mJWqm4L0l/u/cOqm4pNOIwVdMGnDYAH2rHcOWy5x68GkhpkYTBu1+xwCSeHWOQn1TCGGbD+98fFpA== +"@vue-macros/common@^1.12.2": + version "1.12.2" + resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.12.2.tgz#ffaaf91c5fc2f2e8aee64bdfa75a559970793428" + integrity sha512-+NGfhrPvPNOb3Wg9PNPEXPe0HTXmVe6XJawL1gi3cIjOSGIhpOdvmMT2cRuWb265IpA/PeL5Sqo0+DQnEDxLvw== dependencies: - "@babel/types" "^7.24.0" + "@babel/types" "^7.25.0" "@rollup/pluginutils" "^5.1.0" - "@vue/compiler-sfc" "^3.4.21" - ast-kit "^0.12.1" + "@vue/compiler-sfc" "^3.4.34" + ast-kit "^1.0.1" local-pkg "^0.5.0" - magic-string-ast "^0.3.0" + magic-string-ast "^0.6.2" "@vue/babel-helper-vue-transform-on@1.2.2": version "1.2.2" resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.2.tgz#7f1f817a4f00ad531651a8d1d22e22d9e42807ef" integrity sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw== -"@vue/babel-plugin-jsx@^1.1.5": +"@vue/babel-plugin-jsx@^1.1.5", "@vue/babel-plugin-jsx@^1.2.2": version "1.2.2" resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.2.tgz#eb426fb4660aa510bb8d188ff0ec140405a97d8a" integrity sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA== @@ -1782,238 +1822,181 @@ "@babel/parser" "^7.23.9" "@vue/compiler-sfc" "^3.4.15" -"@vue/compiler-core@3.4.26": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.26.tgz#d507886520e83a6f8339ed55ed0b2b5d84b44b73" - integrity sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ== +"@vue/compiler-core@3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.1.tgz#995fc62dc3887a6c5ee2313b4e5472f3c11c0468" + integrity sha512-WdjF+NSgFYdWttHevHw5uaJFtKPalhmxhlu2uREj8cLP0uyKKIR60/JvSZNTp0x+NSd63iTiORQTx3+tt55NWQ== dependencies: - "@babel/parser" "^7.24.4" - "@vue/shared" "3.4.26" + "@babel/parser" "^7.25.3" + "@vue/shared" "3.5.1" entities "^4.5.0" estree-walker "^2.0.2" source-map-js "^1.2.0" -"@vue/compiler-dom@3.4.26", "@vue/compiler-dom@^3.3.4": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.26.tgz#acc7b788b48152d087d4bb9e655b795e3dbec554" - integrity sha512-4CWbR5vR9fMg23YqFOhr6t6WB1Fjt62d6xdFPyj8pxrYub7d+OgZaObMsoxaF9yBUHPMiPFK303v61PwAuGvZA== +"@vue/compiler-dom@3.5.1", "@vue/compiler-dom@^3.3.4": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.1.tgz#016d468ba4c7b736df9c38d8cb81731aeaae95dd" + integrity sha512-Ao23fB1lINo18HLCbJVApvzd9OQe8MgmQSgyY5+umbWj2w92w9KykVmJ4Iv2US5nak3ixc2B+7Km7JTNhQ8kSQ== dependencies: - "@vue/compiler-core" "3.4.26" - "@vue/shared" "3.4.26" + "@vue/compiler-core" "3.5.1" + "@vue/shared" "3.5.1" -"@vue/compiler-sfc@3.4.26", "@vue/compiler-sfc@^3.4.15", "@vue/compiler-sfc@^3.4.21": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.26.tgz#c679f206829954c3c078d8a9be76d0098b8377ae" - integrity sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw== +"@vue/compiler-sfc@3.5.1", "@vue/compiler-sfc@^3.4.15", "@vue/compiler-sfc@^3.4.34": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.1.tgz#457a7309fa5006d490450c3d5410b9caf37949c2" + integrity sha512-DFizMNH8eDglLhlfwJ0+ciBsztaYe3fY/zcZjrqL1ljXvUw/UpC84M1d7HpBTCW68SNqZyIxrs1XWmf+73Y65w== dependencies: - "@babel/parser" "^7.24.4" - "@vue/compiler-core" "3.4.26" - "@vue/compiler-dom" "3.4.26" - "@vue/compiler-ssr" "3.4.26" - "@vue/shared" "3.4.26" + "@babel/parser" "^7.25.3" + "@vue/compiler-core" "3.5.1" + "@vue/compiler-dom" "3.5.1" + "@vue/compiler-ssr" "3.5.1" + "@vue/shared" "3.5.1" estree-walker "^2.0.2" - magic-string "^0.30.10" - postcss "^8.4.38" + magic-string "^0.30.11" + postcss "^8.4.44" source-map-js "^1.2.0" -"@vue/compiler-ssr@3.4.26": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.26.tgz#22842d8adfff972d87bb798b8d496111f7f814b5" - integrity sha512-FNwLfk7LlEPRY/g+nw2VqiDKcnDTVdCfBREekF8X74cPLiWHUX6oldktf/Vx28yh4STNy7t+/yuLoMBBF7YDiQ== +"@vue/compiler-ssr@3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.1.tgz#a4dd4d1b47d60b80a529c46a847c7519401c1ba8" + integrity sha512-C1hpSHQgRM8bg+5XWWD7CkFaVpSn9wZHCLRd10AmxqrH17d4EMP6+XcZpwBOM7H1jeStU5naEapZZWX0kso1tQ== dependencies: - "@vue/compiler-dom" "3.4.26" - "@vue/shared" "3.4.26" - -"@vue/devtools-api@^6.5.0", "@vue/devtools-api@^6.5.1": - version "6.6.1" - resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.1.tgz#7c14346383751d9f6ad4bea0963245b30220ef83" - integrity sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA== + "@vue/compiler-dom" "3.5.1" + "@vue/shared" "3.5.1" -"@vue/devtools-applet@^7.0.27": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-applet/-/devtools-applet-7.1.3.tgz#6aa6d222bb8ccde873d56bb14b11c7f1e36ebaf7" - integrity sha512-525h17FzUF7ssko/U+yeP5jv0HaGm3eI4dVqncWPRCLTDtOy1V+srjoxYqr5qnzx6AdIU2icPQF2KNomd9FGZw== - dependencies: - "@vue/devtools-core" "^7.1.3" - "@vue/devtools-kit" "^7.1.3" - "@vue/devtools-shared" "^7.1.3" - "@vue/devtools-ui" "^7.1.3" - lodash-es "^4.17.21" - perfect-debounce "^1.0.0" - shiki "1.3.0" - splitpanes "^3.1.5" - vue-virtual-scroller "2.0.0-beta.8" +"@vue/devtools-api@^6.6.1", "@vue/devtools-api@^6.6.3": + version "6.6.3" + resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.3.tgz#b23a588154cba8986bba82b6e1d0248bde3fd1a0" + integrity sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw== -"@vue/devtools-core@^7.0.27", "@vue/devtools-core@^7.1.3": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.1.3.tgz#22107b618ae05d873545724c6238a8c41c70b426" - integrity sha512-pVbWi8pf2Z/fZPioYOIgu+cv9pQG55k4D8bL31ec+Wfe+pQR0ImFDu0OhHfch1Ra8uvLLrAZTF4IKeGAkmzD4A== +"@vue/devtools-core@7.3.3": + version "7.3.3" + resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.3.3.tgz#cadd65806ed2ddd80ae1dc6378abc48820abf850" + integrity sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g== dependencies: - "@vue/devtools-kit" "^7.1.3" - "@vue/devtools-shared" "^7.1.3" + "@vue/devtools-kit" "^7.3.3" + "@vue/devtools-shared" "^7.3.3" mitt "^3.0.1" nanoid "^3.3.4" pathe "^1.1.2" vite-hot-client "^0.2.3" -"@vue/devtools-kit@^7.0.27", "@vue/devtools-kit@^7.1.3": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.1.3.tgz#0344fd1a926ff535d3be3378e1da8bb71d8430b9" - integrity sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ== +"@vue/devtools-kit@7.3.3": + version "7.3.3" + resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.3.3.tgz#7e1549fb9685fc033e560e1f69a2245c79406f84" + integrity sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g== dependencies: - "@vue/devtools-shared" "^7.1.3" + "@vue/devtools-shared" "^7.3.3" + birpc "^0.2.17" hookable "^5.5.3" mitt "^3.0.1" perfect-debounce "^1.0.0" speakingurl "^14.0.1" + superjson "^2.2.1" -"@vue/devtools-shared@7.1.3", "@vue/devtools-shared@^7.1.3": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.1.3.tgz#f570bba72d53a0c84d1faa19f4d1a29a339c1dc7" - integrity sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ== +"@vue/devtools-kit@^7.3.3": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.4.4.tgz#f05e775e6e80636362a25c955c7c1291f990e456" + integrity sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw== dependencies: - rfdc "^1.3.1" + "@vue/devtools-shared" "^7.4.4" + birpc "^0.2.17" + hookable "^5.5.3" + mitt "^3.0.1" + perfect-debounce "^1.0.0" + speakingurl "^14.0.1" + superjson "^2.2.1" -"@vue/devtools-ui@^7.1.3": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-ui/-/devtools-ui-7.1.3.tgz#346866cc8a6a72984c7e8b7f12c070c56a6ae387" - integrity sha512-gO2EV3T0wO+HK884+m6UgTEirNOuf+k8U4PcR0vIYA97/A9nTzv9HheCRyFMiHMePYxnlBOsgD7K2fp1/M+EWA== +"@vue/devtools-shared@^7.3.3", "@vue/devtools-shared@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.4.4.tgz#f841a99ed30ac3120f878de77e4721c964984976" + integrity sha512-yeJULXFHOKIm8yL2JFO050a9ztTVqOCKTqN9JHFxGTJN0b+gjtfn6zC+FfyHUgjwCwf6E3hfKrlohtthcqoYqw== dependencies: - "@vue/devtools-shared" "7.1.3" - "@vueuse/components" "^10.9.0" - "@vueuse/core" "^10.9.0" - "@vueuse/integrations" "^10.9.0" - colord "^2.9.3" - focus-trap "^7.5.4" + rfdc "^1.4.1" -"@vue/reactivity@3.4.26": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.26.tgz#1191f543809d4c93e5b3e842ba83022350a3f205" - integrity sha512-E/ynEAu/pw0yotJeLdvZEsp5Olmxt+9/WqzvKff0gE67tw73gmbx6tRkiagE/eH0UCubzSlGRebCbidB1CpqZQ== +"@vue/reactivity@3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.1.tgz#e4a57a038e3caaa9669de529533fcb16288a1736" + integrity sha512-aFE1nMDfbG7V+U5vdOk/NXxH/WX78XuAfX59vWmCM7Ao4lieoc83RkzOAWun61sQXlzNZ4IgROovFBHg+Iz1+Q== dependencies: - "@vue/shared" "3.4.26" + "@vue/shared" "3.5.1" -"@vue/runtime-core@3.4.26": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.26.tgz#51ee971cb700370a67e5a510c4a84eff7491d658" - integrity sha512-AFJDLpZvhT4ujUgZSIL9pdNcO23qVFh7zWCsNdGQBw8ecLNxOOnPcK9wTTIYCmBJnuPHpukOwo62a2PPivihqw== +"@vue/runtime-core@3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.1.tgz#a1208d91e9c1b900aa6cfc9dbfec76a5277393c3" + integrity sha512-Ce92CCholNRHR3ZtzpRp/7CDGIPFxQ7ElXt9iH91ilK5eOrUv3Z582NWJesuM3aYX71BujVG5/4ypUxigGNxjA== dependencies: - "@vue/reactivity" "3.4.26" - "@vue/shared" "3.4.26" + "@vue/reactivity" "3.5.1" + "@vue/shared" "3.5.1" -"@vue/runtime-dom@3.4.26": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.26.tgz#179aa7c8dc964112e6d096bc8ec5f361111009a1" - integrity sha512-UftYA2hUXR2UOZD/Fc3IndZuCOOJgFxJsWOxDkhfVcwLbsfh2CdXE2tG4jWxBZuDAs9J9PzRTUFt1PgydEtItw== +"@vue/runtime-dom@3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.1.tgz#24f506b827ef7799fe68f0eb045918808080d961" + integrity sha512-B/fUJfBLp5PwE0EWNfBYnA4JUea8Yufb3wN8fN0/HzaqBdkiRHh4sFHOjWqIY8GS75gj//8VqeEqhcU6yUjIkA== dependencies: - "@vue/runtime-core" "3.4.26" - "@vue/shared" "3.4.26" + "@vue/reactivity" "3.5.1" + "@vue/runtime-core" "3.5.1" + "@vue/shared" "3.5.1" csstype "^3.1.3" -"@vue/server-renderer@3.4.26": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.26.tgz#6d0c6b0366bfe0232579aea00e3ff6784e5a1c60" - integrity sha512-xoGAqSjYDPGAeRWxeoYwqJFD/gw7mpgzOvSxEmjWaFO2rE6qpbD1PC172YRpvKhrihkyHJkNDADFXTfCyVGhKw== +"@vue/server-renderer@3.5.1": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.1.tgz#e741418a267a645a88e0cd80f1cf24dfa9c5cc73" + integrity sha512-C5V/fjQTitgVaRNH5wCoHynaWysjZ+VH68drNsAvQYg4ArHsZUQNz0nHoEWRj41nzqkVn2RUlnWaEOTl2o1Ppg== dependencies: - "@vue/compiler-ssr" "3.4.26" - "@vue/shared" "3.4.26" + "@vue/compiler-ssr" "3.5.1" + "@vue/shared" "3.5.1" -"@vue/shared@3.4.26", "@vue/shared@^3.4.21": - version "3.4.26" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.26.tgz#f17854fb1faf889854aed4b23b60e86a8cab6403" - integrity sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ== +"@vue/shared@3.5.1", "@vue/shared@^3.5.0": + version "3.5.1" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.1.tgz#f9418dae5ac194a4f19023d812978c21a15412a1" + integrity sha512-NdcTRoO4KuW2RSFgpE2c+E/R/ZHaRzWPxAGxhmxZaaqLh6nYCXx7lc9a88ioqOCxCaV2SFJmujkxbUScW7dNsQ== -"@vuetify/loader-shared@^1.7.1": - version "1.7.1" - resolved "https://registry.yarnpkg.com/@vuetify/loader-shared/-/loader-shared-1.7.1.tgz#0f63a3d41b6df29a2db1ff438aa1819b237c37a3" - integrity sha512-kLUvuAed6RCvkeeTNJzuy14pqnkur8lTuner7v7pNE/kVhPR97TuyXwBSBMR1cJeiLiOfu6SF5XlCYbXByEx1g== +"@vuetify/loader-shared@^2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@vuetify/loader-shared/-/loader-shared-2.0.3.tgz#11451c717e4a352ec311da52a79c857cd256c92f" + integrity sha512-Ss3GC7eJYkp2SF6xVzsT7FAruEmdihmn4OCk2+UocREerlXKWgOKKzTN5PN3ZVN5q05jHHrsNhTuWbhN61Bpdg== dependencies: - find-cache-dir "^3.3.2" upath "^2.0.1" -"@vueuse/components@^10.9.0": - version "10.9.0" - resolved "https://registry.yarnpkg.com/@vueuse/components/-/components-10.9.0.tgz#5c1011e0511b68e4d94f5d545343f86d2a7e3044" - integrity sha512-BHQpA0yIi3y7zKa1gYD0FUzLLkcRTqVhP8smnvsCK6GFpd94Nziq1XVPD7YpFeho0k5BzbBiNZF7V/DpkJ967A== +"@vueuse/core@11.0.3": + version "11.0.3" + resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-11.0.3.tgz#e5fb5aa6580c6e505cecea43518fcb66cb56a3ef" + integrity sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw== dependencies: - "@vueuse/core" "10.9.0" - "@vueuse/shared" "10.9.0" - vue-demi ">=0.14.7" + "@types/web-bluetooth" "^0.0.20" + "@vueuse/metadata" "11.0.3" + "@vueuse/shared" "11.0.3" + vue-demi ">=0.14.10" + +"@vueuse/metadata@11.0.3": + version "11.0.3" + resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-11.0.3.tgz#f3f20066fb5217df24614de92162b65c24475e1b" + integrity sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q== + +"@vueuse/nuxt@^11.0.0": + version "11.0.3" + resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-11.0.3.tgz#0b7c013516333f39bbe35f39e5f96e55b3b448ad" + integrity sha512-1tZGM9lvFl6HqmSQNM6hsHbAzLkBitoh8RsVC8kIG/93d3Pb5dEqUdt1k+OfHyR8V2rfSOwCfJx+wlUTlY0A2g== + dependencies: + "@nuxt/kit" "^3.13.0" + "@vueuse/core" "11.0.3" + "@vueuse/metadata" "11.0.3" + local-pkg "^0.5.0" + vue-demi ">=0.14.10" -"@vueuse/core@10.9.0", "@vueuse/core@^10.9.0": - version "10.9.0" - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-10.9.0.tgz#7d779a95cf0189de176fee63cee4ba44b3c85d64" - integrity sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg== +"@vueuse/shared@11.0.3": + version "11.0.3" + resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-11.0.3.tgz#0e5519dcdc9ac0c6fc831c105a9e7ba7bda98628" + integrity sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA== dependencies: - "@types/web-bluetooth" "^0.0.20" - "@vueuse/metadata" "10.9.0" - "@vueuse/shared" "10.9.0" - vue-demi ">=0.14.7" - -"@vueuse/core@9.13.0": - version "9.13.0" - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-9.13.0.tgz#2f69e66d1905c1e4eebc249a01759cf88ea00cf4" - integrity sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw== - dependencies: - "@types/web-bluetooth" "^0.0.16" - "@vueuse/metadata" "9.13.0" - "@vueuse/shared" "9.13.0" - vue-demi "*" - -"@vueuse/integrations@^10.9.0": - version "10.9.0" - resolved "https://registry.yarnpkg.com/@vueuse/integrations/-/integrations-10.9.0.tgz#2b1a9556215ad3c1f96d39cbfbef102cf6e0ec05" - integrity sha512-acK+A01AYdWSvL4BZmCoJAcyHJ6EqhmkQEXbQLwev1MY7NBnS+hcEMx/BzVoR9zKI+UqEPMD9u6PsyAuiTRT4Q== - dependencies: - "@vueuse/core" "10.9.0" - "@vueuse/shared" "10.9.0" - vue-demi ">=0.14.7" - -"@vueuse/metadata@10.9.0": - version "10.9.0" - resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.9.0.tgz#769a1a9db65daac15cf98084cbf7819ed3758620" - integrity sha512-iddNbg3yZM0X7qFY2sAotomgdHK7YJ6sKUvQqbvwnf7TmaVPxS4EJydcNsVejNdS8iWCtDk+fYXr7E32nyTnGA== - -"@vueuse/metadata@9.13.0": - version "9.13.0" - resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-9.13.0.tgz#bc25a6cdad1b1a93c36ce30191124da6520539ff" - integrity sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ== - -"@vueuse/nuxt@^9.6.0": - version "9.13.0" - resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-9.13.0.tgz#32bc95df0fb0e54aa60379ef009c6985e8f50be1" - integrity sha512-JunH/w6nFIwCyaZ0s+pfrYFMfBzGfhkwmFPz7ogHFmb71Ty/5HINrYOAOZCXpN44X6QH6FiJq/wuLLdvYzqFUw== - dependencies: - "@nuxt/kit" "^3.2.0" - "@vueuse/core" "9.13.0" - "@vueuse/metadata" "9.13.0" - local-pkg "^0.4.3" - vue-demi "*" - -"@vueuse/shared@10.9.0": - version "10.9.0" - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.9.0.tgz#13af2a348de15d07b7be2fd0c7fc9853a69d8fe0" - integrity sha512-Uud2IWncmAfJvRaFYzv5OHDli+FbOzxiVEQdLCKQKLyhz94PIyFC3CHcH7EDMwIn8NPtD06+PNbC/PiO0LGLtw== - dependencies: - vue-demi ">=0.14.7" - -"@vueuse/shared@9.13.0": - version "9.13.0" - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-9.13.0.tgz#089ff4cc4e2e7a4015e57a8f32e4b39d096353b9" - integrity sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw== - dependencies: - vue-demi "*" + vue-demi ">=0.14.10" abbrev@1: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -abbrev@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf" - integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ== - abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -2039,10 +2022,10 @@ acorn-jsx@^5.3.2: resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn@8.11.3, acorn@^8.10.0, acorn@^8.11.2, acorn@^8.11.3, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: - version "8.11.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" - integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== +acorn@8.12.1, acorn@^8.11.3, acorn@^8.12.1, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: + version "8.12.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" + integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== agent-base@6: version "6.0.2" @@ -2051,21 +2034,6 @@ agent-base@6: dependencies: debug "4" -agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" - integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== - dependencies: - debug "^4.3.4" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -2187,7 +2155,7 @@ array-buffer-byte-length@^1.0.1: call-bind "^1.0.5" is-array-buffer "^3.0.4" -array-includes@^3.1.7: +array-includes@^3.1.8: version "3.1.8" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== @@ -2204,7 +2172,7 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -array.prototype.findlastindex@^1.2.3: +array.prototype.findlastindex@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== @@ -2250,30 +2218,21 @@ arraybuffer.prototype.slice@^1.0.3: is-array-buffer "^3.0.4" is-shared-array-buffer "^1.0.2" -ast-kit@^0.12.1: - version "0.12.1" - resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-0.12.1.tgz#94a42db3c1a3d73efdb627e01839dae15586fdd8" - integrity sha512-O+33g7x6irsESUcd47KdfWUrS2F6aGp9KeVJFGj0YjIznfXpBxVGjA0w+y/1OKqX4mFOfmZ9Xpf1ixPT4n9xxw== +ast-kit@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-1.1.0.tgz#fe7c7eb44c8d01b1c7516f544d964e88f534f769" + integrity sha512-RlNqd4u6c/rJ5R+tN/ZTtyNrH8X0NHCvyt6gD8RHa3JjzxxHWoyaU0Ujk3Zjbh7IZqrYl1Sxm6XzZifmVxXxHQ== dependencies: - "@babel/parser" "^7.23.9" + "@babel/parser" "^7.25.3" pathe "^1.1.2" -ast-kit@^0.9.4: - version "0.9.5" - resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-0.9.5.tgz#88c0ba76b6f7f24c04ccf9ae778e33afc187dc80" - integrity sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg== - dependencies: - "@babel/parser" "^7.22.7" - "@rollup/pluginutils" "^5.0.2" - pathe "^1.1.1" - -ast-walker-scope@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/ast-walker-scope/-/ast-walker-scope-0.5.0.tgz#87e0ca4f34394d11ec4dea5925b8bda80b811819" - integrity sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q== +ast-walker-scope@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/ast-walker-scope/-/ast-walker-scope-0.6.2.tgz#b827e8949c129802f76fe0f142e95fd7efda57dc" + integrity sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ== dependencies: - "@babel/parser" "^7.22.7" - ast-kit "^0.9.4" + "@babel/parser" "^7.25.3" + ast-kit "^1.0.1" async-sema@^3.1.1: version "3.1.1" @@ -2288,25 +2247,25 @@ async@^2.6.4: lodash "^4.17.14" async@^3.2.4: - version "3.2.5" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" - integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== + version "3.2.6" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce" + integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== at-least-node@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -autoprefixer@^10.4.13, autoprefixer@^10.4.19: - version "10.4.19" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f" - integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew== +autoprefixer@^10.4.13, autoprefixer@^10.4.19, autoprefixer@^10.4.20: + version "10.4.20" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b" + integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== dependencies: - browserslist "^4.23.0" - caniuse-lite "^1.0.30001599" + browserslist "^4.23.3" + caniuse-lite "^1.0.30001646" fraction.js "^4.3.7" normalize-range "^0.1.2" - picocolors "^1.0.0" + picocolors "^1.0.1" postcss-value-parser "^4.2.0" available-typed-arrays@^1.0.7: @@ -2327,9 +2286,9 @@ balanced-match@^1.0.0: integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== bare-events@^2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.2.2.tgz#a98a41841f98b2efe7ecc5c5468814469b018078" - integrity sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ== + version "2.4.2" + resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.4.2.tgz#3140cca7a0e11d49b3edc5041ab560659fd8e1f8" + integrity sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q== base64-js@^1.3.1: version "1.5.1" @@ -2373,22 +2332,22 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== +braces@^3.0.3, braces@~3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: - fill-range "^7.0.1" + fill-range "^7.1.1" -browserslist@^4.0.0, browserslist@^4.22.2, browserslist@^4.23.0: - version "4.23.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" - integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== +browserslist@^4.0.0, browserslist@^4.23.1, browserslist@^4.23.3: + version "4.23.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800" + integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA== dependencies: - caniuse-lite "^1.0.30001587" - electron-to-chromium "^1.4.668" - node-releases "^2.0.14" - update-browserslist-db "^1.0.13" + caniuse-lite "^1.0.30001646" + electron-to-chromium "^1.5.4" + node-releases "^2.0.18" + update-browserslist-db "^1.1.0" buffer-crc32@^1.0.0: version "1.0.0" @@ -2413,7 +2372,7 @@ builtin-modules@^3.3.0: resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== -builtins@^5.0.0, builtins@^5.0.1: +builtins@^5.0.1: version "5.1.0" resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.1.0.tgz#6d85eeb360c4ebc166c3fdef922a15aa7316a5e8" integrity sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg== @@ -2427,47 +2386,29 @@ bundle-name@^4.1.0: dependencies: run-applescript "^7.0.0" -c12@^1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/c12/-/c12-1.10.0.tgz#e1936baa26fd03a9427875554aa6aeb86077b7fb" - integrity sha512-0SsG7UDhoRWcuSvKWHaXmu5uNjDCDN3nkQLRL4Q42IlFy+ze58FcCoI3uPwINXinkz7ZinbhEgyzYFw9u9ZV8g== +c12@^1.11.1, c12@^1.11.2: + version "1.11.2" + resolved "https://registry.yarnpkg.com/c12/-/c12-1.11.2.tgz#f8a1e30c10f4b273894a1bcb6944f76c15b56717" + integrity sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew== dependencies: chokidar "^3.6.0" - confbox "^0.1.3" + confbox "^0.1.7" defu "^6.1.4" dotenv "^16.4.5" - giget "^1.2.1" - jiti "^1.21.0" - mlly "^1.6.1" + giget "^1.2.3" + jiti "^1.21.6" + mlly "^1.7.1" ohash "^1.1.3" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.0.3" - rc9 "^2.1.1" + pkg-types "^1.2.0" + rc9 "^2.1.2" cac@^6.7.14: version "6.7.14" resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== -cacache@^18.0.0: - version "18.0.2" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.2.tgz#fd527ea0f03a603be5c0da5805635f8eef00c60c" - integrity sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw== - dependencies: - "@npmcli/fs" "^3.1.0" - fs-minipass "^3.0.0" - glob "^10.2.2" - lru-cache "^10.0.1" - minipass "^7.0.3" - minipass-collect "^2.0.1" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - p-map "^4.0.0" - ssri "^10.0.0" - tar "^6.1.11" - unique-filename "^3.0.0" - cache-content-type@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/cache-content-type/-/cache-content-type-1.0.1.tgz#035cde2b08ee2129f4a8315ea8f00a00dba1453c" @@ -2512,10 +2453,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001599: - version "1.0.30001614" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001614.tgz#f894b4209376a0bf923d67d9c361d96b1dfebe39" - integrity sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646: + version "1.0.30001655" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001655.tgz#0ce881f5a19a2dcfda2ecd927df4d5c1684b982f" + integrity sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg== chalk@^2.4.2: version "2.4.2" @@ -2583,11 +2524,6 @@ clean-regexp@^1.0.0: dependencies: escape-string-regexp "^1.0.5" -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - clear@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/clear/-/clear-0.1.0.tgz#b81b1e03437a716984fd7ac97c87d73bdfe7048a" @@ -2655,11 +2591,6 @@ colord@^2.9.3: resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== -colorette@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" - integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== - commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" @@ -2690,6 +2621,11 @@ commondir@^1.0.1: resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== +compatx@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/compatx/-/compatx-0.1.8.tgz#af6f61910ade6ce1073c0fdff23c786bcd75c026" + integrity sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw== + compress-commons@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-6.0.2.tgz#26d31251a66b9d6ba23a84064ecd3a6a71d2609e" @@ -2706,7 +2642,7 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -confbox@^0.1.3, confbox@^0.1.7: +confbox@^0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.7.tgz#ccfc0a2bcae36a84838e83a3b7f770fb17d6c579" integrity sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA== @@ -2738,10 +2674,10 @@ convert-source-map@^2.0.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -cookie-es@^1.0.0, cookie-es@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.1.0.tgz#68f8d9f48aeb5a534f3896f80e792760d3d20def" - integrity sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw== +cookie-es@^1.0.0, cookie-es@^1.1.0, cookie-es@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.2.2.tgz#18ceef9eb513cac1cb6c14bcbf8bdb2679b34821" + integrity sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg== cookies@~0.9.0: version "0.9.1" @@ -2751,6 +2687,13 @@ cookies@~0.9.0: depd "~2.0.0" keygrip "~1.1.0" +copy-anything@^3.0.2: + version "3.0.5" + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-3.0.5.tgz#2d92dce8c498f790fa7ad16b01a1ae5a45b020a0" + integrity sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w== + dependencies: + is-what "^4.1.8" + core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" @@ -2774,15 +2717,15 @@ create-require@^1.1.1: resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== -croner@^8.0.1: - version "8.0.2" - resolved "https://registry.yarnpkg.com/croner/-/croner-8.0.2.tgz#e8f7b539ba4e23e16d737867fec2d89d984789de" - integrity sha512-HgSdlSUX8mIgDTTiQpWUP4qY4IFRMsduPCYdca34Pelt8MVdxdaDOzreFtCscA6R+cRZd7UbD1CD3uyx6J3X1A== +croner@^8.0.2: + version "8.1.1" + resolved "https://registry.yarnpkg.com/croner/-/croner-8.1.1.tgz#e6c1f7a4bcb867d4ef97b25168a1234a805ff414" + integrity sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA== -cronstrue@^2.49.0: - version "2.49.0" - resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.49.0.tgz#d59f6d19e33030d45d9ecd3b845d4ccd79c6bfbd" - integrity sha512-FWZBqdStQaPR8ZTBQGALh1EK9Hl1HcG70dyGvD1rKLPafFO3H73o38dz/e8YkIlbLn3JxmBI/f6Doe3Nh+DcEQ== +cronstrue@^2.50.0: + version "2.50.0" + resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.50.0.tgz#eabba0f915f186765258b707b7a3950c663b5573" + integrity sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg== cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" @@ -2793,7 +2736,7 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -crossws@^0.2.0, crossws@^0.2.2, crossws@^0.2.4: +crossws@^0.2.0, crossws@^0.2.4: version "0.2.4" resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.2.4.tgz#82a8b518bff1018ab1d21ced9e35ffbe1681ad03" integrity sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg== @@ -2840,103 +2783,54 @@ cssesc@^3.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssnano-preset-default@^6.1.2: - version "6.1.2" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz#adf4b89b975aa775f2750c89dbaf199bbd9da35e" - integrity sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg== - dependencies: - browserslist "^4.23.0" - css-declaration-sorter "^7.2.0" - cssnano-utils "^4.0.2" - postcss-calc "^9.0.1" - postcss-colormin "^6.1.0" - postcss-convert-values "^6.1.0" - postcss-discard-comments "^6.0.2" - postcss-discard-duplicates "^6.0.3" - postcss-discard-empty "^6.0.3" - postcss-discard-overridden "^6.0.2" - postcss-merge-longhand "^6.0.5" - postcss-merge-rules "^6.1.1" - postcss-minify-font-values "^6.1.0" - postcss-minify-gradients "^6.0.3" - postcss-minify-params "^6.1.0" - postcss-minify-selectors "^6.0.4" - postcss-normalize-charset "^6.0.2" - postcss-normalize-display-values "^6.0.2" - postcss-normalize-positions "^6.0.2" - postcss-normalize-repeat-style "^6.0.2" - postcss-normalize-string "^6.0.2" - postcss-normalize-timing-functions "^6.0.2" - postcss-normalize-unicode "^6.1.0" - postcss-normalize-url "^6.0.2" - postcss-normalize-whitespace "^6.0.2" - postcss-ordered-values "^6.0.2" - postcss-reduce-initial "^6.1.0" - postcss-reduce-transforms "^6.0.2" - postcss-svgo "^6.0.3" - postcss-unique-selectors "^6.0.4" - -cssnano-preset-default@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-7.0.1.tgz#b05c93a29868dd7bd810fa8bbf89f482804da922" - integrity sha512-Fumyr+uZMcjYQeuHssAZxn0cKj3cdQc5GcxkBcmEzISGB+UW9CLNlU4tBOJbJGcPukFDlicG32eFbrc8K9V5pw== +cssnano-preset-default@^7.0.5: + version "7.0.5" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-7.0.5.tgz#916108ab2f73a45a83dc15be5ac83f7a0ff5fa0a" + integrity sha512-Jbzja0xaKwc5JzxPQoc+fotKpYtWEu4wQLMQe29CM0FjjdRjA4omvbGHl2DTGgARKxSTpPssBsok+ixv8uTBqw== dependencies: - browserslist "^4.23.0" + browserslist "^4.23.3" css-declaration-sorter "^7.2.0" cssnano-utils "^5.0.0" - postcss-calc "^10.0.0" - postcss-colormin "^7.0.0" - postcss-convert-values "^7.0.0" - postcss-discard-comments "^7.0.0" - postcss-discard-duplicates "^7.0.0" + postcss-calc "^10.0.1" + postcss-colormin "^7.0.2" + postcss-convert-values "^7.0.3" + postcss-discard-comments "^7.0.2" + postcss-discard-duplicates "^7.0.1" postcss-discard-empty "^7.0.0" postcss-discard-overridden "^7.0.0" - postcss-merge-longhand "^7.0.0" - postcss-merge-rules "^7.0.0" + postcss-merge-longhand "^7.0.3" + postcss-merge-rules "^7.0.3" postcss-minify-font-values "^7.0.0" postcss-minify-gradients "^7.0.0" - postcss-minify-params "^7.0.0" - postcss-minify-selectors "^7.0.0" + postcss-minify-params "^7.0.2" + postcss-minify-selectors "^7.0.3" postcss-normalize-charset "^7.0.0" postcss-normalize-display-values "^7.0.0" postcss-normalize-positions "^7.0.0" postcss-normalize-repeat-style "^7.0.0" postcss-normalize-string "^7.0.0" postcss-normalize-timing-functions "^7.0.0" - postcss-normalize-unicode "^7.0.0" + postcss-normalize-unicode "^7.0.2" postcss-normalize-url "^7.0.0" postcss-normalize-whitespace "^7.0.0" - postcss-ordered-values "^7.0.0" - postcss-reduce-initial "^7.0.0" + postcss-ordered-values "^7.0.1" + postcss-reduce-initial "^7.0.2" postcss-reduce-transforms "^7.0.0" - postcss-svgo "^7.0.0" - postcss-unique-selectors "^7.0.0" - -cssnano-utils@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-4.0.2.tgz#56f61c126cd0f11f2eef1596239d730d9fceff3c" - integrity sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ== + postcss-svgo "^7.0.1" + postcss-unique-selectors "^7.0.2" cssnano-utils@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-5.0.0.tgz#b53a0343dd5d21012911882db6ae7d2eae0e3687" integrity sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ== -cssnano@^6.1.2: - version "6.1.2" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-6.1.2.tgz#4bd19e505bd37ee7cf0dc902d3d869f6d79c66b8" - integrity sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA== - dependencies: - cssnano-preset-default "^6.1.2" - lilconfig "^3.1.1" - -cssnano@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-7.0.1.tgz#a62675fc17f9a26d8560d3e61d79228b628dbb63" - integrity sha512-917Mej/4SdI7b55atsli3sU4MOJ9XDoKgnlCtQtXYj8XUFcM3riTuYHyqBBnnskawW+zWwp0KxJzpEUodlpqUg== +cssnano@^7.0.5: + version "7.0.5" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-7.0.5.tgz#97186daaf96f4db447227ee2d823ce6332f77beb" + integrity sha512-Aq0vqBLtpTT5Yxj+hLlLfNPFuRQCDIjx5JQAhhaedQKLNDvDGeVziF24PS+S1f0Z5KCxWvw0QVI3VNHNBITxVQ== dependencies: - cssnano-preset-default "^7.0.1" - lilconfig "^3.1.1" + cssnano-preset-default "^7.0.5" + lilconfig "^3.1.2" csso@^5.0.5: version "5.0.5" @@ -2978,9 +2872,9 @@ data-view-byte-offset@^1.0.0: is-data-view "^1.0.1" dayjs@^1.11.6: - version "1.11.11" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.11.tgz#dfe0e9d54c5f8b68ccf8ca5f72ac603e7e5ed59e" - integrity sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg== + version "1.11.13" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" + integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== db0@^0.1.4: version "0.1.4" @@ -2994,10 +2888,10 @@ debug@2.6.9: dependencies: ms "2.0.0" -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6: + version "4.3.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" + integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== dependencies: ms "2.1.2" @@ -3064,7 +2958,7 @@ define-properties@^1.2.0, define-properties@^1.2.1: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -defu@^6.0.0, defu@^6.1.2, defu@^6.1.3, defu@^6.1.4: +defu@^6.1.2, defu@^6.1.3, defu@^6.1.4: version "6.1.4" resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.4.tgz#4e0c9cf9ff68fe5f3d7f2765cc1a012dfdcb0479" integrity sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg== @@ -3109,10 +3003,10 @@ detect-libc@^2.0.0: resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== -devalue@^4.3.2: - version "4.3.3" - resolved "https://registry.yarnpkg.com/devalue/-/devalue-4.3.3.tgz#e35df3bdc49136837e77986f629b9fa6fef50726" - integrity sha512-UH8EL6H2ifcY8TbD2QsxwCC/pr5xSwPvv85LrLXVihmHVC3T3YqTCIwnR5ak0yO1KYqlxrPVOA/JVZJYPy2ATg== +devalue@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/devalue/-/devalue-5.0.0.tgz#1ca0099a7d715b4d6cac3924e770ccbbc584ad98" + integrity sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA== didyoumean@^1.2.2: version "1.2.2" @@ -3207,10 +3101,10 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.4.668: - version "1.4.752" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.752.tgz#99227455547c8254488e3dab7d316c34a2c067b8" - integrity sha512-P3QJreYI/AUTcfBVrC4zy9KvnZWekViThgQMX/VpJ+IsOBbcX5JFpORM4qWapwWQ+agb2nYAOyn/4PMXOk0m2Q== +electron-to-chromium@^1.5.4: + version "1.5.13" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz#1abf0410c5344b2b829b7247e031f02810d442e6" + integrity sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q== emoji-regex@^8.0.0: version "8.0.0" @@ -3227,17 +3121,10 @@ encodeurl@^1.0.2, encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== -encoding@^0.1.13: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - -enhanced-resolve@^5.12.0, enhanced-resolve@^5.14.1: - version "5.16.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz#65ec88778083056cb32487faa9aef82ed0864787" - integrity sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA== +enhanced-resolve@^5.14.1, enhanced-resolve@^5.15.0: + version "5.17.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15" + integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -3247,16 +3134,6 @@ entities@^4.2.0, entities@^4.5.0: resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== -env-paths@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" - integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== - -err-code@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== - error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" @@ -3264,10 +3141,15 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -error-stack-parser-es@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/error-stack-parser-es/-/error-stack-parser-es-0.1.1.tgz#9c1d2bbfbba8b51670062e7fbf43c6bcfb6eb4da" - integrity sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA== +error-stack-parser-es@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz#15b50b67bea4b6ed6596976ee07c7867ae25bb1c" + integrity sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg== + +errx@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/errx/-/errx-0.1.0.tgz#4881e411d90a3b1e1620a07604f50081dd59f3aa" + integrity sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q== es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: version "1.23.3" @@ -3394,7 +3276,7 @@ esbuild@^0.19.2: "@esbuild/win32-ia32" "0.19.12" "@esbuild/win32-x64" "0.19.12" -esbuild@^0.20.1, esbuild@^0.20.2: +esbuild@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== @@ -3423,10 +3305,69 @@ esbuild@^0.20.1, esbuild@^0.20.2: "@esbuild/win32-ia32" "0.20.2" "@esbuild/win32-x64" "0.20.2" +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== + optionalDependencies: + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" + +esbuild@^0.23.1: + version "0.23.1" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.1.tgz#40fdc3f9265ec0beae6f59824ade1bd3d3d2dab8" + integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg== + optionalDependencies: + "@esbuild/aix-ppc64" "0.23.1" + "@esbuild/android-arm" "0.23.1" + "@esbuild/android-arm64" "0.23.1" + "@esbuild/android-x64" "0.23.1" + "@esbuild/darwin-arm64" "0.23.1" + "@esbuild/darwin-x64" "0.23.1" + "@esbuild/freebsd-arm64" "0.23.1" + "@esbuild/freebsd-x64" "0.23.1" + "@esbuild/linux-arm" "0.23.1" + "@esbuild/linux-arm64" "0.23.1" + "@esbuild/linux-ia32" "0.23.1" + "@esbuild/linux-loong64" "0.23.1" + "@esbuild/linux-mips64el" "0.23.1" + "@esbuild/linux-ppc64" "0.23.1" + "@esbuild/linux-riscv64" "0.23.1" + "@esbuild/linux-s390x" "0.23.1" + "@esbuild/linux-x64" "0.23.1" + "@esbuild/netbsd-x64" "0.23.1" + "@esbuild/openbsd-arm64" "0.23.1" + "@esbuild/openbsd-x64" "0.23.1" + "@esbuild/sunos-x64" "0.23.1" + "@esbuild/win32-arm64" "0.23.1" + "@esbuild/win32-ia32" "0.23.1" + "@esbuild/win32-x64" "0.23.1" + escalade@^3.1.1, escalade@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" - integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" @@ -3463,22 +3404,23 @@ eslint-import-resolver-node@^0.3.9: resolve "^1.22.4" eslint-import-resolver-typescript@^3.6.0: - version "3.6.1" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz#7b983680edd3f1c5bce1a5829ae0bc2d57fe9efa" - integrity sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg== - dependencies: - debug "^4.3.4" - enhanced-resolve "^5.12.0" - eslint-module-utils "^2.7.4" - fast-glob "^3.3.1" - get-tsconfig "^4.5.0" - is-core-module "^2.11.0" + version "3.6.3" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.3.tgz#bb8e388f6afc0f940ce5d2c5fd4a3d147f038d9e" + integrity sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA== + dependencies: + "@nolyfill/is-core-module" "1.0.39" + debug "^4.3.5" + enhanced-resolve "^5.15.0" + eslint-module-utils "^2.8.1" + fast-glob "^3.3.2" + get-tsconfig "^4.7.5" + is-bun-module "^1.0.2" is-glob "^4.0.3" -eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: - version "2.8.1" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz#52f2404300c3bd33deece9d7372fb337cc1d7c34" - integrity sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q== +eslint-module-utils@^2.8.1, eslint-module-utils@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.9.0.tgz#95d4ac038a68cd3f63482659dffe0883900eb342" + integrity sha512-McVbYmwA3NEKwRQY5g4aWMdcZE5xZxV8i8l7CqJSrameuGSQJtSWaL/LxTEzSKKaCcOhlpDR8XEfYXWPrdo/ZQ== dependencies: debug "^3.2.7" @@ -3499,25 +3441,26 @@ eslint-plugin-es@^4.1.0: regexpp "^3.0.0" eslint-plugin-import@^2.26.0, eslint-plugin-import@^2.28.1: - version "2.29.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643" - integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== + version "2.30.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.30.0.tgz#21ceea0fc462657195989dd780e50c92fe95f449" + integrity sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw== dependencies: - array-includes "^3.1.7" - array.prototype.findlastindex "^1.2.3" + "@rtsao/scc" "^1.1.0" + array-includes "^3.1.8" + array.prototype.findlastindex "^1.2.5" array.prototype.flat "^1.3.2" array.prototype.flatmap "^1.3.2" debug "^3.2.7" doctrine "^2.1.0" eslint-import-resolver-node "^0.3.9" - eslint-module-utils "^2.8.0" - hasown "^2.0.0" - is-core-module "^2.13.1" + eslint-module-utils "^2.9.0" + hasown "^2.0.2" + is-core-module "^2.15.1" is-glob "^4.0.3" minimatch "^3.1.2" - object.fromentries "^2.0.7" - object.groupby "^1.0.1" - object.values "^1.1.7" + object.fromentries "^2.0.8" + object.groupby "^1.0.3" + object.values "^1.2.0" semver "^6.3.1" tsconfig-paths "^3.15.0" @@ -3557,9 +3500,9 @@ eslint-plugin-nuxt@^4.0.0: vue-eslint-parser "^9.0.3" eslint-plugin-promise@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz#269a3e2772f62875661220631bd4dafcb4083816" - integrity sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== + version "6.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.6.0.tgz#acd3fd7d55cead7a10f92cf698f36c0aafcd717a" + integrity sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ== eslint-plugin-unicorn@^44.0.2: version "44.0.2" @@ -3582,17 +3525,17 @@ eslint-plugin-unicorn@^44.0.2: strip-indent "^3.0.0" eslint-plugin-vue@^9.17.0, eslint-plugin-vue@^9.4.0, eslint-plugin-vue@^9.7.0: - version "9.25.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.25.0.tgz#615cb7bb6d0e2140d21840b9aa51dce69e803e7a" - integrity sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA== + version "9.28.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.28.0.tgz#e4412f0c1024bafd15ffeaa6f76f4c99152e2765" + integrity sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g== dependencies: "@eslint-community/eslint-utils" "^4.4.0" globals "^13.24.0" natural-compare "^1.4.0" nth-check "^2.1.1" postcss-selector-parser "^6.0.15" - semver "^7.6.0" - vue-eslint-parser "^9.4.2" + semver "^7.6.3" + vue-eslint-parser "^9.4.3" xml-name-validator "^4.0.0" eslint-scope@^7.1.1, eslint-scope@^7.2.2: @@ -3686,9 +3629,9 @@ espree@^9.3.1, espree@^9.6.0, espree@^9.6.1: eslint-visitor-keys "^3.4.1" esquery@^1.4.0, esquery@^1.4.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + version "1.6.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== dependencies: estraverse "^5.1.0" @@ -3766,11 +3709,6 @@ execa@^8.0.1: signal-exit "^4.1.0" strip-final-newline "^3.0.0" -exponential-backoff@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" - integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== - externality@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/externality/-/externality-1.0.2.tgz#a027f8cfd995c42fd35a8d794cfc224d4a5840c0" @@ -3786,12 +3724,12 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-fifo@^1.1.0, fast-fifo@^1.2.0: +fast-fifo@^1.2.0, fast-fifo@^1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== -fast-glob@^3.2.7, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.1, fast-glob@^3.3.2: +fast-glob@^3.2.7, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== @@ -3812,6 +3750,11 @@ fast-levenshtein@^2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== +fast-npm-meta@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/fast-npm-meta/-/fast-npm-meta-0.2.2.tgz#619e4ab6b71f4ce19d9fad48bba6ffa8164b7361" + integrity sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg== + fastq@^1.6.0: version "1.17.1" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" @@ -3819,6 +3762,11 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fdir@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.3.0.tgz#fcca5a23ea20e767b15e081ee13b3e6488ee0bb0" + integrity sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ== + file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" @@ -3831,23 +3779,14 @@ file-uri-to-path@1.0.0: resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" -find-cache-dir@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-up@^4.0.0, find-up@^4.1.0: +find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -3877,13 +3816,6 @@ flatted@^3.2.9, flatted@^3.3.1: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== -focus-trap@^7.5.4: - version "7.5.4" - resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.5.4.tgz#6c4e342fe1dae6add9c2aa332a6e7a0bbd495ba2" - integrity sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w== - dependencies: - tabbable "^6.2.0" - for-each@^0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" @@ -3892,9 +3824,9 @@ for-each@^0.3.3: is-callable "^1.1.3" foreground-child@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" - integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== + version "3.3.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" + integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== dependencies: cross-spawn "^7.0.0" signal-exit "^4.0.1" @@ -3935,13 +3867,6 @@ fs-minipass@^2.0.0: dependencies: minipass "^3.0.0" -fs-minipass@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" - integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== - dependencies: - minipass "^7.0.3" - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -4032,14 +3957,14 @@ get-symbol-description@^1.0.2: es-errors "^1.3.0" get-intrinsic "^1.2.4" -get-tsconfig@^4.5.0: - version "4.7.3" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.3.tgz#0498163d98f7b58484dd4906999c0c9d5f103f83" - integrity sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg== +get-tsconfig@^4.7.5: + version "4.8.0" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.8.0.tgz#125dc13a316f61650a12b20c97c11b8fd996fedd" + integrity sha512-Pgba6TExTZ0FJAn1qkJAjIeKoDJ3CsI2ChuLohJnZl/tTU8MVrq3b+2t5UOPfRa4RMsorClBjJALkJUMjG1PAw== dependencies: resolve-pkg-maps "^1.0.0" -giget@^1.2.1: +giget@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/giget/-/giget-1.2.3.tgz#ef6845d1140e89adad595f7f3bb60aa31c672cb6" integrity sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA== @@ -4067,9 +3992,9 @@ git-up@^7.0.0: parse-url "^8.1.0" git-url-parse@^14.0.0: - version "14.0.0" - resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-14.0.0.tgz#18ce834726d5fbca0c25a4555101aa277017418f" - integrity sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ== + version "14.1.0" + resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-14.1.0.tgz#01cb70000666c11a7230aceec1fd518c416c224c" + integrity sha512-8xg65dTxGHST3+zGpycMMFZcoTzAdZ2dOtu4vmgIfkTFnVHBxHMzBC2L1k8To7EmrSiHesT8JgPLT91VKw1B5g== dependencies: git-up "^7.0.0" @@ -4087,16 +4012,17 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@^10.0.0, glob@^10.2.2, glob@^10.3.10: - version "10.3.12" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.12.tgz#3a65c363c2e9998d220338e88a5f6ac97302960b" - integrity sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg== +glob@^10.0.0, glob@^10.3.10: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== dependencies: foreground-child "^3.1.0" - jackspeak "^2.3.6" - minimatch "^9.0.1" - minipass "^7.0.4" - path-scurry "^1.10.2" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" glob@^7.1.3, glob@^7.2.0: version "7.2.3" @@ -4171,10 +4097,10 @@ globby@^13.2.2: merge2 "^1.4.1" slash "^4.0.0" -globby@^14.0.1: - version "14.0.1" - resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.1.tgz#a1b44841aa7f4c6d8af2bc39951109d77301959b" - integrity sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ== +globby@^14.0.1, globby@^14.0.2: + version "14.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f" + integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw== dependencies: "@sindresorhus/merge-streams" "^2.1.0" fast-glob "^3.3.2" @@ -4190,7 +4116,7 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" -graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: +graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -4207,19 +4133,19 @@ gzip-size@^7.0.0: dependencies: duplexer "^0.1.2" -h3@^1.10.2, h3@^1.11.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/h3/-/h3-1.11.1.tgz#e9414ae6f2a076a345ea07256b320edb29bab9f7" - integrity sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A== +h3@^1.10.2, h3@^1.12.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/h3/-/h3-1.12.0.tgz#9d7f05f08a997d263e484b02436cb027df3026d8" + integrity sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA== dependencies: - cookie-es "^1.0.0" - crossws "^0.2.2" + cookie-es "^1.1.0" + crossws "^0.2.4" defu "^6.1.4" destr "^2.0.3" - iron-webcrypto "^1.0.0" + iron-webcrypto "^1.1.1" ohash "^1.1.3" - radix3 "^1.1.0" - ufo "^1.4.0" + radix3 "^1.1.2" + ufo "^1.5.3" uncrypto "^0.1.3" unenv "^1.9.0" @@ -4289,13 +4215,6 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== -hosted-git-info@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.1.tgz#9985fcb2700467fecf7f33a4d4874e30680b5322" - integrity sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA== - dependencies: - lru-cache "^10.0.1" - html-tags@^3.3.1: version "3.3.1" resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" @@ -4309,11 +4228,6 @@ http-assert@^1.3.0: deep-equal "~1.0.1" http-errors "~1.8.0" -http-cache-semantics@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== - http-errors@2.0.0, http-errors@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" @@ -4346,14 +4260,6 @@ http-errors@~1.6.2: setprototypeof "1.1.0" statuses ">= 1.4.0 < 2" -http-proxy-agent@^7.0.0: - version "7.0.2" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" - integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== - dependencies: - agent-base "^7.1.0" - debug "^4.3.4" - http-shutdown@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/http-shutdown/-/http-shutdown-1.2.2.tgz#41bc78fc767637c4c95179bc492f312c0ae64c5f" @@ -4367,14 +4273,6 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -https-proxy-agent@^7.0.1: - version "7.0.4" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz#8e97b841a029ad8ddc8731f26595bad868cb4168" - integrity sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg== - dependencies: - agent-base "^7.0.2" - debug "4" - httpxy@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/httpxy/-/httpxy-0.1.5.tgz#fd2401206e0b5d919aeda25e967ece0f1a6c8569" @@ -4390,39 +4288,25 @@ human-signals@^5.0.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== -iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - ieee754@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore-walk@^6.0.4: - version "6.0.4" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.4.tgz#89950be94b4f522225eb63a13c56badb639190e9" - integrity sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw== - dependencies: - minimatch "^9.0.0" - -ignore@^5.1.1, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" - integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== +ignore@^5.1.1, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== -image-meta@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/image-meta/-/image-meta-0.2.0.tgz#ea28d05d52f5ad35f75b14f46278a44d626f48bc" - integrity sha512-ZBGjl0ZMEMeOC3Ns0wUF/5UdUmr3qQhBSCniT0LxOgGGIRHiNFOkMtIHB7EOznRU47V2AxPgiVP+s+0/UCU0Hg== +image-meta@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/image-meta/-/image-meta-0.2.1.tgz#3a9eb9f0bfd2f767ca2b0720623c2e03742aa29f" + integrity sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw== immutable@^4.0.0: - version "4.3.5" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.5.tgz#f8b436e66d59f99760dc577f5c99a4fd2a5cc5a0" - integrity sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw== + version "4.3.7" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.7.tgz#c70145fc90d89fb02021e65c84eb0226e4e5a381" + integrity sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw== import-fresh@^3.2.1: version "3.3.0" @@ -4432,6 +4316,17 @@ import-fresh@^3.2.1: parent-module "^1.0.0" resolve-from "^4.0.0" +impound@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/impound/-/impound-0.1.0.tgz#3f6ff0597fd138f8f2676cc63862bbd005db413a" + integrity sha512-F9nJgOsDc3tysjN74edE0vGPEQrU7DAje6g5nNAL5Jc9Tv4JW3mH7XMGne+EaadTniDXLeUrVR21opkNfWO1zQ== + dependencies: + "@rollup/pluginutils" "^5.1.0" + mlly "^1.7.1" + pathe "^1.1.2" + unenv "^1.10.0" + unplugin "^1.12.2" + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -4442,11 +4337,6 @@ indent-string@^4.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== -index-to-position@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/index-to-position/-/index-to-position-0.1.2.tgz#e11bfe995ca4d8eddb1ec43274488f3c201a7f09" - integrity sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -4484,7 +4374,7 @@ internal-slot@^1.0.7: hasown "^2.0.0" side-channel "^1.0.4" -ioredis@^5.3.2: +ioredis@^5.4.1: version "5.4.1" resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-5.4.1.tgz#1c56b70b759f01465913887375ed809134296f40" integrity sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA== @@ -4499,18 +4389,10 @@ ioredis@^5.3.2: redis-parser "^3.0.0" standard-as-callback "^2.1.0" -ip-address@^9.0.5: - version "9.0.5" - resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" - integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== - dependencies: - jsbn "1.1.0" - sprintf-js "^1.1.3" - -iron-webcrypto@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.1.1.tgz#245c9d467075ee810343ddfa53dd4909616aaf33" - integrity sha512-5xGwQUWHQSy039rFr+5q/zOmj7GP0Ypzvo34Ep+61bPIhaLduEDp/PvLGlU3awD2mzWUR0weN2vJ1mILydFPEg== +iron-webcrypto@^1.1.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz#aa60ff2aa10550630f4c0b11fd2442becdb35a6f" + integrity sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg== is-array-buffer@^3.0.4: version "3.0.4" @@ -4554,17 +4436,24 @@ is-builtin-module@^3.2.0, is-builtin-module@^3.2.1: dependencies: builtin-modules "^3.3.0" +is-bun-module@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-1.1.0.tgz#a66b9830869437f6cdad440ba49ab6e4dc837269" + integrity sha512-4mTAVPlrXpaN3jtF0lsnPCMGnq4+qZjVIKq0HCpfcqf8OC1SM5oATCIAPM5V5FN05qp2NNnFndphmdZS9CV3hA== + dependencies: + semver "^7.6.3" + is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== -is-core-module@^2.11.0, is-core-module@^2.13.0, is-core-module@^2.13.1, is-core-module@^2.8.1: - version "2.13.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" - integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== +is-core-module@^2.11.0, is-core-module@^2.13.0, is-core-module@^2.15.1: + version "2.15.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" + integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== dependencies: - hasown "^2.0.0" + hasown "^2.0.2" is-data-view@^1.0.1: version "1.0.1" @@ -4629,11 +4518,6 @@ is-installed-globally@^1.0.0: global-directory "^4.0.1" is-path-inside "^4.0.0" -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - is-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" @@ -4666,11 +4550,6 @@ is-path-inside@^4.0.0: resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-4.0.0.tgz#805aeb62c47c1b12fc3fd13bfb3ed1e7430071db" integrity sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA== -is-primitive@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-3.0.1.tgz#98c4db1abff185485a657fc2905052b940524d05" - integrity sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w== - is-reference@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" @@ -4738,6 +4617,11 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" +is-what@^4.1.8: + version "4.1.16" + resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.16.tgz#1ad860a19da8b4895ad5495da3182ce2acdd7a6f" + integrity sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A== + is-wsl@^2.1.1, is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" @@ -4774,29 +4658,19 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== -isexe@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d" - integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ== - -jackspeak@^2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" - integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== dependencies: "@isaacs/cliui" "^8.0.2" optionalDependencies: "@pkgjs/parseargs" "^0.11.0" -jiti@^1.19.3, jiti@^1.21.0: - version "1.21.0" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" - integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== - -js-levenshtein@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" - integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== +jiti@^1.19.3, jiti@^1.21.0, jiti@^1.21.6: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== js-tokens@^4.0.0: version "4.0.0" @@ -4815,11 +4689,6 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -jsbn@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" - integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== - jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" @@ -4835,21 +4704,11 @@ json-parse-even-better-errors@^2.3.0: resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== -json-parse-even-better-errors@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz#02bb29fb5da90b5444581749c22cedd3597c6cb0" - integrity sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg== - json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" @@ -4876,11 +4735,6 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" -jsonparse@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== - jwt-decode@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jwt-decode/-/jwt-decode-4.0.0.tgz#2270352425fd413785b2faf11f6e755c5151bd4b" @@ -4979,10 +4833,10 @@ kolorist@^1.8.0: resolved "https://registry.yarnpkg.com/kolorist/-/kolorist-1.8.0.tgz#edddbbbc7894bc13302cdf740af6374d4a04743c" integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ== -launch-editor@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.1.tgz#f259c9ef95cbc9425620bbbd14b468fcdb4ffe3c" - integrity sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw== +launch-editor@^2.8.1: + version "2.8.2" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.8.2.tgz#939e1b3469f9d5471e4eaacedd51b3b7c45352cd" + integrity sha512-eF5slEUZXmi6WvFzI3dYcv+hA24/iKnROf24HztcURJpSz9RBmBgz5cNCVOeguouf1llrwy6Yctl4C4HM+xI8g== dependencies: picocolors "^1.0.0" shell-quote "^1.8.1" @@ -5027,10 +4881,10 @@ lilconfig@^2.1.0: resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== -lilconfig@^3.0.0, lilconfig@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.1.tgz#9d8a246fa753106cfc205fd2d77042faca56e5e3" - integrity sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ== +lilconfig@^3.0.0, lilconfig@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" + integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== lines-and-columns@^1.1.6: version "1.2.4" @@ -5061,7 +4915,7 @@ listhen@^1.7.2: untun "^0.1.3" uqr "^0.1.2" -local-pkg@^0.4.2, local-pkg@^0.4.3: +local-pkg@^0.4.2: version "0.4.3" resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== @@ -5103,11 +4957,6 @@ lodash.isarguments@^3.1.0: resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" integrity sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg== -lodash.isequal@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" - integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== - lodash.memoize@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" @@ -5128,10 +4977,10 @@ lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.21: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -lru-cache@^10.0.1, lru-cache@^10.2.0: - version "10.2.2" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.2.tgz#48206bc114c1252940c41b25b41af5b545aca878" - integrity sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ== +lru-cache@^10.2.0, lru-cache@^10.4.3: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== lru-cache@^5.1.1: version "5.1.1" @@ -5140,61 +4989,36 @@ lru-cache@^5.1.1: dependencies: yallist "^3.0.2" -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -magic-string-ast@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/magic-string-ast/-/magic-string-ast-0.3.0.tgz#8fc83ac6d084c5a342645a30354184a6e0ab4382" - integrity sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA== +magic-string-ast@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/magic-string-ast/-/magic-string-ast-0.6.2.tgz#180679c584bdea9de1dbb6c755fd3e4bf1b0b509" + integrity sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA== dependencies: - magic-string "^0.30.2" + magic-string "^0.30.10" -magic-string@^0.30.0, magic-string@^0.30.10, magic-string@^0.30.2, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.5, magic-string@^0.30.8, magic-string@^0.30.9: - version "0.30.10" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e" - integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ== +magic-string@^0.30.0, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.8: + version "0.30.11" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954" + integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== dependencies: - "@jridgewell/sourcemap-codec" "^1.4.15" + "@jridgewell/sourcemap-codec" "^1.5.0" magicast@^0.3.4: - version "0.3.4" - resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.4.tgz#bbda1791d03190a24b00ff3dd18151e7fd381d19" - integrity sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q== + version "0.3.5" + resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.5.tgz#8301c3c7d66704a0771eb1bad74274f0ec036739" + integrity sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ== dependencies: - "@babel/parser" "^7.24.4" - "@babel/types" "^7.24.0" + "@babel/parser" "^7.25.4" + "@babel/types" "^7.25.4" source-map-js "^1.2.0" -make-dir@^3.0.2, make-dir@^3.1.0: +make-dir@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== dependencies: semver "^6.0.0" -make-fetch-happen@^13.0.0: - version "13.0.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz#273ba2f78f45e1f3a6dca91cede87d9fa4821e36" - integrity sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA== - dependencies: - "@npmcli/agent" "^2.0.0" - cacache "^18.0.0" - http-cache-semantics "^4.1.1" - is-lambda "^1.0.1" - minipass "^7.0.2" - minipass-fetch "^3.0.0" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.3" - proc-log "^4.2.0" - promise-retry "^2.0.1" - ssri "^10.0.0" - mdn-data@2.0.28: version "2.0.28" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" @@ -5226,11 +5050,11 @@ methods@^1.1.2: integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: - braces "^3.0.2" + braces "^3.0.3" picomatch "^2.3.1" mime-db@1.52.0: @@ -5255,10 +5079,10 @@ mime@^3.0.0: resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== -mime@^4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/mime/-/mime-4.0.3.tgz#cd4a1aa052fc980dfc34f111fe1be9e8b878c5d2" - integrity sha512-KgUb15Oorc0NEKPbvfa0wRU+PItIEZmiv+pyAO2i0oTIVTJhlzMclU7w4RXWQrSOVH5ax/p/CkIO7KI4OyFJTQ== +mime@^4.0.3: + version "4.0.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-4.0.4.tgz#9f851b0fc3c289d063b20a7a8055b3014b25664b" + integrity sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ== mimic-fn@^4.0.0: version "4.0.0" @@ -5291,10 +5115,10 @@ minimatch@^5.0.1, minimatch@^5.1.0: dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.0, minimatch@^9.0.1, minimatch@^9.0.3: - version "9.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51" - integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== dependencies: brace-expansion "^2.0.1" @@ -5303,53 +5127,6 @@ minimist@^1.2.0, minimist@^1.2.6: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass-collect@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" - integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== - dependencies: - minipass "^7.0.3" - -minipass-fetch@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.4.tgz#4d4d9b9f34053af6c6e597a64be8e66e42bf45b7" - integrity sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg== - dependencies: - minipass "^7.0.3" - minipass-sized "^1.0.3" - minizlib "^2.1.2" - optionalDependencies: - encoding "^0.1.13" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-json-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" - integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== - dependencies: - jsonparse "^1.3.1" - minipass "^3.0.0" - -minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - minipass@^3.0.0: version "3.3.6" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" @@ -5362,12 +5139,12 @@ minipass@^5.0.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4: - version "7.0.4" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" - integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== -minizlib@^2.1.1, minizlib@^2.1.2: +minizlib@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== @@ -5375,11 +5152,6 @@ minizlib@^2.1.1, minizlib@^2.1.2: minipass "^3.0.0" yallist "^4.0.0" -mitt@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mitt/-/mitt-2.1.0.tgz#f740577c23176c6205b121b2973514eade1b2230" - integrity sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg== - mitt@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" @@ -5398,34 +5170,32 @@ mkdirp@^1.0.3: integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== mkdist@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/mkdist/-/mkdist-1.5.1.tgz#ce5b992a9a125310357c5da0cb250d937d7d6133" - integrity sha512-lCu1spNiA52o7IaKgZnOjg28nNHwYqUDjBfXePXyUtzD7Xhe6rRTkGTalQ/ALfrZC/SrPw2+A/0qkeJ+fPDZtQ== + version "1.5.5" + resolved "https://registry.yarnpkg.com/mkdist/-/mkdist-1.5.5.tgz#251c7f23a32ae216e4eed18191fcf43274509822" + integrity sha512-Kbj0Tt4uk6AN/XEV1W7EgBpJUmEXZgTWxbMKYIpO0hRXoTstFIJrJVqDgPjBz9AXXN3ZpxQBk2Q0n28Ze0Gh1w== dependencies: - autoprefixer "^10.4.19" + autoprefixer "^10.4.20" citty "^0.1.6" - cssnano "^7.0.0" + cssnano "^7.0.5" defu "^6.1.4" - esbuild "^0.20.2" - fs-extra "^11.2.0" - globby "^14.0.1" - jiti "^1.21.0" - mlly "^1.6.1" - mri "^1.2.0" + esbuild "^0.23.1" + fast-glob "^3.3.2" + jiti "^1.21.6" + mlly "^1.7.1" pathe "^1.1.2" - pkg-types "^1.1.0" - postcss "^8.4.38" - postcss-nested "^6.0.1" - semver "^7.6.0" + pkg-types "^1.1.3" + postcss "^8.4.41" + postcss-nested "^6.2.0" + semver "^7.6.3" -mlly@^1.3.0, mlly@^1.4.0, mlly@^1.4.2, mlly@^1.6.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.0.tgz#587383ae40dda23cadb11c3c3cc972b277724271" - integrity sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ== +mlly@^1.3.0, mlly@^1.4.0, mlly@^1.4.2, mlly@^1.6.1, mlly@^1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.1.tgz#e0336429bb0731b6a8e887b438cbdae522c8f32f" + integrity sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA== dependencies: acorn "^8.11.3" pathe "^1.1.2" - pkg-types "^1.1.0" + pkg-types "^1.1.1" ufo "^1.5.3" mri@^1.2.0: @@ -5477,46 +5247,51 @@ nanoid@^5.0.7: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.7.tgz#6452e8c5a816861fd9d2b898399f7e5fd6944cc6" integrity sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ== +nanotar@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/nanotar/-/nanotar-0.1.1.tgz#24276a418130fa69f479577f343747e768810857" + integrity sha512-AiJsGsSF3O0havL1BydvI4+wR76sKT+okKRwWIaK96cZUnXqH0uNBOsHlbwZq3+m2BR1VKqHDVudl3gO4mYjpQ== + napi-wasm@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/napi-wasm/-/napi-wasm-1.1.0.tgz#bbe617823765ae9c1bc12ff5942370eae7b2ba4e" - integrity sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg== + version "1.1.3" + resolved "https://registry.yarnpkg.com/napi-wasm/-/napi-wasm-1.1.3.tgz#7bb95c88e6561f84880bb67195437b1cfbe99224" + integrity sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg== natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -negotiator@0.6.3, negotiator@^0.6.3: +negotiator@0.6.3: version "0.6.3" resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== -nitropack@^2.9.6: - version "2.9.6" - resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.9.6.tgz#90af114b796872f34e125e780e6148525149769f" - integrity sha512-HP2PE0dREcDIBVkL8Zm6eVyrDd10/GI9hTL00PHvjUM8I9Y/2cv73wRDmxNyInfrx/CJKHATb2U/pQrqpzJyXA== +nitropack@^2.9.7: + version "2.9.7" + resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.9.7.tgz#66da772d14d0e364dd17adbd439f0b1e44112a8d" + integrity sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw== dependencies: - "@cloudflare/kv-asset-handler" "^0.3.1" - "@netlify/functions" "^2.6.0" + "@cloudflare/kv-asset-handler" "^0.3.4" + "@netlify/functions" "^2.8.0" "@rollup/plugin-alias" "^5.1.0" - "@rollup/plugin-commonjs" "^25.0.7" + "@rollup/plugin-commonjs" "^25.0.8" "@rollup/plugin-inject" "^5.0.5" "@rollup/plugin-json" "^6.1.0" "@rollup/plugin-node-resolve" "^15.2.3" - "@rollup/plugin-replace" "^5.0.5" + "@rollup/plugin-replace" "^5.0.7" "@rollup/plugin-terser" "^0.4.4" "@rollup/pluginutils" "^5.1.0" "@types/http-proxy" "^1.17.14" - "@vercel/nft" "^0.26.4" + "@vercel/nft" "^0.26.5" archiver "^7.0.1" - c12 "^1.10.0" + c12 "^1.11.1" chalk "^5.3.0" chokidar "^3.6.0" citty "^0.1.6" consola "^3.2.3" cookie-es "^1.1.0" - croner "^8.0.1" + croner "^8.0.2" crossws "^0.2.4" db0 "^0.1.4" defu "^6.1.4" @@ -5528,54 +5303,53 @@ nitropack@^2.9.6: fs-extra "^11.2.0" globby "^14.0.1" gzip-size "^7.0.0" - h3 "^1.11.1" + h3 "^1.12.0" hookable "^5.5.3" httpxy "^0.1.5" - ioredis "^5.3.2" - is-primitive "^3.0.1" - jiti "^1.21.0" + ioredis "^5.4.1" + jiti "^1.21.6" klona "^2.0.6" knitwork "^1.1.0" listhen "^1.7.2" - magic-string "^0.30.8" - mime "^4.0.1" - mlly "^1.6.1" + magic-string "^0.30.10" + mime "^4.0.3" + mlly "^1.7.1" mri "^1.2.0" node-fetch-native "^1.6.4" ofetch "^1.3.4" ohash "^1.1.3" - openapi-typescript "^6.7.5" + openapi-typescript "^6.7.6" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.0.3" + pkg-types "^1.1.1" pretty-bytes "^6.1.1" radix3 "^1.1.2" - rollup "^4.13.2" + rollup "^4.18.0" rollup-plugin-visualizer "^5.12.0" scule "^1.3.0" - semver "^7.6.0" - serve-placeholder "^2.0.1" + semver "^7.6.2" + serve-placeholder "^2.0.2" serve-static "^1.15.0" std-env "^3.7.0" ufo "^1.5.3" uncrypto "^0.1.3" unctx "^2.3.1" unenv "^1.9.0" - unimport "^3.7.1" + unimport "^3.7.2" unstorage "^1.10.2" unwasm "^0.3.9" node-addon-api@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.0.tgz#71f609369379c08e251c558527a107107b5e0fdb" - integrity sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g== + version "7.1.1" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558" + integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ== -node-fetch-native@^1.6.1, node-fetch-native@^1.6.2, node-fetch-native@^1.6.3, node-fetch-native@^1.6.4: +node-fetch-native@^1.6.3, node-fetch-native@^1.6.4: version "1.6.4" resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e" integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ== -node-fetch@^2.6.1, node-fetch@^2.6.7: +node-fetch@^2.6.7: version "2.7.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== @@ -5588,30 +5362,14 @@ node-forge@^1.3.1: integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== node-gyp-build@^4.2.2: - version "4.8.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.0.tgz#3fee9c1731df4581a3f9ead74664369ff00d26dd" - integrity sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og== - -node-gyp@^10.0.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-10.1.0.tgz#75e6f223f2acb4026866c26a2ead6aab75a8ca7e" - integrity sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA== - dependencies: - env-paths "^2.2.0" - exponential-backoff "^3.1.1" - glob "^10.3.10" - graceful-fs "^4.2.6" - make-fetch-happen "^13.0.0" - nopt "^7.0.0" - proc-log "^3.0.0" - semver "^7.3.5" - tar "^6.1.2" - which "^4.0.0" + version "4.8.2" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.2.tgz#4f802b71c1ab2ca16af830e6c1ea7dd1ad9496fa" + integrity sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw== -node-releases@^2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" - integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== nopt@^5.0.0: version "5.0.0" @@ -5620,13 +5378,6 @@ nopt@^5.0.0: dependencies: abbrev "1" -nopt@^7.0.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.0.tgz#067378c68116f602f552876194fd11f1292503d7" - integrity sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA== - dependencies: - abbrev "^2.0.0" - normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" @@ -5637,16 +5388,6 @@ normalize-package-data@^2.5.0: semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-package-data@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.0.tgz#68a96b3c11edd462af7189c837b6b1064a484196" - integrity sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg== - dependencies: - hosted-git-info "^7.0.0" - is-core-module "^2.8.1" - semver "^7.3.5" - validate-npm-package-license "^3.0.4" - normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" @@ -5657,66 +5398,6 @@ normalize-range@^0.1.2: resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== -npm-bundled@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-3.0.0.tgz#7e8e2f8bb26b794265028491be60321a25a39db7" - integrity sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ== - dependencies: - npm-normalize-package-bin "^3.0.0" - -npm-install-checks@^6.0.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.3.0.tgz#046552d8920e801fa9f919cad569545d60e826fe" - integrity sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw== - dependencies: - semver "^7.1.1" - -npm-normalize-package-bin@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" - integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== - -npm-package-arg@^11.0.0: - version "11.0.2" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.2.tgz#1ef8006c4a9e9204ddde403035f7ff7d718251ca" - integrity sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw== - dependencies: - hosted-git-info "^7.0.0" - proc-log "^4.0.0" - semver "^7.3.5" - validate-npm-package-name "^5.0.0" - -npm-packlist@^8.0.0: - version "8.0.2" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-8.0.2.tgz#5b8d1d906d96d21c85ebbeed2cf54147477c8478" - integrity sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA== - dependencies: - ignore-walk "^6.0.4" - -npm-pick-manifest@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz#f87a4c134504a2c7931f2bb8733126e3c3bb7e8f" - integrity sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg== - dependencies: - npm-install-checks "^6.0.0" - npm-normalize-package-bin "^3.0.0" - npm-package-arg "^11.0.0" - semver "^7.3.5" - -npm-registry-fetch@^17.0.0: - version "17.0.0" - resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-17.0.0.tgz#b93bd8d55e6e7dc2f9ea6832e8b19922cdf3548f" - integrity sha512-JoOpdYqru846tJX96Jn2jyYVpc1TD1o6Oox80rjVIDAZqIsS2n+nNx+/Qd02LlQm/itGhsBgzP1VUKACLQHD+Q== - dependencies: - "@npmcli/redact" "^2.0.0" - make-fetch-happen "^13.0.0" - minipass "^7.0.2" - minipass-fetch "^3.0.0" - minipass-json-stream "^1.0.1" - minizlib "^2.1.2" - npm-package-arg "^11.0.0" - proc-log "^4.0.0" - npm-run-path@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" @@ -5748,100 +5429,106 @@ nth-check@^2.0.1, nth-check@^2.1.1: dependencies: boolbase "^1.0.0" -nuxi@^3.11.1: - version "3.11.1" - resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.11.1.tgz#a9c03333fde2200fd9f7d2965c33e93d3edeb378" - integrity sha512-AW71TpxRHNg8MplQVju9tEFvXPvX42e0wPYknutSStDuAjV99vWTWYed4jxr/grk2FtKAuv2KvdJxcn2W59qyg== +nuxi@^3.13.1: + version "3.13.1" + resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.13.1.tgz#170a573d49bd8f1ec433c6b781276a29d5201232" + integrity sha512-rhUfFCtIH8IxhfibVd26uGrC0ojUijGoU3bAhPQHrkl7mFlK+g+XeIttdsI8YAC7s/wPishrTpE9z1UssHY6eA== optionalDependencies: fsevents "~2.3.3" nuxt-api-party@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/nuxt-api-party/-/nuxt-api-party-2.0.0.tgz#ba3201212004e37e7fd43cfeb719092dc1989414" - integrity sha512-ER+qHhZ7ZiThINJ8GaGhtPwv/eNnROVyed09ltshOCTscDcRSC/veDAD+qUYruyzKl8C/eb3jgkpGHwug2OUMw== + version "2.0.9" + resolved "https://registry.yarnpkg.com/nuxt-api-party/-/nuxt-api-party-2.0.9.tgz#5a14a7dac456f483ce0e68e07df1d3c8d3d9afb4" + integrity sha512-nTSywIlnCFqGlAxWNKxkvsWa7tmhOT3ZufkFXh8XVkXxn++KX9akY1QlBlpfBbkdDO1S9d4ypnSrItHQ/civ2Q== dependencies: - "@nuxt/kit" "^3.11.2" + "@nuxt/kit" "^3.13.0" defu "^6.1.4" ofetch "^1.3.4" ohash "^1.1.3" - openapi-typescript "^7.0.0-next.8" - openapi-typescript-helpers "^0.0.7" + openapi-typescript-helpers "0.0.13" pathe "^1.1.2" scule "^1.3.0" - ufo "^1.5.3" + ufo "^1.5.4" -nuxt@^3.11.2: - version "3.11.2" - resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.11.2.tgz#38e14b96ff5669b1fbae7fc99e8d79042dce658d" - integrity sha512-Be1d4oyFo60pdF+diBolYDcfNemoMYM3R8PDjhnGrs/w3xJoDH1YMUVWHXXY8WhSmYZI7dyBehx/6kTfGFliVA== +nuxt@^3.13.0: + version "3.13.1" + resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.13.1.tgz#b1d43e10b1c3051a898b0b01471face675500c97" + integrity sha512-En0vVrCJWu54ptShUlrqOGzXTcjhX+RnHShwdcpNqL9kmE9FWqeDYnPTgt2gJWrYSvVbmjJcVfEugNo9XpNmHA== dependencies: "@nuxt/devalue" "^2.0.2" - "@nuxt/devtools" "^1.1.5" - "@nuxt/kit" "3.11.2" - "@nuxt/schema" "3.11.2" - "@nuxt/telemetry" "^2.5.3" - "@nuxt/ui-templates" "^1.3.2" - "@nuxt/vite-builder" "3.11.2" - "@unhead/dom" "^1.9.4" - "@unhead/ssr" "^1.9.4" - "@unhead/vue" "^1.9.4" - "@vue/shared" "^3.4.21" - acorn "8.11.3" - c12 "^1.10.0" + "@nuxt/devtools" "^1.4.1" + "@nuxt/kit" "3.13.1" + "@nuxt/schema" "3.13.1" + "@nuxt/telemetry" "^2.5.4" + "@nuxt/vite-builder" "3.13.1" + "@unhead/dom" "^1.10.4" + "@unhead/ssr" "^1.10.4" + "@unhead/vue" "^1.10.4" + "@vue/shared" "^3.5.0" + acorn "8.12.1" + c12 "^1.11.2" chokidar "^3.6.0" - cookie-es "^1.1.0" + compatx "^0.1.8" + consola "^3.2.3" + cookie-es "^1.2.2" defu "^6.1.4" destr "^2.0.3" - devalue "^4.3.2" - esbuild "^0.20.2" + devalue "^5.0.0" + errx "^0.1.0" + esbuild "^0.23.1" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" - fs-extra "^11.2.0" - globby "^14.0.1" - h3 "^1.11.1" + globby "^14.0.2" + h3 "^1.12.0" hookable "^5.5.3" - jiti "^1.21.0" + ignore "^5.3.2" + impound "^0.1.0" + jiti "^1.21.6" klona "^2.0.6" knitwork "^1.1.0" - magic-string "^0.30.9" - mlly "^1.6.1" - nitropack "^2.9.6" - nuxi "^3.11.1" - nypm "^0.3.8" + magic-string "^0.30.11" + mlly "^1.7.1" + nanotar "^0.1.1" + nitropack "^2.9.7" + nuxi "^3.13.1" + nypm "^0.3.11" ofetch "^1.3.4" ohash "^1.1.3" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.0.3" + pkg-types "^1.2.0" radix3 "^1.1.2" scule "^1.3.0" + semver "^7.6.3" std-env "^3.7.0" strip-literal "^2.1.0" - ufo "^1.5.3" + tinyglobby "0.2.5" + ufo "^1.5.4" ultrahtml "^1.5.3" uncrypto "^0.1.3" unctx "^2.3.1" - unenv "^1.9.0" - unimport "^3.7.1" - unplugin "^1.10.1" - unplugin-vue-router "^0.7.0" + unenv "^1.10.0" + unimport "^3.11.1" + unplugin "^1.12.3" + unplugin-vue-router "^0.10.7" unstorage "^1.10.2" untyped "^1.4.2" - vue "^3.4.21" - vue-bundle-renderer "^2.0.0" + vue "^3.5.0" + vue-bundle-renderer "^2.1.0" vue-devtools-stub "^0.1.0" - vue-router "^4.3.0" + vue-router "^4.4.3" -nypm@^0.3.8: - version "0.3.8" - resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.8.tgz#a16b078b161be5885351e72cf0b97326973722bf" - integrity sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og== +nypm@^0.3.11, nypm@^0.3.8: + version "0.3.11" + resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.11.tgz#57e9a91bbf1dd357add633b1abca90df7a908456" + integrity sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg== dependencies: citty "^0.1.6" consola "^3.2.3" execa "^8.0.1" pathe "^1.1.2" - ufo "^1.4.0" + pkg-types "^1.2.0" + ufo "^1.5.4" object-assign@^4.0.1, object-assign@^4.1.1: version "4.1.1" @@ -5854,9 +5541,9 @@ object-hash@^3.0.0: integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-inspect@^1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" - integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + version "1.13.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" + integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== object-keys@^1.1.1: version "1.1.1" @@ -5873,7 +5560,7 @@ object.assign@^4.1.5: has-symbols "^1.0.3" object-keys "^1.1.1" -object.fromentries@^2.0.7: +object.fromentries@^2.0.8: version "2.0.8" resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== @@ -5883,7 +5570,7 @@ object.fromentries@^2.0.7: es-abstract "^1.23.2" es-object-atoms "^1.0.0" -object.groupby@^1.0.1: +object.groupby@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== @@ -5892,7 +5579,7 @@ object.groupby@^1.0.1: define-properties "^1.2.1" es-abstract "^1.23.2" -object.values@^1.1.7: +object.values@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== @@ -5968,32 +5655,21 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" -openapi-typescript-helpers@^0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/openapi-typescript-helpers/-/openapi-typescript-helpers-0.0.7.tgz#1d0ead67c35864d189c2cb2d0556854ccbb16c38" - integrity sha512-7nwlAtdA1fULipibFRBWE/rnF114q6ejRYzNvhdA/x+qTWAZhXGLc/368dlwMlyJDvCQMCnADjpzb5BS5ZmNSA== +openapi-typescript-helpers@0.0.13: + version "0.0.13" + resolved "https://registry.yarnpkg.com/openapi-typescript-helpers/-/openapi-typescript-helpers-0.0.13.tgz#d959b6a87b5461759e240af375fab480252d2caf" + integrity sha512-z44WK2e7ygW3aUtAtiurfEACohf/Qt9g6BsejmIYgEoY4REHeRzgFJmO3ium0libsuzPc145I+8lE9aiiZrQvQ== -openapi-typescript@^6.7.5: - version "6.7.5" - resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-6.7.5.tgz#3e7f0d080d540396ef8db3df4ed07e1a4a5bb1d8" - integrity sha512-ZD6dgSZi0u1QCP55g8/2yS5hNJfIpgqsSGHLxxdOjvY7eIrXzj271FJEQw33VwsZ6RCtO/NOuhxa7GBWmEudyA== +openapi-typescript@^6.7.5, openapi-typescript@^6.7.6: + version "6.7.6" + resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-6.7.6.tgz#4f387199203bd7bfb94545cbc613751b52e3fa37" + integrity sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw== dependencies: ansi-colors "^4.1.3" fast-glob "^3.3.2" js-yaml "^4.1.0" supports-color "^9.4.0" - undici "^5.28.2" - yargs-parser "^21.1.1" - -openapi-typescript@^7.0.0-next.8: - version "7.0.0-next.11" - resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-7.0.0-next.11.tgz#3bb7396f24d7d7a94ff46a27bb817e2004e5aa13" - integrity sha512-qkyhZikEhe4I2s4G5hyc+J6oYs22kfy50ZDPdsuZ/u/Hm1lagtGEMMVDNDEuUDaQlejYVU/wmqdI7yQWxEgsGA== - dependencies: - "@redocly/openapi-core" "^1.12.0" - ansi-colors "^4.1.3" - parse-json "^8.1.0" - supports-color "^9.4.0" + undici "^5.28.4" yargs-parser "^21.1.1" optionator@^0.9.3: @@ -6036,40 +5712,15 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -pacote@^18.0.0: - version "18.0.3" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-18.0.3.tgz#72a2bafc603935d2a1b0bf7c17034fdcc0a58001" - integrity sha512-GFCGn27RSf2xa5DHShI7DzI8dCf5F0+9N+fbSpItZvi9ykSouPRXMKzfl2jF35Zoi9QysNF/aqeqQyU2tOJBbA== - dependencies: - "@npmcli/git" "^5.0.0" - "@npmcli/installed-package-contents" "^2.0.1" - "@npmcli/package-json" "^5.1.0" - "@npmcli/promise-spawn" "^7.0.0" - "@npmcli/run-script" "^8.0.0" - cacache "^18.0.0" - fs-minipass "^3.0.0" - minipass "^7.0.2" - npm-package-arg "^11.0.0" - npm-packlist "^8.0.0" - npm-pick-manifest "^9.0.0" - npm-registry-fetch "^17.0.0" - proc-log "^4.0.0" - promise-retry "^2.0.1" - sigstore "^2.2.0" - ssri "^10.0.0" - tar "^6.1.11" +package-json-from-dist@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00" + integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw== parent-module@^1.0.0: version "1.0.1" @@ -6096,15 +5747,6 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -parse-json@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-8.1.0.tgz#91cdc7728004e955af9cb734de5684733b24a717" - integrity sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA== - dependencies: - "@babel/code-frame" "^7.22.13" - index-to-position "^0.1.2" - type-fest "^4.7.1" - parse-path@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b" @@ -6149,10 +5791,10 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-scurry@^1.10.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.2.tgz#8f6357eb1239d5fa1da8b9f70e9c080675458ba7" - integrity sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA== +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== dependencies: lru-cache "^10.2.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" @@ -6182,48 +5824,46 @@ perfect-debounce@^1.0.0: resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz#9c2e8bc30b169cc984a58b7d5b28049839591d2a" integrity sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA== -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.0, picocolors@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" + integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +picomatch@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab" + integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== + pify@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== -pinia@>=2.1.7, pinia@^2.1.7: - version "2.1.7" - resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.1.7.tgz#4cf5420d9324ca00b7b4984d3fbf693222115bbc" - integrity sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ== +pinia@^2.1.7, pinia@^2.2.0, pinia@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.2.2.tgz#dcf576c9a778187d1542c5e6a9f8b8cd5b6aea14" + integrity sha512-ja2XqFWZC36mupU4z1ZzxeTApV7DOw44cV4dhQ9sGwun+N89v/XP7+j7q6TanS1u1tdbK4r+1BUx7heMaIdagA== dependencies: - "@vue/devtools-api" "^6.5.0" - vue-demi ">=0.14.5" + "@vue/devtools-api" "^6.6.3" + vue-demi "^0.14.10" pirates@^4.0.1: version "4.0.6" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== -pkg-dir@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -pkg-types@^1.0.3, pkg-types@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.1.0.tgz#3ec1bf33379030fd0a34c227b6c650e8ea7ca271" - integrity sha512-/RpmvKdxKf8uILTtoOhAgf30wYbP2Qw+L9p3Rvshx1JZVX+XQNZQFjlbmGHEGIm4CkVPlSn+NXmIM8+9oWQaSA== +pkg-types@^1.0.3, pkg-types@^1.1.1, pkg-types@^1.1.3, pkg-types@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.2.0.tgz#d0268e894e93acff11a6279de147e83354ebd42d" + integrity sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA== dependencies: confbox "^0.1.7" - mlly "^1.6.1" + mlly "^1.7.1" pathe "^1.1.2" pluralize@^8.0.0: @@ -6245,93 +5885,49 @@ possible-typed-array-names@^1.0.0: resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== -postcss-calc@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-10.0.0.tgz#aca29a1c66dd481ca30d08f6932b1274a1003716" - integrity sha512-OmjhudoNTP0QleZCwl1i6NeBwN+5MZbY5ersLZz69mjJiDVv/p57RjRuKDkHeDWr4T+S97wQfsqRTNoDHB2e3g== - dependencies: - postcss-selector-parser "^6.0.16" - postcss-value-parser "^4.2.0" - -postcss-calc@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-9.0.1.tgz#a744fd592438a93d6de0f1434c572670361eb6c6" - integrity sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ== - dependencies: - postcss-selector-parser "^6.0.11" - postcss-value-parser "^4.2.0" - -postcss-colormin@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-6.1.0.tgz#076e8d3fb291fbff7b10e6b063be9da42ff6488d" - integrity sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw== +postcss-calc@^10.0.1: + version "10.0.2" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-10.0.2.tgz#15f01635a27b9d38913a98c4ef2877f5b715b439" + integrity sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg== dependencies: - browserslist "^4.23.0" - caniuse-api "^3.0.0" - colord "^2.9.3" + postcss-selector-parser "^6.1.2" postcss-value-parser "^4.2.0" -postcss-colormin@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-7.0.0.tgz#76b9e40eff69a363c1fc5ce2f0ece1d4a01d1de8" - integrity sha512-5CN6fqtsEtEtwf3mFV3B4UaZnlYljPpzmGeDB4yCK067PnAtfLe9uX2aFZaEwxHE7HopG5rUkW8gyHrNAesHEg== +postcss-colormin@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-7.0.2.tgz#6f3c53c13158168669f45adc3926f35cb240ef8e" + integrity sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA== dependencies: - browserslist "^4.23.0" + browserslist "^4.23.3" caniuse-api "^3.0.0" colord "^2.9.3" postcss-value-parser "^4.2.0" -postcss-convert-values@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz#3498387f8efedb817cbc63901d45bd1ceaa40f48" - integrity sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w== +postcss-convert-values@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-7.0.3.tgz#93524dcc3797cda89d70801e9cc7b7758c76d088" + integrity sha512-yJhocjCs2SQer0uZ9lXTMOwDowbxvhwFVrZeS6NPEij/XXthl73ggUmfwVvJM+Vaj5gtCKJV1jiUu4IhAUkX/Q== dependencies: - browserslist "^4.23.0" + browserslist "^4.23.3" postcss-value-parser "^4.2.0" -postcss-convert-values@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-7.0.0.tgz#4a53e79c4bd81cfed8a7ed3fffb7b255a2f5f300" - integrity sha512-bMuzDgXBbFbByPgj+/r6va8zNuIDUaIIbvAFgdO1t3zdgJZ77BZvu6dfWyd6gHEJnYzmeVr9ayUsAQL3/qLJ0w== +postcss-discard-comments@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-7.0.2.tgz#b402b2957a1ecefc77a44062ea6563190eaa8903" + integrity sha512-/Hje9Ls1IYcB9duELO/AyDUJI6aQVY3h5Rj1ziXgaLYCTi1iVBLnjg/TS0D6NszR/kDG6I86OwLmAYe+bvJjiQ== dependencies: - browserslist "^4.23.0" - postcss-value-parser "^4.2.0" - -postcss-discard-comments@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz#e768dcfdc33e0216380623652b0a4f69f4678b6c" - integrity sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw== - -postcss-discard-comments@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-7.0.0.tgz#3919e4237630f74927f3976ac5789cfc26731494" - integrity sha512-xpSdzRqYmy4YIVmjfGyYXKaI1SRnK6CTr+4Zmvyof8ANwvgfZgGdVtmgAvzh59gJm808mJCWQC9tFN0KF5dEXA== - -postcss-discard-duplicates@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz#d121e893c38dc58a67277f75bb58ba43fce4c3eb" - integrity sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw== - -postcss-discard-duplicates@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.0.tgz#47ae1154cc89ad0a50099fbac1f74c942214c961" - integrity sha512-bAnSuBop5LpAIUmmOSsuvtKAAKREB6BBIYStWUTGq8oG5q9fClDMMuY8i4UPI/cEcDx2TN+7PMnXYIId20UVDw== + postcss-selector-parser "^6.1.1" -postcss-discard-empty@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz#ee39c327219bb70473a066f772621f81435a79d9" - integrity sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ== +postcss-discard-duplicates@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.1.tgz#f87f2fe47d8f01afb1e98361c1db3ce1e8afd1a3" + integrity sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ== postcss-discard-empty@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz#218829d1ef0a5d5142dd62f0aa60e00e599d2033" integrity sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA== -postcss-discard-overridden@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz#4e9f9c62ecd2df46e8fdb44dc17e189776572e2d" - integrity sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ== - postcss-discard-overridden@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz#b123ea51e3d4e1d0a254cf71eaff1201926d319c" @@ -6361,48 +5957,23 @@ postcss-load-config@^4.0.1: lilconfig "^3.0.0" yaml "^2.3.4" -postcss-merge-longhand@^6.0.5: - version "6.0.5" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz#ba8a8d473617c34a36abbea8dda2b215750a065a" - integrity sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w== - dependencies: - postcss-value-parser "^4.2.0" - stylehacks "^6.1.1" - -postcss-merge-longhand@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-7.0.0.tgz#aabfae74428a5506c4d50842445845c1cc10c9c6" - integrity sha512-0X8I4/9+G03X5/5NnrfopG/YEln2XU8heDh7YqBaiq2SeaKIG3n66ShZPjIolmVuLBQ0BEm3yS8o1mlCLHdW7A== +postcss-merge-longhand@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-7.0.3.tgz#cb31d8f2381dccf560c0454ce565f0dd0cfbd366" + integrity sha512-8waYomFxshdv6M9Em3QRM9MettRLDRcH2JQi2l0Z1KlYD/vhal3gbkeSES0NuACXOlZBB0V/B0AseHZaklzWOA== dependencies: postcss-value-parser "^4.2.0" - stylehacks "^7.0.0" - -postcss-merge-rules@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz#7aa539dceddab56019469c0edd7d22b64c3dea9d" - integrity sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ== - dependencies: - browserslist "^4.23.0" - caniuse-api "^3.0.0" - cssnano-utils "^4.0.2" - postcss-selector-parser "^6.0.16" + stylehacks "^7.0.3" -postcss-merge-rules@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-7.0.0.tgz#069a427807fdb1e2dcca3bf218d0a9f70103526a" - integrity sha512-Zty3VlOsD6VSjBMu6PiHCVpLegtBT/qtZRVBcSeyEZ6q1iU5qTYT0WtEoLRV+YubZZguS5/ycfP+NRiKfjv6aw== +postcss-merge-rules@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-7.0.3.tgz#2340495eba01aff0dc98d92ce9433167e39b4616" + integrity sha512-2eSas2p3voPxNfdI5sQrvIkMaeUHpVc3EezgVs18hz/wRTQAC9U99tp9j3W5Jx9/L3qHkEDvizEx/LdnmumIvQ== dependencies: - browserslist "^4.23.0" + browserslist "^4.23.3" caniuse-api "^3.0.0" cssnano-utils "^5.0.0" - postcss-selector-parser "^6.0.16" - -postcss-minify-font-values@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz#a0e574c02ee3f299be2846369211f3b957ea4c59" - integrity sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg== - dependencies: - postcss-value-parser "^4.2.0" + postcss-selector-parser "^6.1.1" postcss-minify-font-values@^7.0.0: version "7.0.0" @@ -6411,15 +5982,6 @@ postcss-minify-font-values@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-minify-gradients@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz#ca3eb55a7bdb48a1e187a55c6377be918743dbd6" - integrity sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q== - dependencies: - colord "^2.9.3" - cssnano-utils "^4.0.2" - postcss-value-parser "^4.2.0" - postcss-minify-gradients@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz#f6d84456e6d49164a55d0e45bb1b1809c6cf0959" @@ -6429,71 +5991,44 @@ postcss-minify-gradients@^7.0.0: cssnano-utils "^5.0.0" postcss-value-parser "^4.2.0" -postcss-minify-params@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz#54551dec77b9a45a29c3cb5953bf7325a399ba08" - integrity sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA== - dependencies: - browserslist "^4.23.0" - cssnano-utils "^4.0.2" - postcss-value-parser "^4.2.0" - -postcss-minify-params@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-7.0.0.tgz#dfa8263d38570b1116da2c72f69190ea665b17aa" - integrity sha512-XOJAuX8Q/9GT1sGxlUvaFEe2H9n50bniLZblXXsAT/BwSfFYvzSZeFG7uupwc0KbKpTnflnQ7aMwGzX6JUWliQ== +postcss-minify-params@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-7.0.2.tgz#264a76e25f202d8b5ca5290569c0e8c3ac599dfe" + integrity sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ== dependencies: - browserslist "^4.23.0" + browserslist "^4.23.3" cssnano-utils "^5.0.0" postcss-value-parser "^4.2.0" -postcss-minify-selectors@^6.0.4: - version "6.0.4" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz#197f7d72e6dd19eed47916d575d69dc38b396aff" - integrity sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ== - dependencies: - postcss-selector-parser "^6.0.16" - -postcss-minify-selectors@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-7.0.0.tgz#5dedb26806f58d683a3bb362e095ad5aa24f1bf6" - integrity sha512-f00CExZhD6lNw2vTZbcnmfxVgaVKzUw6IRsIFX3JTT8GdsoABc1WnhhGwL1i8YPJ3sSWw39fv7XPtvLb+3Uitw== +postcss-minify-selectors@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-7.0.3.tgz#355ef9cc2136b62398b8c2521cb26efc16b070cc" + integrity sha512-SxTgUQSgBk6wEqzQZKEv1xQYIp9UBju6no9q+npohzSdhuSICQdkqmD1UMKkZWItS3olJSJMDDEY9WOJ5oGJew== dependencies: - postcss-selector-parser "^6.0.16" + cssesc "^3.0.0" + postcss-selector-parser "^6.1.1" -postcss-nested@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" - integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== +postcss-nested@^6.0.1, postcss-nested@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131" + integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ== dependencies: - postcss-selector-parser "^6.0.11" + postcss-selector-parser "^6.1.1" -postcss-nesting@^12.1.1: - version "12.1.2" - resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.1.2.tgz#e7aba3f73b86a0e944e84798d481b54dcfce802e" - integrity sha512-FUmTHGDNundodutB4PUBxt/EPuhgtpk8FJGRsBhOuy+6FnkR2A8RZWIsyyy6XmhvX2DZQQWIkvu+HB4IbJm+Ew== +postcss-nesting@^12.1.5: + version "12.1.5" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.1.5.tgz#e5e2dc1d63e6166c194da45aa28c04d4024db98f" + integrity sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ== dependencies: "@csstools/selector-resolve-nested" "^1.1.0" - "@csstools/selector-specificity" "^3.0.3" - postcss-selector-parser "^6.0.13" - -postcss-normalize-charset@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz#1ec25c435057a8001dac942942a95ffe66f721e1" - integrity sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ== + "@csstools/selector-specificity" "^3.1.1" + postcss-selector-parser "^6.1.0" postcss-normalize-charset@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz#92244ae73c31bf8f8885d5f16ff69e857ac6c001" integrity sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ== -postcss-normalize-display-values@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz#54f02764fed0b288d5363cbb140d6950dbbdd535" - integrity sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg== - dependencies: - postcss-value-parser "^4.2.0" - postcss-normalize-display-values@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz#01fb50e5e97ef8935363629bea5a6d3b3aac1342" @@ -6501,13 +6036,6 @@ postcss-normalize-display-values@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-positions@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz#e982d284ec878b9b819796266f640852dbbb723a" - integrity sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q== - dependencies: - postcss-value-parser "^4.2.0" - postcss-normalize-positions@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz#4eebd7c9d3dde40c97b8047cad38124fc844c463" @@ -6515,13 +6043,6 @@ postcss-normalize-positions@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-repeat-style@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz#f8006942fd0617c73f049dd8b6201c3a3040ecf3" - integrity sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ== - dependencies: - postcss-value-parser "^4.2.0" - postcss-normalize-repeat-style@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz#0cb784655d5714d29bd3bda6dee2fb628aa7227b" @@ -6529,13 +6050,6 @@ postcss-normalize-repeat-style@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-string@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz#e3cc6ad5c95581acd1fc8774b309dd7c06e5e363" - integrity sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ== - dependencies: - postcss-value-parser "^4.2.0" - postcss-normalize-string@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz#a119d3e63a9614570d8413d572fb9fc8c6a64e8c" @@ -6543,13 +6057,6 @@ postcss-normalize-string@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-timing-functions@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz#40cb8726cef999de984527cbd9d1db1f3e9062c0" - integrity sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA== - dependencies: - postcss-value-parser "^4.2.0" - postcss-normalize-timing-functions@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz#99d0ee8c4b23b7f4355fafb91385833b9b07108b" @@ -6557,27 +6064,12 @@ postcss-normalize-timing-functions@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-unicode@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz#aaf8bbd34c306e230777e80f7f12a4b7d27ce06e" - integrity sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg== - dependencies: - browserslist "^4.23.0" - postcss-value-parser "^4.2.0" - -postcss-normalize-unicode@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.0.tgz#bd66bfc238bf4d1eaea356639260c04fce408476" - integrity sha512-OnKV52/VFFDAim4n0pdI+JAhsolLBdnCKxE6VV5lW5Q/JeVGFN8UM8ur6/A3EAMLsT1ZRm3fDHh/rBoBQpqi2w== - dependencies: - browserslist "^4.23.0" - postcss-value-parser "^4.2.0" - -postcss-normalize-url@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz#292792386be51a8de9a454cb7b5c58ae22db0f79" - integrity sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ== +postcss-normalize-unicode@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.2.tgz#095f8d36ea29adfdf494069c1de101112992a713" + integrity sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg== dependencies: + browserslist "^4.23.3" postcss-value-parser "^4.2.0" postcss-normalize-url@^7.0.0: @@ -6587,13 +6079,6 @@ postcss-normalize-url@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-normalize-whitespace@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz#fbb009e6ebd312f8b2efb225c2fcc7cf32b400cd" - integrity sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q== - dependencies: - postcss-value-parser "^4.2.0" - postcss-normalize-whitespace@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz#46b025f0bea72139ddee63015619b0c21cebd845" @@ -6601,45 +6086,22 @@ postcss-normalize-whitespace@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-ordered-values@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz#366bb663919707093451ab70c3f99c05672aaae5" - integrity sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q== - dependencies: - cssnano-utils "^4.0.2" - postcss-value-parser "^4.2.0" - -postcss-ordered-values@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-7.0.0.tgz#cea4e2a140ed1c7b055e0ab967b82a36b584debf" - integrity sha512-KROvC63A8UQW1eYDljQe1dtwc1E/M+mMwDT6z7khV/weHYLWTghaLRLunU7x1xw85lWFwVZOAGakxekYvKV+0w== +postcss-ordered-values@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz#8b4b5b8070ca7756bd49f07d5edf274b8f6782e0" + integrity sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw== dependencies: cssnano-utils "^5.0.0" postcss-value-parser "^4.2.0" -postcss-reduce-initial@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz#4401297d8e35cb6e92c8e9586963e267105586ba" - integrity sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw== - dependencies: - browserslist "^4.23.0" - caniuse-api "^3.0.0" - -postcss-reduce-initial@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-7.0.0.tgz#a9e64778dd44604c2bda109e2fd14b99ab0d1416" - integrity sha512-iqGgmBxY9LrblZ0BKLjmrA1mC/cf9A/wYCCqSmD6tMi+xAyVl0+DfixZIHSVDMbCPRPjNmVF0DFGth/IDGelFQ== +postcss-reduce-initial@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-7.0.2.tgz#3dc085347a5943e18547d4b0aa5bd4ff5a93b2c5" + integrity sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA== dependencies: - browserslist "^4.23.0" + browserslist "^4.23.3" caniuse-api "^3.0.0" -postcss-reduce-transforms@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz#6fa2c586bdc091a7373caeee4be75a0f3e12965d" - integrity sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA== - dependencies: - postcss-value-parser "^4.2.0" - postcss-reduce-transforms@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz#0386080a14e5faad9f8eda33375b79fe7c4f9677" @@ -6647,56 +6109,41 @@ postcss-reduce-transforms@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.0.16: - version "6.0.16" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04" - integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw== +postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.1.0, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2: + version "6.1.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" + integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss-svgo@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-6.0.3.tgz#1d6e180d6df1fa8a3b30b729aaa9161e94f04eaa" - integrity sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g== - dependencies: - postcss-value-parser "^4.2.0" - svgo "^3.2.0" - -postcss-svgo@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-7.0.0.tgz#2f11b45c6fa42da155fd7c16c44e69bf086c5992" - integrity sha512-Xj5DRdvA97yRy3wjbCH2NKXtDUwEnph6EHr5ZXszsBVKCNrKXYBjzAXqav7/Afz5WwJ/1peZoTguCEJIg7ytmA== +postcss-svgo@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-7.0.1.tgz#2b63571d8e9568384df334bac9917baff4d23f58" + integrity sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA== dependencies: postcss-value-parser "^4.2.0" - svgo "^3.2.0" - -postcss-unique-selectors@^6.0.4: - version "6.0.4" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz#983ab308896b4bf3f2baaf2336e14e52c11a2088" - integrity sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg== - dependencies: - postcss-selector-parser "^6.0.16" + svgo "^3.3.2" -postcss-unique-selectors@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-7.0.0.tgz#8cc2f919bce33c429cce93624f2b8f9bbd4bd882" - integrity sha512-NYFqcft7vVQMZlQPsMdMPy+qU/zDpy95Malpw4GeA9ZZjM6dVXDshXtDmLc0m4WCD6XeZCJqjTfPT1USsdt+rA== +postcss-unique-selectors@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-7.0.2.tgz#3e97445b3cd47701c7e457fafe60c76e39d12d4d" + integrity sha512-CjSam+7Vf8cflJQsHrMS0P2hmy9u0+n/P001kb5eAszLmhjMqrt/i5AqQuNFihhViwDvEAezqTmXqaYXL2ugMw== dependencies: - postcss-selector-parser "^6.0.16" + postcss-selector-parser "^6.1.1" postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.38: - version "8.4.38" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" - integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== +postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.38, postcss@^8.4.41, postcss@^8.4.43, postcss@^8.4.44: + version "8.4.45" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.45.tgz#538d13d89a16ef71edbf75d895284ae06b79e603" + integrity sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q== dependencies: nanoid "^3.3.7" - picocolors "^1.0.0" + picocolors "^1.0.1" source-map-js "^1.2.0" prelude-ls@^1.2.1: @@ -6709,16 +6156,6 @@ pretty-bytes@^6.1.1: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-6.1.1.tgz#38cd6bb46f47afbf667c202cfc754bffd2016a3b" integrity sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ== -proc-log@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8" - integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A== - -proc-log@^4.0.0, proc-log@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034" - integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA== - process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -6729,19 +6166,6 @@ process@^0.11.10: resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - -promise-retry@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== - dependencies: - err-code "^2.0.2" - retry "^0.12.0" - prompts@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" @@ -6775,7 +6199,7 @@ queue-tick@^1.0.1: resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== -radix3@^1.1.0, radix3@^1.1.2: +radix3@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/radix3/-/radix3-1.1.2.tgz#fd27d2af3896c6bf4bcdfab6427c69c2afc69ec0" integrity sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA== @@ -6797,7 +6221,7 @@ range-parser@~1.2.1: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== -rc9@^2.1.1, rc9@^2.1.2: +rc9@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/rc9/-/rc9-2.1.2.tgz#6282ff638a50caa0a91a31d76af4a0b9cbd1080d" integrity sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg== @@ -6929,11 +6353,6 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - requrl@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/requrl/-/requrl-3.0.2.tgz#d376104193b02a2d874dde68454c2db2dfeb0fac" @@ -6971,20 +6390,15 @@ resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.22.1, resolve@^1.22 path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -retry@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== - reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== -rfdc@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.1.tgz#2b6d4df52dffe8bb346992a10ea9451f24373a8f" - integrity sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg== +rfdc@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca" + integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== rimraf@^3.0.2: version "3.0.2" @@ -6994,13 +6408,13 @@ rimraf@^3.0.2: glob "^7.1.3" rollup-plugin-dts@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/rollup-plugin-dts/-/rollup-plugin-dts-6.1.0.tgz#56e9c5548dac717213c6a4aa9df523faf04f75ae" - integrity sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw== + version "6.1.1" + resolved "https://registry.yarnpkg.com/rollup-plugin-dts/-/rollup-plugin-dts-6.1.1.tgz#46b33f4d1d7f4e66f1171ced9b282ac11a15a254" + integrity sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA== dependencies: - magic-string "^0.30.4" + magic-string "^0.30.10" optionalDependencies: - "@babel/code-frame" "^7.22.13" + "@babel/code-frame" "^7.24.2" rollup-plugin-visualizer@^5.12.0: version "5.12.0" @@ -7019,29 +6433,29 @@ rollup@^3.28.1: optionalDependencies: fsevents "~2.3.2" -rollup@^4.13.0, rollup@^4.13.2: - version "4.17.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" - integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== +rollup@^4.18.0, rollup@^4.20.0: + version "4.21.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.2.tgz#f41f277a448d6264e923dd1ea179f0a926aaf9b7" + integrity sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.17.2" - "@rollup/rollup-android-arm64" "4.17.2" - "@rollup/rollup-darwin-arm64" "4.17.2" - "@rollup/rollup-darwin-x64" "4.17.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" - "@rollup/rollup-linux-arm-musleabihf" "4.17.2" - "@rollup/rollup-linux-arm64-gnu" "4.17.2" - "@rollup/rollup-linux-arm64-musl" "4.17.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" - "@rollup/rollup-linux-riscv64-gnu" "4.17.2" - "@rollup/rollup-linux-s390x-gnu" "4.17.2" - "@rollup/rollup-linux-x64-gnu" "4.17.2" - "@rollup/rollup-linux-x64-musl" "4.17.2" - "@rollup/rollup-win32-arm64-msvc" "4.17.2" - "@rollup/rollup-win32-ia32-msvc" "4.17.2" - "@rollup/rollup-win32-x64-msvc" "4.17.2" + "@rollup/rollup-android-arm-eabi" "4.21.2" + "@rollup/rollup-android-arm64" "4.21.2" + "@rollup/rollup-darwin-arm64" "4.21.2" + "@rollup/rollup-darwin-x64" "4.21.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.21.2" + "@rollup/rollup-linux-arm-musleabihf" "4.21.2" + "@rollup/rollup-linux-arm64-gnu" "4.21.2" + "@rollup/rollup-linux-arm64-musl" "4.21.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.21.2" + "@rollup/rollup-linux-riscv64-gnu" "4.21.2" + "@rollup/rollup-linux-s390x-gnu" "4.21.2" + "@rollup/rollup-linux-x64-gnu" "4.21.2" + "@rollup/rollup-linux-x64-musl" "4.21.2" + "@rollup/rollup-win32-arm64-msvc" "4.21.2" + "@rollup/rollup-win32-ia32-msvc" "4.21.2" + "@rollup/rollup-win32-x64-msvc" "4.21.2" fsevents "~2.3.2" run-applescript@^7.0.0: @@ -7092,21 +6506,16 @@ safe-regex@^2.1.1: dependencies: regexp-tree "~0.1.1" -"safer-buffer@>= 2.1.2 < 3.0.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - sass@^1.58.0: - version "1.76.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.76.0.tgz#fe15909500735ac154f0dc7386d656b62b03987d" - integrity sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw== + version "1.78.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.78.0.tgz#cef369b2f9dc21ea1d2cf22c979f52365da60841" + integrity sha512-AaIqGSrjo5lA2Yg7RvFZrlXDBCp3nV4XP73GrLGvdRWWwk+8H3l0SDvq/5bA4eF+0RFPLuWUk3E+P1U/YqnpsQ== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" source-map-js ">=0.6.2 <2.0.0" -scule@^1.0.0, scule@^1.1.1, scule@^1.2.0, scule@^1.3.0: +scule@^1.0.0, scule@^1.2.0, scule@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/scule/-/scule-1.3.0.tgz#6efbd22fd0bb801bdcc585c89266a7d2daa8fbd3" integrity sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g== @@ -7121,12 +6530,10 @@ semver@^6.0.0, semver@^6.1.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.0.0, semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.0, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0: - version "7.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" - integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== - dependencies: - lru-cache "^6.0.0" +semver@^7.0.0, semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.4, semver@^7.6.2, semver@^7.6.3: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== send@0.18.0: version "0.18.0" @@ -7154,12 +6561,12 @@ serialize-javascript@^6.0.1: dependencies: randombytes "^2.1.0" -serve-placeholder@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/serve-placeholder/-/serve-placeholder-2.0.1.tgz#dfa741812f49dfea472a68c4f292dbc40d28389a" - integrity sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ== +serve-placeholder@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/serve-placeholder/-/serve-placeholder-2.0.2.tgz#c5db17fb8e906687c275404eaeb29c0d93aacc36" + integrity sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ== dependencies: - defu "^6.0.0" + defu "^6.1.4" serve-static@^1.15.0: version "1.15.0" @@ -7225,13 +6632,6 @@ shell-quote@^1.8.1: resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== -shiki@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/shiki/-/shiki-1.3.0.tgz#3eda35cb49f6f0a98525e9da48fc072e6c655a3f" - integrity sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww== - dependencies: - "@shikijs/core" "1.3.0" - side-channel@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" @@ -7252,26 +6652,14 @@ signal-exit@^4.0.1, signal-exit@^4.1.0: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== -sigstore@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-2.3.0.tgz#c56b32818d4dc989f6ea3c0897f4d9bff5d14bed" - integrity sha512-q+o8L2ebiWD1AxD17eglf1pFrl9jtW7FHa0ygqY6EKvibK8JHyq9Z26v9MZXeDiw+RbfOJ9j2v70M10Hd6E06A== - dependencies: - "@sigstore/bundle" "^2.3.1" - "@sigstore/core" "^1.0.0" - "@sigstore/protobuf-specs" "^0.3.1" - "@sigstore/sign" "^2.3.0" - "@sigstore/tuf" "^2.3.1" - "@sigstore/verify" "^1.2.0" - -simple-git@^3.24.0: - version "3.24.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.24.0.tgz#33a8c88dc6fa74e53eaf3d6bfc27d0182a49ec00" - integrity sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw== +simple-git@^3.25.0: + version "3.26.0" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.26.0.tgz#9ee91de402206911dcb752c65db83f5177e18121" + integrity sha512-5tbkCSzuskR6uA7uA23yjasmA0RzugVo8QM2bpsnxkrgP13eisFT7TMS4a+xKEJvbmr4qf+l0WT3eKa9IxxUyw== dependencies: "@kwsites/file-exists" "^1.1.1" "@kwsites/promise-deferred" "^1.1.1" - debug "^4.3.4" + debug "^4.3.5" sirv@^2.0.4: version "2.0.4" @@ -7302,33 +6690,11 @@ slash@^5.1.0: resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== -smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - smob@^1.0.0: version "1.5.0" resolved "https://registry.yarnpkg.com/smob/-/smob-1.5.0.tgz#85d79a1403abf128d24d3ebc1cdc5e1a9548d3ab" integrity sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig== -socks-proxy-agent@^8.0.3: - version "8.0.3" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz#6b2da3d77364fde6292e810b496cb70440b9b89d" - integrity sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A== - dependencies: - agent-base "^7.1.1" - debug "^4.3.4" - socks "^2.7.1" - -socks@^2.7.1: - version "2.8.3" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5" - integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw== - dependencies: - ip-address "^9.0.5" - smart-buffer "^4.2.0" - sortablejs@1.14.0: version "1.14.0" resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.14.0.tgz#6d2e17ccbdb25f464734df621d4f35d4ab35b3d8" @@ -7379,32 +6745,15 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.17" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c" - integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== + version "3.0.20" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz#e44ed19ed318dd1e5888f93325cee800f0f51b89" + integrity sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw== speakingurl@^14.0.1: version "14.0.1" resolved "https://registry.yarnpkg.com/speakingurl/-/speakingurl-14.0.1.tgz#f37ec8ddc4ab98e9600c1c9ec324a8c48d772a53" integrity sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ== -splitpanes@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/splitpanes/-/splitpanes-3.1.5.tgz#de81da25681c252d131747a9cb48a17156e2b210" - integrity sha512-r3Mq2ITFQ5a2VXLOy4/Sb2Ptp7OfEO8YIbhVJqJXoFc9hc5nTXXkCvtVDjIGbvC0vdE7tse+xTM9BMjsszP6bw== - -sprintf-js@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" - integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== - -ssri@^10.0.0: - version "10.0.5" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.5.tgz#e49efcd6e36385196cb515d3a2ad6c3f0265ef8c" - integrity sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A== - dependencies: - minipass "^7.0.3" - standard-as-callback@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/standard-as-callback/-/standard-as-callback-2.1.0.tgz#8953fc05359868a77b5b9739a665c5977bb7df45" @@ -7426,12 +6775,13 @@ std-env@^3.7.0: integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== streamx@^2.15.0: - version "2.16.1" - resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.16.1.tgz#2b311bd34832f08aa6bb4d6a80297c9caef89614" - integrity sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ== + version "2.20.0" + resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.20.0.tgz#5f3608483499a9346852122b26042f964ceec931" + integrity sha512-ZGd1LhDeGFucr1CUCTBOS58ZhEendd0ttpGT3usTvosS4ntIwKN9LJFp+OeCSprsCPL14BXVRZlHGRY1V9PVzQ== dependencies: - fast-fifo "^1.1.0" + fast-fifo "^1.3.2" queue-tick "^1.0.1" + text-decoder "^1.1.0" optionalDependencies: bare-events "^2.2.0" @@ -7531,13 +6881,6 @@ strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-literal@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-1.3.0.tgz#db3942c2ec1699e6836ad230090b84bb458e3a07" - integrity sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg== - dependencies: - acorn "^8.10.0" - strip-literal@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-2.1.0.tgz#6d82ade5e2e74f5c7e8739b6c84692bd65f0bd2a" @@ -7545,21 +6888,13 @@ strip-literal@^2.1.0: dependencies: js-tokens "^9.0.0" -stylehacks@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-6.1.1.tgz#543f91c10d17d00a440430362d419f79c25545a6" - integrity sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg== - dependencies: - browserslist "^4.23.0" - postcss-selector-parser "^6.0.16" - -stylehacks@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-7.0.0.tgz#68e8ee54724671c0c698be82e1299c6548c31921" - integrity sha512-47Nw4pQ6QJb4CA6dzF2m9810sjQik4dfk4UwAm5wlwhrW3syzZKF8AR4/cfO3Cr6lsFgAoznQq0Wg57qhjTA2A== +stylehacks@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-7.0.3.tgz#c661773377739e9282dc5347a300bd3539a63514" + integrity sha512-4DqtecvI/Nd+2BCvW9YEF6lhBN5UM50IJ1R3rnEAhBwbCKf4VehRf+uqvnVArnBayjYD/WtT3g0G/HSRxWfTRg== dependencies: - browserslist "^4.23.0" - postcss-selector-parser "^6.0.16" + browserslist "^4.23.3" + postcss-selector-parser "^6.1.1" sucrase@^3.32.0: version "3.35.0" @@ -7574,6 +6909,13 @@ sucrase@^3.32.0: pirates "^4.0.1" ts-interface-checker "^0.1.9" +superjson@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/superjson/-/superjson-2.2.1.tgz#9377a7fa80fedb10c851c9dbffd942d4bcf79733" + integrity sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA== + dependencies: + copy-anything "^3.0.2" + supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -7603,10 +6945,10 @@ svg-tags@^1.0.0: resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== -svgo@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.2.0.tgz#7a5dff2938d8c6096e00295c2390e8e652fa805d" - integrity sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ== +svgo@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8" + integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw== dependencies: "@trysound/sax" "0.2.0" commander "^7.2.0" @@ -7621,15 +6963,10 @@ system-architecture@^0.1.0: resolved "https://registry.yarnpkg.com/system-architecture/-/system-architecture-0.1.0.tgz#71012b3ac141427d97c67c56bc7921af6bff122d" integrity sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA== -tabbable@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" - integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== - -tailwind-config-viewer@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/tailwind-config-viewer/-/tailwind-config-viewer-2.0.2.tgz#d00429c7fafbaf1c3ba36cad03296d9baa3bd909" - integrity sha512-YkMEbWgvTyEp7J5S7qY9KGLHml6SLO8kQg4Q5xNM4tWJ+cFtSO/Rv2UKfYHYnE7UsY4Lb1LkHmNs3YSbU2mT2Q== +tailwind-config-viewer@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/tailwind-config-viewer/-/tailwind-config-viewer-2.0.4.tgz#5f47ef0f0ba3719557f88628de8bf276cad7a4cb" + integrity sha512-icvcmdMmt9dphvas8wL40qttrHwAnW3QEN4ExJ2zICjwRsPj7gowd1cOceaWG3IfTuM/cTNGQcx+bsjMtmV+cw== dependencies: "@koa/router" "^12.0.1" commander "^6.0.0" @@ -7640,10 +6977,10 @@ tailwind-config-viewer@^2.0.1: portfinder "^1.0.26" replace-in-file "^6.1.0" -tailwindcss@^3.2.7, tailwindcss@~3.4.3: - version "3.4.3" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.3.tgz#be48f5283df77dfced705451319a5dffb8621519" - integrity sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A== +tailwindcss@^3.2.7, tailwindcss@~3.4.4: + version "3.4.10" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.10.tgz#70442d9aeb78758d1f911af29af8255ecdb8ffef" + integrity sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w== dependencies: "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" @@ -7682,7 +7019,7 @@ tar-stream@^3.0.0: fast-fifo "^1.2.0" streamx "^2.15.0" -tar@^6.1.11, tar@^6.1.2, tar@^6.2.0: +tar@^6.1.11, tar@^6.2.0: version "6.2.1" resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== @@ -7695,15 +7032,22 @@ tar@^6.1.11, tar@^6.1.2, tar@^6.2.0: yallist "^4.0.0" terser@^5.17.4: - version "5.31.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.0.tgz#06eef86f17007dbad4593f11a574c7f5eb02c6a1" - integrity sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg== + version "5.31.6" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.6.tgz#c63858a0f0703988d0266a82fcbf2d7ba76422b1" + integrity sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" commander "^2.20.0" source-map-support "~0.5.20" +text-decoder@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.1.1.tgz#5df9c224cebac4a7977720b9f083f9efa1aefde8" + integrity sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA== + dependencies: + b4a "^1.6.4" + text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -7728,6 +7072,19 @@ tiny-invariant@^1.1.0: resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== +tinyglobby@0.2.5, tinyglobby@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.5.tgz#8cdd1df1b155bf2a3c4d5ea2581489f967a38318" + integrity sha512-Dlqgt6h0QkoHttG53/WGADNh9QhcjCAIZMTERAVhdpmIBEejSuLI9ZmGKWzB7tweBjlk30+s/ofi4SLmBeTYhw== + dependencies: + fdir "^6.2.0" + picomatch "^4.0.2" + +tinyrainbow@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/tinyrainbow/-/tinyrainbow-1.2.0.tgz#5c57d2fc0fb3d1afd78465c33ca885d04f02abb5" + integrity sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ== + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -7785,15 +7142,6 @@ tsscmp@1.0.6: resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== -tuf-js@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-2.2.0.tgz#4daaa8620ba7545501d04dfa933c98abbcc959b9" - integrity sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg== - dependencies: - "@tufjs/models" "2.0.0" - debug "^4.3.4" - make-fetch-happen "^13.0.0" - type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" @@ -7826,10 +7174,10 @@ type-fest@^3.8.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== -type-fest@^4.7.1, type-fest@^4.8.3: - version "4.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.18.1.tgz#47e8d4e493cf7ed6c643bad698d5810d72cbdf79" - integrity sha512-qXhgeNsX15bM63h5aapNFcQid9jRF/l3ojDoDFmekDQEUufZ9U4ErVt6SjDxnHp48Ltrw616R8yNc3giJ3KvVQ== +type-fest@^4.8.3: + version "4.26.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.26.0.tgz#703f263af10c093cd6277d079e26b9e17d517c4b" + integrity sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw== type-is@^1.6.16: version "1.6.18" @@ -7884,14 +7232,14 @@ typed-array-length@^1.0.6: possible-typed-array-names "^1.0.0" typescript@^5.4.5: - version "5.4.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" - integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== + version "5.5.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba" + integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== -ufo@^1.1.2, ufo@^1.2.0, ufo@^1.3.2, ufo@^1.4.0, ufo@^1.5.3: - version "1.5.3" - resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.3.tgz#3325bd3c977b6c6cd3160bf4ff52989adc9d3344" - integrity sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw== +ufo@^1.1.2, ufo@^1.3.2, ufo@^1.4.0, ufo@^1.5.3, ufo@^1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.4.tgz#16d6949674ca0c9e0fbbae1fa20a71d7b1ded754" + integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ== ultrahtml@^1.5.3: version "1.5.3" @@ -7953,37 +7301,37 @@ unctx@^2.3.1: magic-string "^0.30.0" unplugin "^1.3.1" -undici-types@~5.26.4: - version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" - integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== +undici-types@~6.19.2: + version "6.19.8" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" + integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== -undici@^5.28.2: +undici@^5.28.4: version "5.28.4" resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.4.tgz#6b280408edb6a1a604a9b20340f45b422e373068" integrity sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g== dependencies: "@fastify/busboy" "^2.0.0" -unenv@^1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.9.0.tgz#469502ae85be1bd3a6aa60f810972b1a904ca312" - integrity sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g== +unenv@^1.10.0, unenv@^1.9.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.10.0.tgz#c3394a6c6e4cfe68d699f87af456fe3f0db39571" + integrity sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ== dependencies: consola "^3.2.3" - defu "^6.1.3" + defu "^6.1.4" mime "^3.0.0" - node-fetch-native "^1.6.1" - pathe "^1.1.1" + node-fetch-native "^1.6.4" + pathe "^1.1.2" -unhead@1.9.8: - version "1.9.8" - resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.9.8.tgz#c17d6363366f2ad8eda82dbc1a18ea354f18f4b1" - integrity sha512-N37E7vqm+Ma+r45CGXbMXuhOUNB6Rg/iPpSls/Yrphb9DRwLiDkzS/I6UgSmn8698irzj6vnavdkm1pZZifNrg== +unhead@1.10.4: + version "1.10.4" + resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.10.4.tgz#12590431af24ae4ac101dbf88a33e63089c1a508" + integrity sha512-qKiYhgZ4IuDbylP409cdwK/8WEIi5cOSIBei/OXzxFs4uxiTZHSSa8NC1qPu2kooxHqxyoXGBw8ARms9zOsbxw== dependencies: - "@unhead/dom" "1.9.8" - "@unhead/schema" "1.9.8" - "@unhead/shared" "1.9.8" + "@unhead/dom" "1.10.4" + "@unhead/schema" "1.10.4" + "@unhead/shared" "1.10.4" hookable "^5.5.3" unicorn-magic@^0.1.0: @@ -7991,88 +7339,73 @@ unicorn-magic@^0.1.0: resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4" integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== -unimport@^3.7.1: - version "3.7.1" - resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.7.1.tgz#37250d0f3f2dcf1e1b66ed13728db0e9f50ba0c3" - integrity sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ== +unimport@^3.11.1, unimport@^3.7.2: + version "3.11.1" + resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.11.1.tgz#b750eb69fbacf481e000829a79eb9da19919f33e" + integrity sha512-DuB1Uoq01LrrXTScxnwOoMSlTXxyKcULguFxbLrMDFcE/CO0ZWHpEiyhovN0mycPt7K6luAHe8laqvwvuoeUPg== dependencies: "@rollup/pluginutils" "^5.1.0" - acorn "^8.11.2" + acorn "^8.12.1" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" fast-glob "^3.3.2" local-pkg "^0.5.0" - magic-string "^0.30.5" - mlly "^1.4.2" - pathe "^1.1.1" - pkg-types "^1.0.3" - scule "^1.1.1" - strip-literal "^1.3.0" - unplugin "^1.5.1" - -unique-filename@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" - integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== - dependencies: - unique-slug "^4.0.0" - -unique-slug@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" - integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== - dependencies: - imurmurhash "^0.1.4" + magic-string "^0.30.11" + mlly "^1.7.1" + pathe "^1.1.2" + pkg-types "^1.2.0" + scule "^1.3.0" + strip-literal "^2.1.0" + unplugin "^1.12.2" universalify@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -unplugin-vue-router@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.7.0.tgz#27bd250c7dc698366cce70c5b72b97c3b3766c26" - integrity sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw== +unplugin-vue-router@^0.10.7: + version "0.10.7" + resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.10.7.tgz#678f0008828894407ef675b8b80e20dd1f964020" + integrity sha512-5KEh7Swc1L2Xh5WOD7yQLeB5bO3iTw+Hst7qMxwmwYcPm9qVrtrRTZUftn2Hj4is17oMKgqacyWadjQzwW5B/Q== dependencies: - "@babel/types" "^7.22.19" - "@rollup/pluginutils" "^5.0.4" - "@vue-macros/common" "^1.8.0" - ast-walker-scope "^0.5.0" - chokidar "^3.5.3" - fast-glob "^3.3.1" + "@babel/types" "^7.25.2" + "@rollup/pluginutils" "^5.1.0" + "@vue-macros/common" "^1.12.2" + ast-walker-scope "^0.6.2" + chokidar "^3.6.0" + fast-glob "^3.3.2" json5 "^2.2.3" - local-pkg "^0.4.3" - mlly "^1.4.2" - pathe "^1.1.1" - scule "^1.0.0" - unplugin "^1.5.0" - yaml "^2.3.2" + local-pkg "^0.5.0" + magic-string "^0.30.11" + mlly "^1.7.1" + pathe "^1.1.2" + scule "^1.3.0" + unplugin "^1.12.1" + yaml "^2.5.0" -unplugin@^1.10.0, unplugin@^1.10.1, unplugin@^1.3.1, unplugin@^1.5.0, unplugin@^1.5.1: - version "1.10.1" - resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.10.1.tgz#8ceda065dc71bc67d923dea0920f05c67f2cd68c" - integrity sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg== +unplugin@^1.10.0, unplugin@^1.12.1, unplugin@^1.12.2, unplugin@^1.12.3, unplugin@^1.3.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.13.1.tgz#d33e338374bfb80755a3789ed7de25b8f006131c" + integrity sha512-6Kq1iSSwg7KyjcThRUks9LuqDAKvtnioxbL9iEtB9ctTyBA5OmrB8gZd/d225VJu1w3UpUsKV7eGrvf59J7+VA== dependencies: - acorn "^8.11.3" - chokidar "^3.6.0" - webpack-sources "^3.2.3" - webpack-virtual-modules "^0.6.1" + acorn "^8.12.1" + webpack-virtual-modules "^0.6.2" unstorage@^1.10.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.10.2.tgz#fb7590ada8b30e83be9318f85100158b02a76dae" - integrity sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ== + version "1.11.1" + resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.11.1.tgz#6635ddb07ade7a34d42f9193a2d314cae2137841" + integrity sha512-3NVszU4MGlO21WWnkSq0xnPVMHnMyB5DdJQyGRAg/DUZVeQjWRinLOia89iw5KGpllRtoA5+N+xnq75MAsPAOA== dependencies: anymatch "^3.1.3" chokidar "^3.6.0" destr "^2.0.3" - h3 "^1.11.1" + h3 "^1.12.0" listhen "^1.7.2" - lru-cache "^10.2.0" + lru-cache "^10.4.3" mri "^1.2.0" - node-fetch-native "^1.6.2" - ofetch "^1.3.3" - ufo "^1.4.0" + node-fetch-native "^1.6.4" + ofetch "^1.3.4" + ufo "^1.5.4" untun@^0.1.3: version "0.1.3" @@ -8113,13 +7446,13 @@ upath@^2.0.1: resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== -update-browserslist-db@^1.0.13: - version "1.0.14" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.14.tgz#46a9367c323f8ade9a9dddb7f3ae7814b3a0b31c" - integrity sha512-JixKH8GR2pWYshIPUg/NujK3JO7JiqEEUiNArE86NQyrgUuZeTlZQN3xuS/yiV5Kb48ev9K6RqNkaJjXsdg7Jw== +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== dependencies: escalade "^3.1.2" - picocolors "^1.0.0" + picocolors "^1.0.1" uqr@^0.1.2: version "0.1.2" @@ -8148,7 +7481,7 @@ uuid@^9.0.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== -validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: +validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== @@ -8156,24 +7489,17 @@ validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" -validate-npm-package-name@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713" - integrity sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ== - dependencies: - builtins "^5.0.0" - vary@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== vee-validate@^4.9.5: - version "4.12.6" - resolved "https://registry.yarnpkg.com/vee-validate/-/vee-validate-4.12.6.tgz#cc1b8ac99ebf00856b40a5118a23787898a70f32" - integrity sha512-EKM3YHy8t1miPh30d5X6xOrfG/Ctq0nbN4eMpCK7ezvI6T98/S66vswP+ihL4QqAK/k5KqreWOxof09+JG7N/A== + version "4.13.2" + resolved "https://registry.yarnpkg.com/vee-validate/-/vee-validate-4.13.2.tgz#cf601c9ac029d58a15aecc1dbab28b15628f0a0e" + integrity sha512-HlpR/6MJ92TW9f135umMZKUqdd/tFQTxLNSf2ImbU4Y/MlLVAUpF1l64VdjTOhbClAqPjCb5p/SqHDxLpUHXrw== dependencies: - "@vue/devtools-api" "^6.5.1" + "@vue/devtools-api" "^6.6.1" type-fest "^4.8.3" vite-hot-client@^0.2.3: @@ -8181,21 +7507,21 @@ vite-hot-client@^0.2.3: resolved "https://registry.yarnpkg.com/vite-hot-client/-/vite-hot-client-0.2.3.tgz#db52aba46edbcfa7906dbca8255fd35b9a9270b2" integrity sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg== -vite-node@^1.4.0: - version "1.5.3" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.5.3.tgz#498f4eb6f4e37ff95f66ffb9c905708a75f84b2e" - integrity sha512-axFo00qiCpU/JLd8N1gu9iEYL3xTbMbMrbe5nDp9GL0nb6gurIdZLkkFogZXWnE8Oyy5kfSLwNVIcVsnhE7lgQ== +vite-node@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.0.5.tgz#36d909188fc6e3aba3da5fc095b3637d0d18e27b" + integrity sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q== dependencies: cac "^6.7.14" - debug "^4.3.4" - pathe "^1.1.1" - picocolors "^1.0.0" + debug "^4.3.5" + pathe "^1.1.2" + tinyrainbow "^1.2.0" vite "^5.0.0" -vite-plugin-checker@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.6.4.tgz#aca186ab605aa15bd2c5dd9cc6d7c8fdcbe214ec" - integrity sha512-2zKHH5oxr+ye43nReRbC2fny1nyARwhxdm0uNYp/ERy4YvU9iZpNOsueoi/luXw5gnpqRSvjcEPxXbS153O2wA== +vite-plugin-checker@^0.7.2: + version "0.7.2" + resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.7.2.tgz#093ffdf9ccf51b2c9eab7101480bd0217ae99536" + integrity sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw== dependencies: "@babel/code-frame" "^7.12.13" ansi-escapes "^4.3.0" @@ -8205,7 +7531,6 @@ vite-plugin-checker@^0.6.4: fast-glob "^3.2.7" fs-extra "^11.1.0" npm-run-path "^4.0.1" - semver "^7.5.0" strip-ansi "^6.0.0" tiny-invariant "^1.1.0" vscode-languageclient "^7.0.0" @@ -8213,25 +7538,25 @@ vite-plugin-checker@^0.6.4: vscode-languageserver-textdocument "^1.0.1" vscode-uri "^3.0.2" -vite-plugin-inspect@^0.8.3: - version "0.8.4" - resolved "https://registry.yarnpkg.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.4.tgz#1fcdf6703164d651db3f13c8c6610e1ced5108e1" - integrity sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g== +vite-plugin-inspect@^0.8.7: + version "0.8.7" + resolved "https://registry.yarnpkg.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.7.tgz#89acc829208fc1b43e2738e886304c5be0e80ab5" + integrity sha512-/XXou3MVc13A5O9/2Nd6xczjrUwt7ZyI9h8pTnUMkr5SshLcb0PJUOVq2V+XVkdeU4njsqAtmK87THZuO2coGA== dependencies: - "@antfu/utils" "^0.7.7" + "@antfu/utils" "^0.7.10" "@rollup/pluginutils" "^5.1.0" - debug "^4.3.4" - error-stack-parser-es "^0.1.1" + debug "^4.3.6" + error-stack-parser-es "^0.1.5" fs-extra "^11.2.0" open "^10.1.0" perfect-debounce "^1.0.0" - picocolors "^1.0.0" + picocolors "^1.0.1" sirv "^2.0.4" -vite-plugin-vue-inspector@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-4.0.2.tgz#1d02646b20f4dc72cda0c2e0309551c7b332df73" - integrity sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg== +vite-plugin-vue-inspector@^5.1.3: + version "5.2.0" + resolved "https://registry.yarnpkg.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.2.0.tgz#4c29926aa86e23492a99ac24401f4f9cd4f4c171" + integrity sha512-wWxyb9XAtaIvV/Lr7cqB1HIzmHZFVUJsTNm3yAxkS87dgh/Ky4qr2wDEWNxF23fdhVa3jQ8MZREpr4XyiuaRqA== dependencies: "@babel/core" "^7.23.0" "@babel/plugin-proposal-decorators" "^7.23.0" @@ -8243,23 +7568,23 @@ vite-plugin-vue-inspector@^4.0.2: kolorist "^1.8.0" magic-string "^0.30.4" -vite-plugin-vuetify@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz#d1777c63aa1b3a308756461b3d0299fd101ee8f4" - integrity sha512-MubIcKD33O8wtgQXlbEXE7ccTEpHZ8nPpe77y9Wy3my2MWw/PgehP9VqTp92BLqr0R1dSL970Lynvisx3UxBFw== +vite-plugin-vuetify@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-2.0.4.tgz#9beb700ee50da58d83399721d6cf4b0af83202d5" + integrity sha512-A4cliYUoP/u4AWSRVRvAPKgpgR987Pss7LpFa7s1GvOe8WjgDq92Rt3eVXrvgxGCWvZsPKziVqfHHdCMqeDhfw== dependencies: - "@vuetify/loader-shared" "^1.7.1" + "@vuetify/loader-shared" "^2.0.3" debug "^4.3.3" upath "^2.0.1" -vite@^5.0.0, vite@^5.2.8: - version "5.2.10" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.10.tgz#2ac927c91e99d51b376a5c73c0e4b059705f5bd7" - integrity sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw== +vite@^5.0.0, vite@^5.4.3: + version "5.4.3" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.3.tgz#771c470e808cb6732f204e1ee96c2ed65b97a0eb" + integrity sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q== dependencies: - esbuild "^0.20.1" - postcss "^8.4.38" - rollup "^4.13.0" + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" optionalDependencies: fsevents "~2.3.3" @@ -8286,9 +7611,9 @@ vscode-languageserver-protocol@3.16.0: vscode-languageserver-types "3.16.0" vscode-languageserver-textdocument@^1.0.1: - version "1.0.11" - resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz#0822a000e7d4dc083312580d7575fe9e3ba2e2bf" - integrity sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA== + version "1.0.12" + resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz#457ee04271ab38998a093c68c2342f53f6e4a631" + integrity sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA== vscode-languageserver-types@3.16.0: version "3.16.0" @@ -8307,27 +7632,27 @@ vscode-uri@^3.0.2: resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f" integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== -vue-bundle-renderer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.0.0.tgz#ecab5c9b2803ab2454ba212afef502e684ddbb8e" - integrity sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A== +vue-bundle-renderer@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.1.0.tgz#2832511e0eb826810e20138fbc811e9c2a7c4e57" + integrity sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q== dependencies: - ufo "^1.2.0" + ufo "^1.5.3" -vue-demi@*, vue-demi@>=0.14.5, vue-demi@>=0.14.7: - version "0.14.7" - resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.7.tgz#8317536b3ef74c5b09f268f7782e70194567d8f2" - integrity sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA== +vue-demi@>=0.14.10, vue-demi@^0.14.10: + version "0.14.10" + resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.10.tgz#afc78de3d6f9e11bf78c55e8510ee12814522f04" + integrity sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg== vue-devtools-stub@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz#a65b9485edecd4273cedcb8102c739b83add2c81" integrity sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ== -vue-eslint-parser@^9.0.3, vue-eslint-parser@^9.4.2: - version "9.4.2" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.4.2.tgz#02ffcce82042b082292f2d1672514615f0d95b6d" - integrity sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ== +vue-eslint-parser@^9.0.3, vue-eslint-parser@^9.4.3: + version "9.4.3" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz#9b04b22c71401f1e8bca9be7c3e3416a4bde76a8" + integrity sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg== dependencies: debug "^4.3.4" eslint-scope "^7.1.1" @@ -8337,47 +7662,28 @@ vue-eslint-parser@^9.0.3, vue-eslint-parser@^9.4.2: lodash "^4.17.21" semver "^7.3.6" -vue-observe-visibility@^2.0.0-alpha.1: - version "2.0.0-alpha.1" - resolved "https://registry.yarnpkg.com/vue-observe-visibility/-/vue-observe-visibility-2.0.0-alpha.1.tgz#1e4eda7b12562161d58984b7e0dea676d83bdb13" - integrity sha512-flFbp/gs9pZniXR6fans8smv1kDScJ8RS7rEpMjhVabiKeq7Qz3D9+eGsypncjfIyyU84saU88XZ0zjbD6Gq/g== - -vue-resize@^2.0.0-alpha.1: - version "2.0.0-alpha.1" - resolved "https://registry.yarnpkg.com/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz#43eeb79e74febe932b9b20c5c57e0ebc14e2df3a" - integrity sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg== - -vue-router@^4.3.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.3.2.tgz#08096c7765dacc6832f58e35f7a081a8b34116a7" - integrity sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q== +vue-router@^4.4.3: + version "4.4.3" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.4.3.tgz#58a39dc804632bfb6d26f052aa8f6718bd130299" + integrity sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A== dependencies: - "@vue/devtools-api" "^6.5.1" + "@vue/devtools-api" "^6.6.3" vue-toastification@^2.0.0-rc.5: version "2.0.0-rc.5" resolved "https://registry.yarnpkg.com/vue-toastification/-/vue-toastification-2.0.0-rc.5.tgz#92798604d806ae473cfb76ed776fae294280f8f8" integrity sha512-q73e5jy6gucEO/U+P48hqX+/qyXDozAGmaGgLFm5tXX4wJBcVsnGp4e/iJqlm9xzHETYOilUuwOUje2Qg1JdwA== -vue-virtual-scroller@2.0.0-beta.8: - version "2.0.0-beta.8" - resolved "https://registry.yarnpkg.com/vue-virtual-scroller/-/vue-virtual-scroller-2.0.0-beta.8.tgz#eeceda57e4faa5ba1763994c873923e2a956898b" - integrity sha512-b8/f5NQ5nIEBRTNi6GcPItE4s7kxNHw2AIHLtDp+2QvqdTjVN0FgONwX9cr53jWRgnu+HRLPaWDOR2JPI5MTfQ== +vue@^3.5.0: + version "3.5.1" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.1.tgz#507eb4ab010a2ad894f8d7765f32e68be1604815" + integrity sha512-k4UNnbPOEskodSxMtv+B9GljdB0C9ubZDOmW6vnXVGIfMqmEsY2+ohasjGguhGkMkrcP/oOrbH0dSD41x5JQFw== dependencies: - mitt "^2.1.0" - vue-observe-visibility "^2.0.0-alpha.1" - vue-resize "^2.0.0-alpha.1" - -vue@^3.4.21: - version "3.4.26" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.26.tgz#936c97e37672c737705d7bdfa62c31af18742269" - integrity sha512-bUIq/p+VB+0xrJubaemrfhk1/FiW9iX+pDV+62I/XJ6EkspAO9/DXEjbDFoe8pIfOZBqfk45i9BMc41ptP/uRg== - dependencies: - "@vue/compiler-dom" "3.4.26" - "@vue/compiler-sfc" "3.4.26" - "@vue/runtime-dom" "3.4.26" - "@vue/server-renderer" "3.4.26" - "@vue/shared" "3.4.26" + "@vue/compiler-dom" "3.5.1" + "@vue/compiler-sfc" "3.5.1" + "@vue/runtime-dom" "3.5.1" + "@vue/server-renderer" "3.5.1" + "@vue/shared" "3.5.1" vuedraggable@^4.1.0: version "4.1.0" @@ -8386,25 +7692,20 @@ vuedraggable@^4.1.0: dependencies: sortablejs "1.14.0" -vuetify@^3.3.0: - version "3.6.1" - resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.6.1.tgz#bd26f1ee53c532a4f9880a5f376064f53efd9947" - integrity sha512-fzcY9LNuLZUwXG4XyklkGJwFv/ejQaERAgE5e+U5M9dtbF9ZRs56mGi2uqOhQOv6o+vbikpHZ/rfHfhb/XlO0g== +vuetify@^3.0.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.7.1.tgz#102dc8b6c8795955d874da85375a98e369c102d6" + integrity sha512-N1XlczbgeGt/O+JUk72QPrqcDaRIXUdptUciJqGyTvZ9cfMoSlEWs6TZO+dOOfXbKvmIMFMycYg4dgSHDpCPhg== webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== -webpack-sources@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== - -webpack-virtual-modules@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz#ac6fdb9c5adb8caecd82ec241c9631b7a3681b6f" - integrity sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg== +webpack-virtual-modules@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz#057faa9065c8acf48f24cb57ac0e77739ab9a7e8" + integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== whatwg-url@^5.0.0: version "5.0.0" @@ -8450,13 +7751,6 @@ which@^3.0.1: dependencies: isexe "^2.0.0" -which@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/which/-/which-4.0.0.tgz#cd60b5e74503a3fbcfbf6cd6b4138a8bae644c1a" - integrity sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg== - dependencies: - isexe "^3.1.1" - wide-align@^1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" @@ -8492,10 +7786,10 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -ws@^8.16.0: - version "8.17.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.0.tgz#d145d18eca2ed25aaf791a183903f7be5e295fea" - integrity sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow== +ws@^8.18.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== xml-name-validator@^4.0.0: version "4.0.0" @@ -8517,15 +7811,10 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml-ast-parser@0.0.43: - version "0.0.43" - resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" - integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== - -yaml@^2.3.2, yaml@^2.3.4: - version "2.4.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.2.tgz#7a2b30f2243a5fc299e1f14ca58d475ed4bc5362" - integrity sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA== +yaml@^2.3.4, yaml@^2.5.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.1.tgz#c9772aacf62cb7494a95b0c4f1fb065b563db130" + integrity sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q== yargs-parser@^21.1.1: version "21.1.1" From db9d079880c815bbd1fb03dd055a5e8b0f6d3f39 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 4 Sep 2024 18:27:47 +0200 Subject: [PATCH 04/58] add docker files --- docker-compose.yaml | 13 +++++++++++++ frontend/.dockerignore | 3 +++ frontend/Dockerfile | 19 +++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 docker-compose.yaml create mode 100644 frontend/.dockerignore create mode 100644 frontend/Dockerfile diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 00000000..dc98dc33 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,13 @@ +services: + nuxt-app: + build: ./frontend + container_name: nuxt-app + restart: always + ports: + - "3000:3000" + command: "yarn run start" + networks: + - nuxt-network +networks: + nuxt-network: + driver: bridge \ No newline at end of file diff --git a/frontend/.dockerignore b/frontend/.dockerignore new file mode 100644 index 00000000..b4ea3cf7 --- /dev/null +++ b/frontend/.dockerignore @@ -0,0 +1,3 @@ +.git +.gitignore +node_modules/ \ No newline at end of file diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 00000000..be8f800b --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,19 @@ +FROM node:22.8.0-alpine3.20 + +RUN mkdir -p /var/www/dockerize-nuxt/nuxt-app +WORKDIR /var/www/dockerize-nuxt/nuxt-app + +COPY package*.json ./ +RUN yarn install + +COPY . . + +RUN yarn run build + +EXPOSE 3000 + +ENV NUXT_HOST=0.0.0.0 + +ENV NUXT_PORT=3000 + +CMD [ "yarn", "start" ] \ No newline at end of file From c1f50137f58f1dfcd3623d748b3939a2428c4c7e Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 11:01:54 +0200 Subject: [PATCH 05/58] Add Dockerfile for frontend container --- container/frontend/Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 container/frontend/Dockerfile diff --git a/container/frontend/Dockerfile b/container/frontend/Dockerfile new file mode 100644 index 00000000..150cf621 --- /dev/null +++ b/container/frontend/Dockerfile @@ -0,0 +1,19 @@ +FROM node:22.8.0-alpine3.20 + +RUN mkdir -p /var/www/dockerize-nuxt/nuxt-app +WORKDIR /var/www/dockerize-nuxt/nuxt-app + +COPY ../../frontend/package*.json ./ +RUN yarn install + +COPY ../../frontend/ ./ + +RUN yarn run build + +EXPOSE 3000 + +ENV NUXT_HOST=0.0.0.0 + +ENV NUXT_PORT=3000 + +CMD [ "yarn", "start" ] \ No newline at end of file From 368ba7b89936a71a72bb972b440a1bad49a2e665 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 12:05:15 +0200 Subject: [PATCH 06/58] Add Docker Compose configuration for frontend container, PostgreSQL database, and Nginx web server --- docker-compose.yaml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index dc98dc33..0f8b9562 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,6 +8,40 @@ services: command: "yarn run start" networks: - nuxt-network + + db-postgres: + image: postgres:16.4 + container_name: db-postgres + volumes: + - postgres-data:/var/lib/postgresql/data + restart: always + environment: + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASSWORD: ${POSTGRES_PWD} + POSTGRES_DB: ${POSTGRES_DBASE} + ports: + - "5432:5432" + networks: + - nuxt-network + + web-server: + image: nginx:1.27.1-alpine3.20 + container_name: web-server + volumes: + - ./container/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf + - web-root:/var/www/citizenvoice + ports: + - 80:80 + networks: + nuxt-network: + depends_on: + - nuxt-app + restart: unless-stopped + +volumes: + web-root: + postgres-data: + networks: nuxt-network: driver: bridge \ No newline at end of file From 25bba6f19fe4cad789c34a9b29c93a84a3aa3b1a Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 12:05:21 +0200 Subject: [PATCH 07/58] Add Nginx configuration for proxying requests to the frontend container --- container/nginx/conf.d/default.conf | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 container/nginx/conf.d/default.conf diff --git a/container/nginx/conf.d/default.conf b/container/nginx/conf.d/default.conf new file mode 100644 index 00000000..0d81a3a5 --- /dev/null +++ b/container/nginx/conf.d/default.conf @@ -0,0 +1,31 @@ +upstream docker { + server nuxt-app:3000; + } + +map $sent_http_content_type $expires { + "text/html" epoch; + "text/html; charset=utf-8" epoch; + default off; +} + +server { + listen 80; # the port nginx is listening on + server_name 127.0.0.1 citizenvoice.tudelft.nl; # setup your domain here + + gzip on; + gzip_types text/plain application/xml text/css application/javascript; + gzip_min_length 1000; + + location / { + expires $expires; + + proxy_redirect off; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_read_timeout 1m; + proxy_connect_timeout 1m; + proxy_pass http://docker; + } +} \ No newline at end of file From b8a7268b2d443dcdf586ccd59f4898514df18e74 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 12:25:57 +0200 Subject: [PATCH 08/58] Remove yarn.lock file --- citizenvoice/yarn.lock | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 citizenvoice/yarn.lock diff --git a/citizenvoice/yarn.lock b/citizenvoice/yarn.lock deleted file mode 100644 index fb57ccd1..00000000 --- a/citizenvoice/yarn.lock +++ /dev/null @@ -1,4 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - From 6330b50c9d91a669595320e99acafe535017a3e0 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 12:26:03 +0200 Subject: [PATCH 09/58] Ignore .env file and update .dockerignore --- frontend/.dockerignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/.dockerignore b/frontend/.dockerignore index b4ea3cf7..059c8551 100644 --- a/frontend/.dockerignore +++ b/frontend/.dockerignore @@ -1,3 +1,4 @@ .git .gitignore -node_modules/ \ No newline at end of file +node_modules/ +.env \ No newline at end of file From d49bbcde34d3fb0ff20335058f1f3b02d2a604e0 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 12:26:14 +0200 Subject: [PATCH 10/58] Ignore .env file and update .dockerignore --- citizenvoice/.dockerignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 citizenvoice/.dockerignore diff --git a/citizenvoice/.dockerignore b/citizenvoice/.dockerignore new file mode 100644 index 00000000..6777b0f6 --- /dev/null +++ b/citizenvoice/.dockerignore @@ -0,0 +1,3 @@ +.git +.gitignore +.env \ No newline at end of file From 3cff63f449506d3f0aa6b515ca56443e3000b9d8 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 14:02:45 +0200 Subject: [PATCH 11/58] create dockerfile for django app, successfull gdal install --- citizenvoice/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 citizenvoice/Dockerfile diff --git a/citizenvoice/Dockerfile b/citizenvoice/Dockerfile new file mode 100644 index 00000000..e3036147 --- /dev/null +++ b/citizenvoice/Dockerfile @@ -0,0 +1,30 @@ +FROM python:3.11-alpine3.20 + +RUN mkdir -p /var/www/dockerize-django/citizenvoice +WORKDIR /var/www/dockerize-django/citizenvoice + +COPY ./requirements.txt ./ +RUN apk add python3-dev +RUN apk add --no-cache \ + python3-dev \ + gdal \ + gdal-dev \ + gcc \ + musl-dev \ + geos-dev \ + proj-dev \ + postgresql-dev \ + build-base \ + libjpeg-turbo-dev \ + zlib-dev +RUN pip install --upgrade pip +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +EXPOSE 8000 + +ENV DJANGO_HOST=0.0.0.0 +ENV DJANGO_PORT=8000 + +CMD [ "python", "manage.py", "runserver"] From 9b6ebd2c3ab05b644402daba86954dafc631fd01 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 14:18:03 +0200 Subject: [PATCH 12/58] move requirements.txt to citizenvoice app --- citizenvoice/requirements.txt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 citizenvoice/requirements.txt diff --git a/citizenvoice/requirements.txt b/citizenvoice/requirements.txt new file mode 100644 index 00000000..edd345ef --- /dev/null +++ b/citizenvoice/requirements.txt @@ -0,0 +1,30 @@ +asgiref>=3.7.0 +attrs==21.4.0 +Django>=5.0 +djangorestframework==3.13.1 +django-extensions +django-rest-knox==4.2.0 +django-allauth==0.54.0 # newer versions removed email_address_exists +drf-spectacular==0.21.2 +# pywatchman # this was added to the requirements but python can't find the package: ERROR: Could not find a version that satisfies the requirement pywatchman==1.4.1 (from versions: none) +# So lets leave it out and see if nothing breaks, it can be removed later +GDAL==3.8 +gunicorn==20.1.0 +iniconfig==1.1.1 +packaging==21.3 +pluggy==1.0.0 +psycopg2==2.9.3 +psycopg2-binary==2.9.3 +py==1.11.0 +pyparsing==3.0.9 +pytest==7.1.2 +python-dotenv==0.20.0 +pytz==2022.2.1 +sqlparse==0.4.2 +tomli==2.0.1 +dash~=2.6.2 +pandas~=2.2.0 +plotly~=5.10.0 +django-cors-headers==3.13.0 +django-bulk-update-or-create==0.3.0 + From b2bae1d23c914335e697bf51704b2a99668b08d2 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 14:18:12 +0200 Subject: [PATCH 13/58] Refactor Dockerfile to include GDAL installation --- citizenvoice/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citizenvoice/Dockerfile b/citizenvoice/Dockerfile index e3036147..3e77c028 100644 --- a/citizenvoice/Dockerfile +++ b/citizenvoice/Dockerfile @@ -4,7 +4,7 @@ RUN mkdir -p /var/www/dockerize-django/citizenvoice WORKDIR /var/www/dockerize-django/citizenvoice COPY ./requirements.txt ./ -RUN apk add python3-dev +# packages required for building GDAL RUN apk add --no-cache \ python3-dev \ gdal \ From 5a3929d49b96010942a5ea957e442bb261bb548b Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 15:39:48 +0200 Subject: [PATCH 14/58] add djangorestframework to requirements.txt --- citizenvoice/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/citizenvoice/requirements.txt b/citizenvoice/requirements.txt index edd345ef..edfcee4a 100644 --- a/citizenvoice/requirements.txt +++ b/citizenvoice/requirements.txt @@ -27,4 +27,5 @@ pandas~=2.2.0 plotly~=5.10.0 django-cors-headers==3.13.0 django-bulk-update-or-create==0.3.0 +djangorestframework==3.15.2 From 58ced7500a1b65323c5507613692fd5aef1bc6bf Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 17:21:49 +0200 Subject: [PATCH 15/58] Refactor Dockerfile to remove wait-for-it.sh script and update CMD command --- citizenvoice/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/citizenvoice/Dockerfile b/citizenvoice/Dockerfile index 3e77c028..28e7ab55 100644 --- a/citizenvoice/Dockerfile +++ b/citizenvoice/Dockerfile @@ -22,9 +22,15 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . +# Copy wait-for-it.sh script +# COPY wait-for-it.sh /wait-for-it.sh +# RUN chmod +x /wait-for-it.sh + EXPOSE 8000 ENV DJANGO_HOST=0.0.0.0 ENV DJANGO_PORT=8000 +# CMD [ "/wait-for-it.sh", "db-postgis:5432", "--", "python", "manage.py", "runserver", "0.0.0.0:8000" ] CMD [ "python", "manage.py", "runserver"] + From 6a50ce11d6be212ac0402690689e206015c185f4 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 17:22:05 +0200 Subject: [PATCH 16/58] Refactor requirements.txt to update package versions --- citizenvoice/requirements.txt | 65 +++++++++++++++++++---------------- 1 file changed, 36 insertions(+), 29 deletions(-) diff --git a/citizenvoice/requirements.txt b/citizenvoice/requirements.txt index edfcee4a..48388fde 100644 --- a/citizenvoice/requirements.txt +++ b/citizenvoice/requirements.txt @@ -1,31 +1,38 @@ -asgiref>=3.7.0 -attrs==21.4.0 -Django>=5.0 -djangorestframework==3.13.1 -django-extensions +asgiref==3.7.2 +attrs==23.1.0 +certifi==2023.11.17 +charset-normalizer==3.3.2 +cryptography==41.0.7 +defusedxml==0.7.1 +Django==5.0 +django-allauth==0.54.0 +django-bulk-update-or-create==0.3.0 +django-cors-headers==4.3.1 +django-extensions==3.2.3 django-rest-knox==4.2.0 -django-allauth==0.54.0 # newer versions removed email_address_exists -drf-spectacular==0.21.2 -# pywatchman # this was added to the requirements but python can't find the package: ERROR: Could not find a version that satisfies the requirement pywatchman==1.4.1 (from versions: none) -# So lets leave it out and see if nothing breaks, it can be removed later +djangorestframework==3.15.0 +djangorestframework-gis==1.0 +drf-spectacular==0.26.5 GDAL==3.8 -gunicorn==20.1.0 -iniconfig==1.1.1 -packaging==21.3 -pluggy==1.0.0 -psycopg2==2.9.3 -psycopg2-binary==2.9.3 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.1.2 -python-dotenv==0.20.0 -pytz==2022.2.1 -sqlparse==0.4.2 -tomli==2.0.1 -dash~=2.6.2 -pandas~=2.2.0 -plotly~=5.10.0 -django-cors-headers==3.13.0 -django-bulk-update-or-create==0.3.0 -djangorestframework==3.15.2 - +idna==3.6 +inflection==0.5.1 +jsonschema==4.20.0 +jsonschema-specifications==2023.11.2 +numpy==2.1.1 +oauthlib==3.2.2 +psycopg2==2.9.9 +pycparser==2.21 +PyJWT==2.8.0 +python-dotenv==1.0.0 +python3-openid==3.2.0 +pytz==2023.3.post1 +PyYAML==6.0.1 +referencing==0.31.1 +requests==2.31.0 +requests-oauthlib==1.3.1 +rpds-py==0.13.2 +setuptools==68.2.2 +sqlparse==0.4.4 +uritemplate==4.1.1 +urllib3==2.1.0 +wheel==0.42.0 From 9c328f5b7bffdc405ef5503df21f7e2e46f66d54 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 17:22:23 +0200 Subject: [PATCH 17/58] Refactor docker-compose.yaml to use PostGIS instead of PostgreSQL for the database and add Django app service --- docker-compose.yaml | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 0f8b9562..798351fa 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -9,11 +9,11 @@ services: networks: - nuxt-network - db-postgres: - image: postgres:16.4 - container_name: db-postgres + db-postgis: + image: postgis/postgis:16-3.4 + container_name: db-postgis volumes: - - postgres-data:/var/lib/postgresql/data + - postgis-data:/var/lib/postgresql/data restart: always environment: POSTGRES_USER: ${POSTGRES_USER} @@ -24,6 +24,26 @@ services: networks: - nuxt-network + django-app: + build: ./citizenvoice + container_name: django-app + volumes: + - ./citizenvoice:/app + environment: + - SECRET_KEY=${SECRET_KEY} + - DATABASE_ENGINE=${DATABASE_ENGINE} + - POSTGRES_DBASE=${POSTGRES_DBASE} + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PWD=${POSTGRES_PWD} + - POSTGRES_HOST=db-postgis + - POSTGRES_PORT=${POSTGRES_PORT} + depends_on: + - db-postgis + restart: unless-stopped + networks: + - nuxt-network + command: python manage.py runserver + web-server: image: nginx:1.27.1-alpine3.20 container_name: web-server @@ -40,7 +60,7 @@ services: volumes: web-root: - postgres-data: + postgis-data: networks: nuxt-network: From 51d74fe51ed26119f8373a9819d8660fa843daad Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 11 Sep 2024 17:28:52 +0200 Subject: [PATCH 18/58] Refactor docker-compose.yaml to add Django app service and debug connection to the API app --- docker-compose.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 798351fa..1beb6ca6 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -25,10 +25,13 @@ services: - nuxt-network django-app: + # TODO: debug the connection to the api app. build: ./citizenvoice container_name: django-app volumes: - ./citizenvoice:/app + ports: + - 8000:8000 environment: - SECRET_KEY=${SECRET_KEY} - DATABASE_ENGINE=${DATABASE_ENGINE} From e960c004d5f661ff556e8b0b001cceb8c2f99b2e Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 15 Sep 2024 22:58:22 +0200 Subject: [PATCH 19/58] Add init-user-db.sh script to automate database setup and user creation --- init-user-db.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 init-user-db.sh diff --git a/init-user-db.sh b/init-user-db.sh new file mode 100755 index 00000000..659bd581 --- /dev/null +++ b/init-user-db.sh @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL + CREATE USER citizen WITH SUPPERUSER PASSWORD '${POSTGRES_PASSWORD}'; + CREATE DATABASE civo OWNER TO citizen; + GRANT ALL PRIVILEGES ON DATABASE civo TO citizen; +EOSQL \ No newline at end of file From 464da0d12c83274637775129c41000988062391a Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 15 Sep 2024 22:59:22 +0200 Subject: [PATCH 20/58] Refactor docker-compose.yaml to use Alpine image for PostGIS and add init script for database setup --- docker-compose.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 1beb6ca6..1f230d79 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -10,15 +10,14 @@ services: - nuxt-network db-postgis: - image: postgis/postgis:16-3.4 + image: postgis/postgis:16-3.4-alpine container_name: db-postgis + environment: + - POSTGRES_PASSWORD=${POSTGRES_PWD} volumes: - postgis-data:/var/lib/postgresql/data - restart: always - environment: - POSTGRES_USER: ${POSTGRES_USER} - POSTGRES_PASSWORD: ${POSTGRES_PWD} - POSTGRES_DB: ${POSTGRES_DBASE} + - ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh + restart: unless-stopped ports: - "5432:5432" networks: @@ -38,14 +37,15 @@ services: - POSTGRES_DBASE=${POSTGRES_DBASE} - POSTGRES_USER=${POSTGRES_USER} - POSTGRES_PWD=${POSTGRES_PWD} - - POSTGRES_HOST=db-postgis + - POSTGRES_HOST=${POSTGRES_HOST} - POSTGRES_PORT=${POSTGRES_PORT} + - DJANGO_ALLOWED_HOSTS=${DJANGO_ALLOWED_HOSTS} depends_on: - db-postgis restart: unless-stopped networks: - nuxt-network - command: python manage.py runserver + command: python manage.py runserver 0.0.0.0:8000 web-server: image: nginx:1.27.1-alpine3.20 From 432e41829b4c7c19bf9fdc48fda48c671d069604 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 15 Sep 2024 22:59:54 +0200 Subject: [PATCH 21/58] Fix Dockerfile to expose port 8000 and set Django runserver command with host binding --- citizenvoice/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/citizenvoice/Dockerfile b/citizenvoice/Dockerfile index 28e7ab55..e05677a8 100644 --- a/citizenvoice/Dockerfile +++ b/citizenvoice/Dockerfile @@ -26,11 +26,10 @@ COPY . . # COPY wait-for-it.sh /wait-for-it.sh # RUN chmod +x /wait-for-it.sh -EXPOSE 8000 +# ENV DJANGO_ALLOWED_HOSTS=localhost -ENV DJANGO_HOST=0.0.0.0 -ENV DJANGO_PORT=8000 +EXPOSE 8000 # CMD [ "/wait-for-it.sh", "db-postgis:5432", "--", "python", "manage.py", "runserver", "0.0.0.0:8000" ] -CMD [ "python", "manage.py", "runserver"] +CMD [ "python", "manage.py", "runserver", "0.0.0.0:8000"] From 527400ca2f45ce2036b40b75ad0a729a514bd2c8 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 15 Sep 2024 23:00:36 +0200 Subject: [PATCH 22/58] Update settings.py to use environment variables for DEBUG and ALLOWED_HOSTS --- citizenvoice/citizenvoice/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/citizenvoice/citizenvoice/settings.py b/citizenvoice/citizenvoice/settings.py index 9a576814..270adbe6 100644 --- a/citizenvoice/citizenvoice/settings.py +++ b/citizenvoice/citizenvoice/settings.py @@ -48,12 +48,12 @@ # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True +DEBUG = bool(os.environ.get("DEBUG", default=0)) # Choice of database engine will be retrieved from .env file DATABASE_ENGINE = os.getenv('DATABASE_ENGINE') -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = os.environ.get("DJANGO_ALLOWED_HOSTS").split(" ") # Application definition From aa940309ab3f561002b00d35f94c94e9b4e0a1af Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 15 Sep 2024 23:02:34 +0200 Subject: [PATCH 23/58] Remove hardcoded ALLOWED_HOSTS and enable CORS for all origins in settings.py --- citizenvoice/citizenvoice/settings.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/citizenvoice/citizenvoice/settings.py b/citizenvoice/citizenvoice/settings.py index 270adbe6..963fcf20 100644 --- a/citizenvoice/citizenvoice/settings.py +++ b/citizenvoice/citizenvoice/settings.py @@ -128,10 +128,7 @@ 'http://127.0.0.1:3000', 'http://145.94.193.168:3000' ] -ALLOWED_HOSTS = [ - 'localhost', - '127.0.0.1' -] + CORS_ORIGIN_ALLOW_ALL = True CORS_ORIGIN_WHITELIST = ( 'http://localhost:3000', From 7a3426bea154a8995bd75a1269f16ad56e2c441b Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:51:20 +0200 Subject: [PATCH 24/58] Add docker-compose.deploy.yaml for deployment setup with Nuxt, Django, and PostGIS --- docker-compose.deploy.yaml | 95 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 docker-compose.deploy.yaml diff --git a/docker-compose.deploy.yaml b/docker-compose.deploy.yaml new file mode 100644 index 00000000..954d9b6e --- /dev/null +++ b/docker-compose.deploy.yaml @@ -0,0 +1,95 @@ +services: + nuxt-app: + build: ./frontend + container_name: nuxt-app + restart: always + ports: + - "3000:3000" + command: "yarn run start" + networks: + - nuxt-network + + db-postgis: + image: postgis/postgis:16-3.4-alpine + container_name: db-postgis + environment: + - POSTGRES_PASSWORD=${POSTGRES_PWD} + volumes: + - postgis-data:/var/lib/postgresql/data + - ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh + restart: unless-stopped + ports: + - "5432:5432" + networks: + - nuxt-network + + django-app: + # TODO: debug the connection to the api app. + build: + context: ./citizenvoice + container_name: django-app + volumes: + - ./citizenvoice:/citizenvoice + ports: + - 8000:8000 + environment: + - SECRET_KEY=${SECRET_KEY} + - DATABASE_ENGINE=${DATABASE_ENGINE} + - POSTGRES_DBASE=${POSTGRES_DBASE} + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PWD=${POSTGRES_PWD} + - POSTGRES_HOST=${POSTGRES_HOST} + - POSTGRES_PORT=${POSTGRES_PORT} + - DJANGO_ALLOWED_HOSTS=${DJANGO_ALLOWED_HOSTS} + depends_on: + - db-postgis + restart: always + networks: + - nuxt-network + + web-server: + build: + context: ./container/nginx + container_name: web-server + ports: + - 80:80 + - 443:443 + networks: + - nuxt-network + depends_on: + - nuxt-app + - django-app + restart: always + volumes: + - web-root:/var/www/citizenvoice + - cerbot-web:/vol/www + - proxy-dhparams:/vol/proxy + - cerbot-certs:/etc/letsencrypt + environment: + - DOMAIN=${DOMAIN} + + cerbot: + build: + context: ./container/certbot + command: echo "Skipping..." + environment: + - EMAIL=${EMAIL} + - DOMAIN=${DOMAIN} + volumes: + - cerbot-web:/vol/www + - cerbot-certs:/etc/letsencrypt + depends_on: + - web-server + networks: + - nuxt-network + +volumes: + web-root: + postgis-data: + cerbot-web: + proxy-dhparams: + cerbot-certs: + +networks: + nuxt-network: + driver: bridge \ No newline at end of file From 7529f2661e74f82fe45d00b0fcb9d20271e55a78 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:51:47 +0200 Subject: [PATCH 25/58] Refactor docker-compose.yaml to improve service configuration and command execution for Django and Nginx --- docker-compose.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 1f230d79..59387150 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -25,10 +25,12 @@ services: django-app: # TODO: debug the connection to the api app. - build: ./citizenvoice + build: + context: ./citizenvoice + command: sh -c "python manage.py runserver 0.0.0.0:8000" container_name: django-app volumes: - - ./citizenvoice:/app + - ./citizenvoice:/citizenvoice ports: - 8000:8000 environment: @@ -45,10 +47,10 @@ services: restart: unless-stopped networks: - nuxt-network - command: python manage.py runserver 0.0.0.0:8000 web-server: - image: nginx:1.27.1-alpine3.20 + build: + context: ./container/nginx container_name: web-server volumes: - ./container/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf @@ -56,9 +58,10 @@ services: ports: - 80:80 networks: - nuxt-network: + - nuxt-network depends_on: - nuxt-app + - django-app restart: unless-stopped volumes: From 8bc5665e066a75a8c4cd0b6fe2126d2b4fdc79ee Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:52:17 +0200 Subject: [PATCH 26/58] Update Dockerfile to set environment variables, create a non-root user, and switch to uWSGI for serving Django --- citizenvoice/Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/citizenvoice/Dockerfile b/citizenvoice/Dockerfile index e05677a8..409591c8 100644 --- a/citizenvoice/Dockerfile +++ b/citizenvoice/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.11-alpine3.20 +ENV PYTHONUNBUFFERED 1 + RUN mkdir -p /var/www/dockerize-django/citizenvoice WORKDIR /var/www/dockerize-django/citizenvoice @@ -20,8 +22,10 @@ RUN apk add --no-cache \ RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt +RUN adduser --disabled-password --no-create-home django COPY . . - +RUN chown -R django:django /var/www/dockerize-django/citizenvoice +USER django # Copy wait-for-it.sh script # COPY wait-for-it.sh /wait-for-it.sh # RUN chmod +x /wait-for-it.sh @@ -31,5 +35,4 @@ COPY . . EXPOSE 8000 # CMD [ "/wait-for-it.sh", "db-postgis:5432", "--", "python", "manage.py", "runserver", "0.0.0.0:8000" ] -CMD [ "python", "manage.py", "runserver", "0.0.0.0:8000"] - +CMD ["uwsig", "--socket", ":8000", "--workers", "4", "--master", "--enable-threads", "--module", "citizenvoice.wsgi"] From 77f09f0e5f5b38c6c2f436e3fe6e35e88e02fe0a Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:52:29 +0200 Subject: [PATCH 27/58] Set default SECRET_KEY in settings.py for development purposes --- citizenvoice/citizenvoice/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citizenvoice/citizenvoice/settings.py b/citizenvoice/citizenvoice/settings.py index 963fcf20..81e16bec 100644 --- a/citizenvoice/citizenvoice/settings.py +++ b/citizenvoice/citizenvoice/settings.py @@ -44,7 +44,7 @@ # See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = os.getenv('SECRET_KEY') +SECRET_KEY = os.getenv('SECRET_KEY', 'setme-in-production') # SECURITY WARNING: don't run with debug turned on in production! From a0455a049eaa3f61455d2783eeb7d5b2b2e4212e Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:52:40 +0200 Subject: [PATCH 28/58] Add script to initialize Certbot and obtain SSL certificates --- container/cerbot/certify-init.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 container/cerbot/certify-init.sh diff --git a/container/cerbot/certify-init.sh b/container/cerbot/certify-init.sh new file mode 100644 index 00000000..6de91758 --- /dev/null +++ b/container/cerbot/certify-init.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +# Wait for proxy to be available, then gets the first certificate + +set -e + +until nc -z proxy 80; do + echo "Waiting for proxy to be available..." + sleep 5 & wait ${!} +done + +echo "Getting certificate for ${DOMAIN}" + +certbot certonly \ + --webroot \ + --webroot-path "/vol/www/" \ + -d "${DOMAIN}" \ + --email "${EMAIL}" \ + --rsa-key-size 4096 \ + --agree-tos \ + --noninteractive + From ba3efd3905d8aa849fbe0814fe5fb0127ae695ee Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:52:48 +0200 Subject: [PATCH 29/58] Add Dockerfile for Certbot container with initialization script --- container/cerbot/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 container/cerbot/Dockerfile diff --git a/container/cerbot/Dockerfile b/container/cerbot/Dockerfile new file mode 100644 index 00000000..5adf678b --- /dev/null +++ b/container/cerbot/Dockerfile @@ -0,0 +1,7 @@ +FROM cerbos/cerbot:v2.11.0 + +COPY certify-init.sh /opt/ +RUN chmod +x /opt/certify-init.sh + +ENTRYPOINT [] +CMD [ "cerbot", "reniew"] From 6263044d570914313a066911d6f1e8c7366cc7f2 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:52:59 +0200 Subject: [PATCH 30/58] Add Nginx SSL configuration templates and security options --- container/nginx/configs/default-ssl.conf.tpl | 35 +++++++++++++++++++ container/nginx/configs/default.conf.tpl | 12 +++++++ .../nginx/configs/options-ssl-nginx.conf | 14 ++++++++ 3 files changed, 61 insertions(+) create mode 100644 container/nginx/configs/default-ssl.conf.tpl create mode 100644 container/nginx/configs/default.conf.tpl create mode 100644 container/nginx/configs/options-ssl-nginx.conf diff --git a/container/nginx/configs/default-ssl.conf.tpl b/container/nginx/configs/default-ssl.conf.tpl new file mode 100644 index 00000000..08bba5a1 --- /dev/null +++ b/container/nginx/configs/default-ssl.conf.tpl @@ -0,0 +1,35 @@ +server { + listen 80; + server_name ${DOMAIN} www.${DOMAIN}; + + location /.well-knon/acme-challenge/ { + root /vol/www/; + } + + location / { + return 301 https://$host$request_uri; + } +} + +server { + listen 443 ssl; + server_name ${DOMAIN} www.${DOMAIN}; + + ssl_certificate /etc/letsencryt/live/${DOMAIN}/fullchain.pem; + ssl_certificate_key /etc/letsencryt/live/${DOMAIN}/privkey.pem; + + include /etc/nginx/options-ssl-nginx.conf; + ssl_dhparam /vol/proxy/ssl-dhparams.pem; + + add_header Strict-Transport-Security "max-age=315600; includeSubDomains" always; + + location /static { + alias /vol/static; + } + + location / { + uwsgi_pass ${APP_HOST}:${APP_PORT}; + include /etc/nginx/uwsgi_params; + client_max_body_size 10M; + } +} \ No newline at end of file diff --git a/container/nginx/configs/default.conf.tpl b/container/nginx/configs/default.conf.tpl new file mode 100644 index 00000000..88f78da1 --- /dev/null +++ b/container/nginx/configs/default.conf.tpl @@ -0,0 +1,12 @@ +server { + listen 80; + server_name ${DOMAIN} www.${DOMAIN}; + + location /.well-knon/acme-challenge/ { + root /vol/www/; + } + + location / { + return 301 https://$host$request_uri; + } +} \ No newline at end of file diff --git a/container/nginx/configs/options-ssl-nginx.conf b/container/nginx/configs/options-ssl-nginx.conf new file mode 100644 index 00000000..1d478e9d --- /dev/null +++ b/container/nginx/configs/options-ssl-nginx.conf @@ -0,0 +1,14 @@ +# This file contains important security parameters. If you modify this file +# manually, Certbot will be unable to automatically provide future security +# updates. Instead, Certbot will print and log an error message with a path to +# the up-to-date file that you will need to refer to when manually updating +# this file. Contents are based on https://ssl-config.mozilla.org + +ssl_session_cache shared:le_nginx_SSL:10m; +ssl_session_timeout 1440m; +ssl_session_tickets off; + +ssl_protocols TLSv1.2 TLSv1.3; +ssl_prefer_server_ciphers off; + +ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384"; \ No newline at end of file From 0455c789fd9e9a667074bcf1a123e9bc11ef85ae Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:53:06 +0200 Subject: [PATCH 31/58] Add Nginx run script for SSL certificate checks and configuration --- container/nginx/run.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 container/nginx/run.sh diff --git a/container/nginx/run.sh b/container/nginx/run.sh new file mode 100644 index 00000000..5fc4963a --- /dev/null +++ b/container/nginx/run.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +set -e + +echo "Checking for dhparam.pem" +if [ ! -f "/vol/proxy/ssl-dhparam.pem" ]; then + echo "Generating dhparam.pem" + openssl dhparam -out /vol/proxy/ssl-dhparam.pem 4096 # path must match the one in the default-ss.conf.tpl +fi + +# avoid replacing these with envsubst +export host=\$host +export request_uri=\$request_uri + +echo "Checking for fullchain.pem" +if [ ! -f "/etc/letsencrypt/life/${DOMAIN}/fullchain.pem" ]; then + echo "No SSL certificate, enabling HTTP only..." + envsubst < /etc/nginx/default.conf.tpl > /etc/nginx/conf.d/default.conf +else + echo "SSL certificate found, enabling HTTPS..." + envsubst < /etc/nginx/default-ssl.conf.tpl > /etc/nginx/conf.d/default.conf +fi + +nginx -g 'daemon off;' From 4044712c398ef50db7f3bd782b14b8832c748c0f Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:53:18 +0200 Subject: [PATCH 32/58] Add Dockerfile for Nginx container with configuration and initialization script --- container/nginx/Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 container/nginx/Dockerfile diff --git a/container/nginx/Dockerfile b/container/nginx/Dockerfile new file mode 100644 index 00000000..543b1399 --- /dev/null +++ b/container/nginx/Dockerfile @@ -0,0 +1,16 @@ +FROM nginx:1.27.1-alpine3.20 + +COPY ./configs/* /etc/nginx/ +COPY ./run.sh /run.sh + +ENV APP_HOST=django-app +ENV APP_PORT=8000 + +RUN apk add --no-cache openssl bash +RUN chmod +x /run.sh + +VOLUME /vol/static +VOLUME /vol/www + +CMD ["/run.sh"] + From cb20ec4ce49604caa10b80cfecf48a6806ea55ff Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 18 Sep 2024 16:53:25 +0200 Subject: [PATCH 33/58] Add uwsgi_params configuration for Nginx --- container/nginx/configs/uwsgi_params | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 container/nginx/configs/uwsgi_params diff --git a/container/nginx/configs/uwsgi_params b/container/nginx/configs/uwsgi_params new file mode 100644 index 00000000..e42d9a91 --- /dev/null +++ b/container/nginx/configs/uwsgi_params @@ -0,0 +1,17 @@ + +uwsgi_param QUERY_STRING $query_string; +uwsgi_param REQUEST_METHOD $request_method; +uwsgi_param CONTENT_TYPE $content_type; +uwsgi_param CONTENT_LENGTH $content_length; + +uwsgi_param REQUEST_URI $request_uri; +uwsgi_param PATH_INFO $document_uri; +uwsgi_param DOCUMENT_ROOT $document_root; +uwsgi_param SERVER_PROTOCOL $server_protocol; +uwsgi_param REQUEST_SCHEME $scheme; +uwsgi_param HTTPS $https if_not_empty; + +uwsgi_param REMOTE_ADDR $remote_addr; +uwsgi_param REMOTE_PORT $remote_port; +uwsgi_param SERVER_PORT $server_port; +uwsgi_param SERVER_NAME $server_name; \ No newline at end of file From 1b84291d9e70b3ca852638a69da89446ac6d7915 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 29 Nov 2024 11:26:27 +0100 Subject: [PATCH 34/58] Refactor nuxt-app service configuration in docker-compose.deploy.yaml --- docker-compose.deploy.yaml | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/docker-compose.deploy.yaml b/docker-compose.deploy.yaml index 954d9b6e..363bfef7 100644 --- a/docker-compose.deploy.yaml +++ b/docker-compose.deploy.yaml @@ -1,14 +1,4 @@ services: - nuxt-app: - build: ./frontend - container_name: nuxt-app - restart: always - ports: - - "3000:3000" - command: "yarn run start" - networks: - - nuxt-network - db-postgis: image: postgis/postgis:16-3.4-alpine container_name: db-postgis @@ -47,6 +37,20 @@ services: networks: - nuxt-network + nuxt-app: + build: ./frontend + container_name: nuxt-app + ports: + - "3000:3000" + command: "yarn run start" + environment: + API_PARTY_CMS_URL: http://django-app:8000/api/v2 + depends_on: + - django-app + networks: + - nuxt-network + restart: always + web-server: build: context: ./container/nginx @@ -70,7 +74,7 @@ services: cerbot: build: - context: ./container/certbot + context: ./container/cerbot command: echo "Skipping..." environment: - EMAIL=${EMAIL} From 975bde45ebb4507ba8abe0634ca1bd3e3b916a95 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 29 Nov 2024 11:26:34 +0100 Subject: [PATCH 35/58] Add dependency and environment variable for nuxt-app service in docker-compose.yaml --- docker-compose.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 59387150..c2a211b9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,6 +8,10 @@ services: command: "yarn run start" networks: - nuxt-network + depends_on: + - django-app + environment: + - API_PARTY_CMS_URL=http://django-app:8000/api/v2 db-postgis: image: postgis/postgis:16-3.4-alpine From a8508c4b034bbc37f41e80e401e407bf9cac076e Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 29 Nov 2024 11:26:41 +0100 Subject: [PATCH 36/58] Fix typo in init-user-db.sh: change 'SUPPERUSER' to 'SUPERUSER' and update database owner to 'citizen' --- init-user-db.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init-user-db.sh b/init-user-db.sh index 659bd581..428faa5f 100755 --- a/init-user-db.sh +++ b/init-user-db.sh @@ -2,7 +2,7 @@ set -e psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL - CREATE USER citizen WITH SUPPERUSER PASSWORD '${POSTGRES_PASSWORD}'; - CREATE DATABASE civo OWNER TO citizen; + CREATE USER citizen WITH SUPERUSER PASSWORD '${POSTGRES_PASSWORD}'; + CREATE DATABASE civo OWNER citizen; GRANT ALL PRIVILEGES ON DATABASE civo TO citizen; EOSQL \ No newline at end of file From 652c2e9725607579513829dce35b9149256e5357 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 29 Nov 2024 11:26:50 +0100 Subject: [PATCH 37/58] Add API_PARTY_CMS_URL environment variable to Dockerfile --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index be8f800b..318f3484 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -13,7 +13,7 @@ RUN yarn run build EXPOSE 3000 ENV NUXT_HOST=0.0.0.0 - ENV NUXT_PORT=3000 +ENV API_PARTY_CMS_URL=http://localhost:3001 CMD [ "yarn", "start" ] \ No newline at end of file From 9bc54a50a2c0a9d064625ab2c151ed62f58b5193 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 29 Nov 2024 11:27:00 +0100 Subject: [PATCH 38/58] Update dependencies in package.json: bump nuxt, @nuxt-alt/auth, @nuxt-alt/http, @vueuse/nuxt, nuxt-api-party, typescript, uuid, vite, vite-plugin-vuetify, vuetify, and yup --- frontend/package.json | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index aea950ba..7f65e40a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -19,7 +19,7 @@ "autoprefixer": "^10.4.13", "eslint": "^8.27.0", "eslint-plugin-nuxt": "^4.0.0", - "nuxt": "^3.13.0", + "nuxt": "^3.13.2", "openapi-typescript": "^6.7.5", "postcss": "^8.4.21", "sass": "^1.58.0", @@ -27,28 +27,27 @@ }, "dependencies": { "@mdi/font": "^7.1.96", - "@nuxt-alt/auth": "^3.0.0", - "@nuxt-alt/http": "^1.0", + "@nuxt-alt/auth": "^3.1.7", + "@nuxt-alt/http": "^1.7", "@vue-leaflet/vue-leaflet": "^0.8.4", - "@vueuse/nuxt": "^11.0.0", + "@vueuse/nuxt": "^11.1.0", "dayjs": "^1.11.6", "leaflet": "^1.9.3", "leaflet-draw": "^1.0.4", "leaflet-draw-toolbar": "^0.3.0-alpha.1", "leaflet-toolbar": "^0.4.0-alpha.2", - "nuxt-api-party": "^2.0.0", + "nuxt-api-party": "^2.0.10", "pinia": "^2.2.0", "ramda": "^0.28.0", - "typescript": "^5.4.5", - "uuid": "^9.0.0", + "typescript": "^5.6.3", + "uuid": "^10.0.0", "vee-validate": "^4.9.5", - "vite-plugin-vuetify": "^2.0.0", + "vite": "^5.4.9", + "vite-plugin-vuetify": "^2.0.4", + "vue": "^3.5.0", "vue-toastification": "^2.0.0-rc.5", "vuedraggable": "^4.1.0", - "vuetify": "^3.0.0", - "yup": "^0.32.11" - }, - "overrides": { - "vue": "^3.0.0" + "vuetify": "^3.7.3", + "yup": "^1.4" } } From 35d1397f984156785c42104ff8769dafce66e861 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 29 Nov 2024 11:27:27 +0100 Subject: [PATCH 39/58] update yarn.lock --- frontend/yarn.lock | 3266 ++++++++++++++++++++++---------------------- 1 file changed, 1621 insertions(+), 1645 deletions(-) diff --git a/frontend/yarn.lock b/frontend/yarn.lock index bde02866..80b53eda 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -20,213 +20,189 @@ resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.10.tgz#ae829f170158e297a9b6a28f161a8e487d00814d" integrity sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww== -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2", "@babel/code-frame@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" - integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.24.2", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== dependencies: - "@babel/highlight" "^7.24.7" + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/compat-data@^7.25.2": - version "7.25.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.4.tgz#7d2a80ce229890edcf4cc259d4d696cb4dae2fcb" - integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ== +"@babel/compat-data@^7.25.9": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" + integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== -"@babel/core@^7.23.0", "@babel/core@^7.23.7", "@babel/core@^7.24.7": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77" - integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== +"@babel/core@^7.23.0", "@babel/core@^7.25.7", "@babel/core@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.24.7" - "@babel/generator" "^7.25.0" - "@babel/helper-compilation-targets" "^7.25.2" - "@babel/helper-module-transforms" "^7.25.2" - "@babel/helpers" "^7.25.0" - "@babel/parser" "^7.25.0" - "@babel/template" "^7.25.0" - "@babel/traverse" "^7.25.2" - "@babel/types" "^7.25.2" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.25.0", "@babel/generator@^7.25.6": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.6.tgz#0df1ad8cb32fe4d2b01d8bf437f153d19342a87c" - integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw== +"@babel/generator@^7.25.9", "@babel/generator@^7.26.0": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" + integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== dependencies: - "@babel/types" "^7.25.6" + "@babel/parser" "^7.26.2" + "@babel/types" "^7.26.0" "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" - jsesc "^2.5.1" + jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" - integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== +"@babel/helper-annotate-as-pure@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4" + integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g== dependencies: - "@babel/types" "^7.24.7" + "@babel/types" "^7.25.9" -"@babel/helper-compilation-targets@^7.25.2": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c" - integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== +"@babel/helper-compilation-targets@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" + integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== dependencies: - "@babel/compat-data" "^7.25.2" - "@babel/helper-validator-option" "^7.24.8" - browserslist "^4.23.1" + "@babel/compat-data" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + browserslist "^4.24.0" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.24.7", "@babel/helper-create-class-features-plugin@^7.25.0": - version "7.25.4" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz#57eaf1af38be4224a9d9dd01ddde05b741f50e14" - integrity sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-member-expression-to-functions" "^7.24.8" - "@babel/helper-optimise-call-expression" "^7.24.7" - "@babel/helper-replace-supers" "^7.25.0" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - "@babel/traverse" "^7.25.4" +"@babel/helper-create-class-features-plugin@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83" + integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/traverse" "^7.25.9" semver "^6.3.1" -"@babel/helper-member-expression-to-functions@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6" - integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA== +"@babel/helper-member-expression-to-functions@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3" + integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ== dependencies: - "@babel/traverse" "^7.24.8" - "@babel/types" "^7.24.8" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" -"@babel/helper-module-imports@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" - integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== +"@babel/helper-module-imports@^7.24.7", "@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" -"@babel/helper-module-imports@~7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" - integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== +"@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== dependencies: - "@babel/types" "^7.22.15" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" -"@babel/helper-module-transforms@^7.25.2": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6" - integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ== +"@babel/helper-optimise-call-expression@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e" + integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ== dependencies: - "@babel/helper-module-imports" "^7.24.7" - "@babel/helper-simple-access" "^7.24.7" - "@babel/helper-validator-identifier" "^7.24.7" - "@babel/traverse" "^7.25.2" - -"@babel/helper-optimise-call-expression@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" - integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== - dependencies: - "@babel/types" "^7.24.7" - -"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" - integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== - -"@babel/helper-replace-supers@^7.25.0": - version "7.25.0" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz#ff44deac1c9f619523fe2ca1fd650773792000a9" - integrity sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.24.8" - "@babel/helper-optimise-call-expression" "^7.24.7" - "@babel/traverse" "^7.25.0" - -"@babel/helper-simple-access@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" - integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== - dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" - integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== - dependencies: - "@babel/traverse" "^7.24.7" - "@babel/types" "^7.24.7" - -"@babel/helper-string-parser@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" - integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== - -"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" - integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== - -"@babel/helper-validator-option@^7.24.8": - version "7.24.8" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" - integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== - -"@babel/helpers@^7.25.0": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.6.tgz#57ee60141829ba2e102f30711ffe3afab357cc60" - integrity sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q== + "@babel/types" "^7.25.9" + +"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" + integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== + +"@babel/helper-replace-supers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5" + integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ== dependencies: - "@babel/template" "^7.25.0" - "@babel/types" "^7.25.6" + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/traverse" "^7.25.9" -"@babel/highlight@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" - integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== +"@babel/helper-skip-transparent-expression-wrappers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9" + integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== dependencies: - "@babel/helper-validator-identifier" "^7.24.7" - chalk "^2.4.2" - js-tokens "^4.0.0" - picocolors "^1.0.0" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-string-parser@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== -"@babel/parser@^7.23.9", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3", "@babel/parser@^7.25.4", "@babel/parser@^7.25.6": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.6.tgz#85660c5ef388cbbf6e3d2a694ee97a38f18afe2f" - integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q== +"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/helper-validator-option@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== + +"@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== dependencies: - "@babel/types" "^7.25.6" + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" + +"@babel/parser@^7.25.3", "@babel/parser@^7.25.4", "@babel/parser@^7.25.6", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" + integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== + dependencies: + "@babel/types" "^7.26.0" "@babel/plugin-proposal-decorators@^7.23.0": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz#7e2dcfeda4a42596b57c4c9de1f5176bbfc532e3" - integrity sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz#8680707f943d1a3da2cd66b948179920f097e254" + integrity sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.24.7" - "@babel/helper-plugin-utils" "^7.24.7" - "@babel/plugin-syntax-decorators" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-decorators" "^7.25.9" -"@babel/plugin-syntax-decorators@^7.24.7": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz#e4f8a0a8778ccec669611cd5aed1ed8e6e3a6fcf" - integrity sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ== +"@babel/plugin-syntax-decorators@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz#986b4ca8b7b5df3f67cee889cedeffc2e2bf14b3" + integrity sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg== dependencies: - "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz#6d4c78f042db0e82fd6436cd65fec5dc78ad2bde" - integrity sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" + integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== dependencies: - "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" @@ -235,73 +211,65 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-jsx@^7.23.3": - version "7.24.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" - integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.7" - -"@babel/plugin-syntax-typescript@^7.24.7": - version "7.25.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz#04db9ce5a9043d9c635e75ae7969a2cd50ca97ff" - integrity sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg== - dependencies: - "@babel/helper-plugin-utils" "^7.24.8" - -"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.24.7": - version "7.25.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz#237c5d10de6d493be31637c6b9fa30b6c5461add" - integrity sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A== - dependencies: - "@babel/helper-annotate-as-pure" "^7.24.7" - "@babel/helper-create-class-features-plugin" "^7.25.0" - "@babel/helper-plugin-utils" "^7.24.8" - "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" - "@babel/plugin-syntax-typescript" "^7.24.7" - -"@babel/runtime@^7.15.4": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.6.tgz#9afc3289f7184d8d7f98b099884c26317b9264d2" - integrity sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ== - dependencies: - regenerator-runtime "^0.14.0" - -"@babel/standalone@^7.23.8": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.25.6.tgz#b81f6cefd3b667ae5334979d01b3633c70bb231f" - integrity sha512-Kf2ZcZVqsKbtYhlA7sP0z5A3q5hmCVYMKMWRWNK/5OVwHIve3JY1djVRmIVAx8FMueLIfZGKQDIILK2w8zO4mg== - -"@babel/template@^7.23.9", "@babel/template@^7.25.0": - version "7.25.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a" - integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== - dependencies: - "@babel/code-frame" "^7.24.7" - "@babel/parser" "^7.25.0" - "@babel/types" "^7.25.0" - -"@babel/traverse@^7.23.9", "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.4": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.6.tgz#04fad980e444f182ecf1520504941940a90fea41" - integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ== - dependencies: - "@babel/code-frame" "^7.24.7" - "@babel/generator" "^7.25.6" - "@babel/parser" "^7.25.6" - "@babel/template" "^7.25.0" - "@babel/types" "^7.25.6" +"@babel/plugin-syntax-jsx@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" + integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-typescript@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399" + integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.9.tgz#69267905c2b33c2ac6d8fe765e9dc2ddc9df3849" + integrity sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/plugin-syntax-typescript" "^7.25.9" + +"@babel/standalone@^7.25.7": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.26.2.tgz#a1fdf2d477a1f3d2828f0551b5dc14c44d4e127f" + integrity sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w== + +"@babel/template@^7.25.0", "@babel/template@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/traverse@^7.25.6", "@babel/traverse@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" + integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/generator" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/template" "^7.25.9" + "@babel/types" "^7.25.9" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.22.15", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.4", "@babel/types@^7.25.6": - version "7.25.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.6.tgz#893942ddb858f32ae7a004ec9d3a76b3463ef8e6" - integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw== +"@babel/types@^7.25.4", "@babel/types@^7.25.6", "@babel/types@^7.25.7", "@babel/types@^7.25.8", "@babel/types@^7.25.9", "@babel/types@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff" + integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== dependencies: - "@babel/helper-string-parser" "^7.24.8" - "@babel/helper-validator-identifier" "^7.24.7" - to-fast-properties "^2.0.0" + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" "@cloudflare/kv-asset-handler@^0.3.4": version "0.3.4" @@ -310,492 +278,377 @@ dependencies: mime "^3.0.0" -"@csstools/selector-resolve-nested@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@csstools/selector-resolve-nested/-/selector-resolve-nested-1.1.0.tgz#d872f2da402d3ce8bd0cf16ea5f9fba76b18e430" - integrity sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg== +"@csstools/selector-resolve-nested@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.0.0.tgz#704a9b637975680e025e069a4c58b3beb3e2752a" + integrity sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ== -"@csstools/selector-specificity@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz#63085d2995ca0f0e55aa8b8a07d69bfd48b844fe" - integrity sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA== +"@csstools/selector-specificity@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz#037817b574262134cabd68fc4ec1a454f168407b" + integrity sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw== "@esbuild/aix-ppc64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz#d1bc06aedb6936b3b6d313bf809a5a40387d2b7f" integrity sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA== -"@esbuild/aix-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" - integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== - "@esbuild/aix-ppc64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== -"@esbuild/aix-ppc64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" - integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== +"@esbuild/aix-ppc64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz#b57697945b50e99007b4c2521507dc613d4a648c" + integrity sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw== "@esbuild/android-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4" integrity sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA== -"@esbuild/android-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" - integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== - "@esbuild/android-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== -"@esbuild/android-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" - integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== +"@esbuild/android-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz#1add7e0af67acefd556e407f8497e81fddad79c0" + integrity sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w== "@esbuild/android-arm@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824" integrity sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w== -"@esbuild/android-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" - integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== - "@esbuild/android-arm@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== -"@esbuild/android-arm@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" - integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== +"@esbuild/android-arm@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.24.0.tgz#ab7263045fa8e090833a8e3c393b60d59a789810" + integrity sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew== "@esbuild/android-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d" integrity sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew== -"@esbuild/android-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" - integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== - "@esbuild/android-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== -"@esbuild/android-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" - integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== +"@esbuild/android-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.24.0.tgz#e8f8b196cfdfdd5aeaebbdb0110983460440e705" + integrity sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ== "@esbuild/darwin-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e" integrity sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g== -"@esbuild/darwin-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" - integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== - "@esbuild/darwin-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== -"@esbuild/darwin-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz#05b17f91a87e557b468a9c75e9d85ab10c121b16" - integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== +"@esbuild/darwin-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz#2d0d9414f2acbffd2d86e98253914fca603a53dd" + integrity sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw== "@esbuild/darwin-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd" integrity sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A== -"@esbuild/darwin-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" - integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== - "@esbuild/darwin-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== -"@esbuild/darwin-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" - integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== +"@esbuild/darwin-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz#33087aab31a1eb64c89daf3d2cf8ce1775656107" + integrity sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA== "@esbuild/freebsd-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487" integrity sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA== -"@esbuild/freebsd-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" - integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== - "@esbuild/freebsd-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== -"@esbuild/freebsd-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" - integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== +"@esbuild/freebsd-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz#bb76e5ea9e97fa3c753472f19421075d3a33e8a7" + integrity sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA== "@esbuild/freebsd-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c" integrity sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg== -"@esbuild/freebsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" - integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== - "@esbuild/freebsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== -"@esbuild/freebsd-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" - integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== +"@esbuild/freebsd-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz#e0e2ce9249fdf6ee29e5dc3d420c7007fa579b93" + integrity sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ== "@esbuild/linux-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b" integrity sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA== -"@esbuild/linux-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" - integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== - "@esbuild/linux-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== -"@esbuild/linux-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" - integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g== +"@esbuild/linux-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz#d1b2aa58085f73ecf45533c07c82d81235388e75" + integrity sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g== "@esbuild/linux-arm@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef" integrity sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w== -"@esbuild/linux-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" - integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== - "@esbuild/linux-arm@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== -"@esbuild/linux-arm@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" - integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== +"@esbuild/linux-arm@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz#8e4915df8ea3e12b690a057e77a47b1d5935ef6d" + integrity sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw== "@esbuild/linux-ia32@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601" integrity sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA== -"@esbuild/linux-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" - integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== - "@esbuild/linux-ia32@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== -"@esbuild/linux-ia32@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" - integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== +"@esbuild/linux-ia32@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz#8200b1110666c39ab316572324b7af63d82013fb" + integrity sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA== "@esbuild/linux-loong64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299" integrity sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA== -"@esbuild/linux-loong64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" - integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== - "@esbuild/linux-loong64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== -"@esbuild/linux-loong64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" - integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== +"@esbuild/linux-loong64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz#6ff0c99cf647504df321d0640f0d32e557da745c" + integrity sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g== "@esbuild/linux-mips64el@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec" integrity sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w== -"@esbuild/linux-mips64el@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" - integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== - "@esbuild/linux-mips64el@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== -"@esbuild/linux-mips64el@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" - integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== +"@esbuild/linux-mips64el@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz#3f720ccd4d59bfeb4c2ce276a46b77ad380fa1f3" + integrity sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA== "@esbuild/linux-ppc64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8" integrity sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg== -"@esbuild/linux-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" - integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== - "@esbuild/linux-ppc64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== -"@esbuild/linux-ppc64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" - integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== +"@esbuild/linux-ppc64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz#9d6b188b15c25afd2e213474bf5f31e42e3aa09e" + integrity sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ== "@esbuild/linux-riscv64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf" integrity sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg== -"@esbuild/linux-riscv64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" - integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== - "@esbuild/linux-riscv64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== -"@esbuild/linux-riscv64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" - integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== +"@esbuild/linux-riscv64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz#f989fdc9752dfda286c9cd87c46248e4dfecbc25" + integrity sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw== "@esbuild/linux-s390x@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8" integrity sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg== -"@esbuild/linux-s390x@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" - integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== - "@esbuild/linux-s390x@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== -"@esbuild/linux-s390x@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" - integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== +"@esbuild/linux-s390x@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz#29ebf87e4132ea659c1489fce63cd8509d1c7319" + integrity sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g== "@esbuild/linux-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78" integrity sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg== -"@esbuild/linux-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" - integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== - "@esbuild/linux-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== -"@esbuild/linux-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" - integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== +"@esbuild/linux-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz#4af48c5c0479569b1f359ffbce22d15f261c0cef" + integrity sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA== "@esbuild/netbsd-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b" integrity sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA== -"@esbuild/netbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" - integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== - "@esbuild/netbsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== -"@esbuild/netbsd-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" - integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== +"@esbuild/netbsd-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz#1ae73d23cc044a0ebd4f198334416fb26c31366c" + integrity sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg== -"@esbuild/openbsd-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" - integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== +"@esbuild/openbsd-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz#5d904a4f5158c89859fd902c427f96d6a9e632e2" + integrity sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg== "@esbuild/openbsd-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0" integrity sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw== -"@esbuild/openbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" - integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== - "@esbuild/openbsd-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== -"@esbuild/openbsd-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" - integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== +"@esbuild/openbsd-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz#4c8aa88c49187c601bae2971e71c6dc5e0ad1cdf" + integrity sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q== "@esbuild/sunos-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30" integrity sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA== -"@esbuild/sunos-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" - integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== - "@esbuild/sunos-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== -"@esbuild/sunos-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" - integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== +"@esbuild/sunos-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz#8ddc35a0ea38575fa44eda30a5ee01ae2fa54dd4" + integrity sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA== "@esbuild/win32-arm64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae" integrity sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A== -"@esbuild/win32-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" - integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== - "@esbuild/win32-arm64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== -"@esbuild/win32-arm64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" - integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== +"@esbuild/win32-arm64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz#6e79c8543f282c4539db684a207ae0e174a9007b" + integrity sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA== "@esbuild/win32-ia32@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67" integrity sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ== -"@esbuild/win32-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" - integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== - "@esbuild/win32-ia32@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== -"@esbuild/win32-ia32@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" - integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== +"@esbuild/win32-ia32@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz#057af345da256b7192d18b676a02e95d0fa39103" + integrity sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw== "@esbuild/win32-x64@0.19.12": version "0.19.12" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae" integrity sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA== -"@esbuild/win32-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" - integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== - "@esbuild/win32-x64@0.21.5": version "0.21.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== -"@esbuild/win32-x64@0.23.1": - version "0.23.1" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" - integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== +"@esbuild/win32-x64@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz#168ab1c7e1c318b922637fad8f339d48b01e1244" + integrity sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA== "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" - integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== dependencies: - eslint-visitor-keys "^3.3.0" + eslint-visitor-keys "^3.4.3" "@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1": - version "4.11.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.0.tgz#b0ffd0312b4a3fd2d6f77237e7248a5ad3a680ae" - integrity sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A== + version "4.12.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== "@eslint/eslintrc@^2.1.4": version "2.1.4" @@ -812,22 +665,22 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.57.0": - version "8.57.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" - integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== +"@eslint/js@8.57.1": + version "8.57.1" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2" + integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q== "@fastify/busboy@^2.0.0": version "2.1.1" resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-2.1.1.tgz#b9da6a878a371829a0502c9b6c1c143ef6663f4d" integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA== -"@humanwhocodes/config-array@^0.11.14": - version "0.11.14" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" - integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== +"@humanwhocodes/config-array@^0.13.0": + version "0.13.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748" + integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw== dependencies: - "@humanwhocodes/object-schema" "^2.0.2" + "@humanwhocodes/object-schema" "^2.0.3" debug "^4.3.1" minimatch "^3.0.5" @@ -836,7 +689,7 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== -"@humanwhocodes/object-schema@^2.0.2": +"@humanwhocodes/object-schema@^2.0.3": version "2.0.3" resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== @@ -904,15 +757,15 @@ integrity sha512-n/61cS1+P1VBn8VFxqbtKWjOIaXPF63Gtuv+l2P++NBcs5Su8P7DUo2S4/qk9VzrqhE5gBuacIEe7AdTLvQh5g== "@koa/router@^12.0.1": - version "12.0.1" - resolved "https://registry.yarnpkg.com/@koa/router/-/router-12.0.1.tgz#1a66f92a630c02832cf5bbf0db06c9e53e423468" - integrity sha512-ribfPYfHb+Uw3b27Eiw6NPqjhIhTpVFzEWLwyc/1Xp+DCdwRRyIlAUODX+9bPARF6aQtUu1+/PHzdNvRzcs/+Q== + version "12.0.2" + resolved "https://registry.yarnpkg.com/@koa/router/-/router-12.0.2.tgz#286d51959ed611255faa944818a112e35567835a" + integrity sha512-sYcHglGKTxGF+hQ6x67xDfkE9o+NhVlRHBqq6gLywaMc6CojK/5vFZByphdonKinYlMLkEkacm+HEse9HzwgTA== dependencies: debug "^4.3.4" http-errors "^2.0.0" koa-compose "^4.1.0" methods "^1.1.2" - path-to-regexp "^6.2.1" + path-to-regexp "^6.3.0" "@kwsites/file-exists@^1.1.1": version "1.1.1" @@ -926,7 +779,7 @@ resolved "https://registry.yarnpkg.com/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz#8ace5259254426ccef57f3175bc64ed7095ed919" integrity sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw== -"@mapbox/node-pre-gyp@^1.0.5": +"@mapbox/node-pre-gyp@^1.0.11": version "1.0.11" resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz#417db42b7f5323d79e93b34a6d7a2a12c0df43fa" integrity sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ== @@ -946,22 +799,22 @@ resolved "https://registry.yarnpkg.com/@mdi/font/-/font-7.4.47.tgz#2ae522867da3a5c88b738d54b403eb91471903af" integrity sha512-43MtGpd585SNzHZPcYowu/84Vz2a2g31TvPMTm9uTiCSWzaheQySUcSyUH/46fPnuPQWof2yd0pGBtzee/IQWw== -"@netlify/functions@^2.8.0": - version "2.8.1" - resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-2.8.1.tgz#67cd94f929551e156225fb50d2efba603b97e138" - integrity sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A== +"@netlify/functions@^2.8.2": + version "2.8.2" + resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-2.8.2.tgz#653395b901a74a6189e913a089f9cb90083ca6ce" + integrity sha512-DeoAQh8LuNPvBE4qsKlezjKj0PyXDryOFJfJKo3Z1qZLKzQ21sT314KQKPVjfvw6knqijj+IO+0kHXy/TJiqNA== dependencies: - "@netlify/serverless-functions-api" "1.19.1" + "@netlify/serverless-functions-api" "1.26.1" "@netlify/node-cookies@^0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@netlify/node-cookies/-/node-cookies-0.1.0.tgz#dda912ba618527695cf519fafa221c5e6777c612" integrity sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g== -"@netlify/serverless-functions-api@1.19.1": - version "1.19.1" - resolved "https://registry.yarnpkg.com/@netlify/serverless-functions-api/-/serverless-functions-api-1.19.1.tgz#f195d18dd9ef14c656225287abb57c333df3880f" - integrity sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew== +"@netlify/serverless-functions-api@1.26.1": + version "1.26.1" + resolved "https://registry.yarnpkg.com/@netlify/serverless-functions-api/-/serverless-functions-api-1.26.1.tgz#6d2792a7fdbb3a6b852c219e4fb13622b30a9ec5" + integrity sha512-q3L9i3HoNfz0SGpTIS4zTcKBbRkxzCRpd169eyiTuk3IwcPC3/85mzLHranlKo2b+HYT0gu37YxGB45aD8A3Tw== dependencies: "@netlify/node-cookies" "^0.1.0" urlpattern-polyfill "8.0.2" @@ -992,7 +845,7 @@ resolved "https://registry.yarnpkg.com/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz#3dc35ba0f1e66b403c00b39344f870298ebb1c8e" integrity sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA== -"@nuxt-alt/auth@^3.0.0": +"@nuxt-alt/auth@^3.1.7": version "3.1.7" resolved "https://registry.yarnpkg.com/@nuxt-alt/auth/-/auth-3.1.7.tgz#f764b1f7906cd88d6ff3e59cc8de0ebe79029782" integrity sha512-lVL3N5xb5tIyJCfORPJdORLmMExEhb7jxqgxcQRHM7xazuKs+CiNOyRNyx44FvMKiVtX9zY2nhGba6zpC+8jiw== @@ -1008,7 +861,7 @@ pinia "^2.1.7" requrl "^3.0.2" -"@nuxt-alt/http@^1.0", "@nuxt-alt/http@latest": +"@nuxt-alt/http@^1.7", "@nuxt-alt/http@latest": version "1.7.10" resolved "https://registry.yarnpkg.com/@nuxt-alt/http/-/http-1.7.10.tgz#1cf1e20522813976c0f80f15851fe8cf6832630f" integrity sha512-SsPQH6rFZKf8c1P4B12ucVGEoWUzuK3btO9AgSTSZhGQKrVXUihoidPeDLqJfFYnarTft2eeqwoXUUYtk9BUCQ== @@ -1024,42 +877,42 @@ resolved "https://registry.yarnpkg.com/@nuxt/devalue/-/devalue-2.0.2.tgz#5749f04df13bda4c863338d8dabaf370f45ef7c7" integrity sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA== -"@nuxt/devtools-kit@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.4.1.tgz#8a0fd642a131af2c6d8b7e3928988d28bc0d545f" - integrity sha512-6h7T9B0tSZVap13/hf7prEAgIzraj/kyux6/Iif455Trew96jHIFCCboBApUMastYEuCo3l17tgZKe0HW+jrtA== +"@nuxt/devtools-kit@1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.6.0.tgz#dca1bbb85dbe839d40ec7ac602eed786ed2fcba4" + integrity sha512-kJ8mVKwTSN3tdEVNy7mxKCiQk9wsG5t3oOrRMWk6IEbTSov+5sOULqQSM/+OWxWsEDmDfA7QlS5sM3Ti9uMRqQ== dependencies: - "@nuxt/kit" "^3.13.0" - "@nuxt/schema" "^3.13.0" + "@nuxt/kit" "^3.13.2" + "@nuxt/schema" "^3.13.2" execa "^7.2.0" -"@nuxt/devtools-wizard@1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.4.1.tgz#9263397c529b1e02f0181331d46c3226e8f53c59" - integrity sha512-X9uTh5rgt0pw3UjXcHyl8ZFYmCgw8ITRe9Nr2VLCtNROfKz9yol/ESEhYMwTFiFlqSyfJP6/qtogJBjUt6dzTw== +"@nuxt/devtools-wizard@1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.6.0.tgz#10223064114eacd875bdbed58174a5ffa91d26fd" + integrity sha512-n+mzz5NwnKZim0tq1oBi+x1nNXb21fp7QeBl7bYKyDT1eJ0XCxFkVTr/kB/ddkkLYZ+o8TykpeNPa74cN+xAyQ== dependencies: consola "^3.2.3" - diff "^5.2.0" + diff "^7.0.0" execa "^7.2.0" global-directory "^4.0.1" - magicast "^0.3.4" + magicast "^0.3.5" pathe "^1.1.2" pkg-types "^1.2.0" prompts "^2.4.2" rc9 "^2.1.2" semver "^7.6.3" -"@nuxt/devtools@^1.4.1": - version "1.4.1" - resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.4.1.tgz#48c63cec97806d7dcecfabece5abcb2250497b36" - integrity sha512-BtmGRAr/pjSE3dBrM7iceNT6OZAQ/MHxq1brkHJDs2VdyZPnqqGS4n3/98saASoRdj0dddsuIElsqC/zIABhgg== +"@nuxt/devtools@^1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.6.0.tgz#333a055bd4038db4b72d217738392e42758c9380" + integrity sha512-xNorMapzpM8HaW7NnAsEEO38OrmrYBzGvkkqfBU5nNh5XEymmIfCbQc7IA/GIOH9pXOV4gRutCjHCWXHYbOl3A== dependencies: "@antfu/utils" "^0.7.10" - "@nuxt/devtools-kit" "1.4.1" - "@nuxt/devtools-wizard" "1.4.1" - "@nuxt/kit" "^3.13.0" - "@vue/devtools-core" "7.3.3" - "@vue/devtools-kit" "7.3.3" + "@nuxt/devtools-kit" "1.6.0" + "@nuxt/devtools-wizard" "1.6.0" + "@nuxt/kit" "^3.13.2" + "@vue/devtools-core" "7.4.4" + "@vue/devtools-kit" "7.4.4" birpc "^0.2.17" consola "^3.2.3" cronstrue "^2.50.0" @@ -1072,51 +925,51 @@ hookable "^5.5.3" image-meta "^0.2.1" is-installed-globally "^1.0.0" - launch-editor "^2.8.1" + launch-editor "^2.9.1" local-pkg "^0.5.0" - magicast "^0.3.4" + magicast "^0.3.5" nypm "^0.3.11" - ohash "^1.1.3" + ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" pkg-types "^1.2.0" rc9 "^2.1.2" scule "^1.3.0" semver "^7.6.3" - simple-git "^3.25.0" + simple-git "^3.27.0" sirv "^2.0.4" - tinyglobby "^0.2.5" - unimport "^3.11.1" + tinyglobby "^0.2.6" + unimport "^3.12.0" vite-plugin-inspect "^0.8.7" - vite-plugin-vue-inspector "^5.1.3" + vite-plugin-vue-inspector "5.1.3" which "^3.0.1" ws "^8.18.0" -"@nuxt/kit@3.13.1", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.12.2", "@nuxt/kit@^3.12.3", "@nuxt/kit@^3.13.0", "@nuxt/kit@^3.9.0", "@nuxt/kit@^3.9.3": - version "3.13.1" - resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.13.1.tgz#69501efc661ba861f45ed947918efb3e84838365" - integrity sha512-FkUL349lp/3nVfTIyws4UDJ3d2jyv5Pk1DC1HQUCOkSloYYMdbRcQAUcb4fe2TCLNWvHM+FhU8jnzGTzjALZYA== +"@nuxt/kit@3.14.159", "@nuxt/kit@^3.12.2", "@nuxt/kit@^3.13.1", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159", "@nuxt/kit@^3.9.0", "@nuxt/kit@^3.9.3": + version "3.14.159" + resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.14.159.tgz#1b856bd5ed75c97e425a0b57dacfe476990a6863" + integrity sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g== dependencies: - "@nuxt/schema" "3.13.1" - c12 "^1.11.2" + "@nuxt/schema" "3.14.159" + c12 "^2.0.1" consola "^3.2.3" defu "^6.1.4" destr "^2.0.3" globby "^14.0.2" hash-sum "^2.0.0" - ignore "^5.3.2" - jiti "^1.21.6" + ignore "^6.0.2" + jiti "^2.4.0" klona "^2.0.6" knitwork "^1.1.0" - mlly "^1.7.1" + mlly "^1.7.2" pathe "^1.1.2" - pkg-types "^1.2.0" + pkg-types "^1.2.1" scule "^1.3.0" semver "^7.6.3" ufo "^1.5.4" unctx "^2.3.1" - unimport "^3.11.1" - untyped "^1.4.2" + unimport "^3.13.1" + untyped "^1.5.1" "@nuxt/module-builder@^0.5.4": version "0.5.5" @@ -1129,85 +982,88 @@ pathe "^1.1.1" unbuild "^2.0.0" -"@nuxt/schema@3.13.1", "@nuxt/schema@^3.13.0": - version "3.13.1" - resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.13.1.tgz#a60ccb53457dec085b4aa69b6b5a6683618af328" - integrity sha512-ishbhzVGspjshG9AG0hYnKYY6LWXzCtua7OXV7C/DQ2yA7rRcy1xHpzKZUDbIRyxCHHCAcBd8jfHEUmEuhEPrA== +"@nuxt/schema@3.14.159", "@nuxt/schema@^3.13.2": + version "3.14.159" + resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.159.tgz#c9e9a18f090fe44281d4b9f567474610d60ec1f9" + integrity sha512-ggXA3F2f9udQoEy5WwrY6bTMvpDaErUYRLSEzdMqqCqjOQ5manfFgfuScGj3ooZiXLIX2TGLVTzcll4nnpDlnQ== dependencies: + c12 "^2.0.1" compatx "^0.1.8" consola "^3.2.3" defu "^6.1.4" hookable "^5.5.3" pathe "^1.1.2" - pkg-types "^1.2.0" + pkg-types "^1.2.1" scule "^1.3.0" std-env "^3.7.0" ufo "^1.5.4" uncrypto "^0.1.3" - unimport "^3.11.1" - untyped "^1.4.2" + unimport "^3.13.1" + untyped "^1.5.1" -"@nuxt/telemetry@^2.5.4": - version "2.5.4" - resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-2.5.4.tgz#a395be090cef23de14204cd7b4e1a9faf81e1838" - integrity sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ== +"@nuxt/telemetry@^2.6.0": + version "2.6.0" + resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-2.6.0.tgz#f8b06aa804c8224bbd0762a765363df1968dd01c" + integrity sha512-h4YJ1d32cU7tDKjjhjtIIEck4WF/w3DTQBT348E9Pz85YLttnLqktLM0Ez9Xc2LzCeUgBDQv1el7Ob/zT3KUqg== dependencies: - "@nuxt/kit" "^3.11.2" + "@nuxt/kit" "^3.13.1" ci-info "^4.0.0" consola "^3.2.3" create-require "^1.1.1" defu "^6.1.4" destr "^2.0.3" dotenv "^16.4.5" - git-url-parse "^14.0.0" + git-url-parse "^15.0.0" is-docker "^3.0.0" - jiti "^1.21.0" + jiti "^1.21.6" mri "^1.2.0" nanoid "^5.0.7" ofetch "^1.3.4" + package-manager-detector "^0.2.0" parse-git-config "^3.0.0" pathe "^1.1.2" rc9 "^2.1.2" std-env "^3.7.0" -"@nuxt/vite-builder@3.13.1": - version "3.13.1" - resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.13.1.tgz#c57ce35736bdbfa6f53be5e37a5c2706a02702a0" - integrity sha512-qH5p5K7lMfFc5L9um3Q7sLb5mvrLHfPTqljZKkEVVEhenz08a33aUPgaKhvd6rJOgW8Z0uh8BS2EoStBK2sSog== +"@nuxt/vite-builder@3.14.159": + version "3.14.159" + resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.14.159.tgz#85d5d3e2768e315c2c1a484df78f1ff03d35eced" + integrity sha512-V3FJnDNR3tCAYeYmxxPsAWuMq6z5mZi8KPWO+lrO/Z8LqfD3+uYpluzUtzj0S1IIhCERmHe4rUNzr67RqSTL2Q== dependencies: - "@nuxt/kit" "3.13.1" - "@rollup/plugin-replace" "^5.0.7" - "@vitejs/plugin-vue" "^5.1.3" + "@nuxt/kit" "3.14.159" + "@rollup/plugin-replace" "^6.0.1" + "@vitejs/plugin-vue" "^5.1.4" "@vitejs/plugin-vue-jsx" "^4.0.1" autoprefixer "^10.4.20" clear "^0.1.0" consola "^3.2.3" - cssnano "^7.0.5" + cssnano "^7.0.6" defu "^6.1.4" - esbuild "^0.23.1" + esbuild "^0.24.0" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" externality "^1.0.2" get-port-please "^3.1.2" - h3 "^1.12.0" + h3 "^1.13.0" + jiti "^2.4.0" knitwork "^1.1.0" - magic-string "^0.30.11" - mlly "^1.7.1" - ohash "^1.1.3" + magic-string "^0.30.12" + mlly "^1.7.2" + ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.2.0" - postcss "^8.4.44" + pkg-types "^1.2.1" + postcss "^8.4.47" rollup-plugin-visualizer "^5.12.0" std-env "^3.7.0" strip-literal "^2.1.0" ufo "^1.5.4" unenv "^1.10.0" - unplugin "^1.12.3" - vite "^5.4.3" - vite-node "^2.0.5" - vite-plugin-checker "^0.7.2" - vue-bundle-renderer "^2.1.0" + unplugin "^1.15.0" + vite "^5.4.10" + vite-node "^2.1.4" + vite-plugin-checker "^0.8.0" + vue-bundle-renderer "^2.1.1" "@nuxtjs/eslint-config-typescript@^12.0.0": version "12.1.0" @@ -1236,122 +1092,129 @@ local-pkg "^0.4.2" "@nuxtjs/tailwindcss@^6.0.0": - version "6.12.1" - resolved "https://registry.yarnpkg.com/@nuxtjs/tailwindcss/-/tailwindcss-6.12.1.tgz#9871b234385c2b97fc84306415a6c6163f150278" - integrity sha512-UKmaPRVpxlFqLorhL6neEba2tySlsj6w6yDb7jzS6A0AAjyBQ6k3BQqWO+AaTy2iQLX7eR+1yj3/w43HzY8RtA== + version "6.12.2" + resolved "https://registry.yarnpkg.com/@nuxtjs/tailwindcss/-/tailwindcss-6.12.2.tgz#3fa41b0b9361cd69ec14934f800e66225b3c9e1f" + integrity sha512-qPJiFH67CkTj/2kBGBzqXihOD1rQXMsbVS4vdQvfBxOBLPfGhU1yw7AATdhPl2BBjO2krjJLuZj39t7dnDYOwg== dependencies: - "@nuxt/kit" "^3.12.3" - autoprefixer "^10.4.19" + "@nuxt/kit" "^3.13.2" + autoprefixer "^10.4.20" consola "^3.2.3" defu "^6.1.4" - h3 "^1.12.0" + h3 "^1.13.0" + klona "^2.0.6" pathe "^1.1.2" - postcss "^8.4.38" - postcss-nesting "^12.1.5" + postcss "^8.4.47" + postcss-nesting "^13.0.0" tailwind-config-viewer "^2.0.4" - tailwindcss "~3.4.4" - ufo "^1.5.3" + tailwindcss "~3.4.13" + ufo "^1.5.4" unctx "^2.3.1" -"@parcel/watcher-android-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84" - integrity sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg== +"@parcel/watcher-android-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz#e32d3dda6647791ee930556aee206fcd5ea0fb7a" + integrity sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ== -"@parcel/watcher-darwin-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz#c817c7a3b4f3a79c1535bfe54a1c2818d9ffdc34" - integrity sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA== +"@parcel/watcher-darwin-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz#0d9e680b7e9ec1c8f54944f1b945aa8755afb12f" + integrity sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw== -"@parcel/watcher-darwin-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz#1a3f69d9323eae4f1c61a5f480a59c478d2cb020" - integrity sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg== +"@parcel/watcher-darwin-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz#f9f1d5ce9d5878d344f14ef1856b7a830c59d1bb" + integrity sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA== -"@parcel/watcher-freebsd-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz#0d67fef1609f90ba6a8a662bc76a55fc93706fc8" - integrity sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w== +"@parcel/watcher-freebsd-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz#2b77f0c82d19e84ff4c21de6da7f7d096b1a7e82" + integrity sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw== -"@parcel/watcher-linux-arm-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz#ce5b340da5829b8e546bd00f752ae5292e1c702d" - integrity sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA== +"@parcel/watcher-linux-arm-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz#92ed322c56dbafa3d2545dcf2803334aee131e42" + integrity sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA== -"@parcel/watcher-linux-arm64-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz#6d7c00dde6d40608f9554e73998db11b2b1ff7c7" - integrity sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA== +"@parcel/watcher-linux-arm-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz#cd48e9bfde0cdbbd2ecd9accfc52967e22f849a4" + integrity sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA== -"@parcel/watcher-linux-arm64-musl@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz#bd39bc71015f08a4a31a47cd89c236b9d6a7f635" - integrity sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA== +"@parcel/watcher-linux-arm64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz#7b81f6d5a442bb89fbabaf6c13573e94a46feb03" + integrity sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA== -"@parcel/watcher-linux-x64-glibc@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz#0ce29966b082fb6cdd3de44f2f74057eef2c9e39" - integrity sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg== +"@parcel/watcher-linux-arm64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz#dcb8ff01077cdf59a18d9e0a4dff7a0cfe5fd732" + integrity sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q== -"@parcel/watcher-linux-x64-musl@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz#d2ebbf60e407170bb647cd6e447f4f2bab19ad16" - integrity sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ== +"@parcel/watcher-linux-x64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz#2e254600fda4e32d83942384d1106e1eed84494d" + integrity sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw== + +"@parcel/watcher-linux-x64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz#01fcea60fedbb3225af808d3f0a7b11229792eef" + integrity sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA== "@parcel/watcher-wasm@^2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz#c4353e4fdb96ee14389856f7f6f6d21b7dcef9e1" - integrity sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA== + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.5.0.tgz#81fad1e10957f08a532eb4fc0d4c353cd8901a50" + integrity sha512-Z4ouuR8Pfggk1EYYbTaIoxc+Yv4o7cGQnH0Xy8+pQ+HbiW+ZnwhcD2LPf/prfq1nIWpAxjOkQ8uSMFWMtBLiVQ== dependencies: is-glob "^4.0.3" micromatch "^4.0.5" napi-wasm "^1.1.0" -"@parcel/watcher-win32-arm64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz#eb4deef37e80f0b5e2f215dd6d7a6d40a85f8adc" - integrity sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg== +"@parcel/watcher-win32-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz#87cdb16e0783e770197e52fb1dc027bb0c847154" + integrity sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig== -"@parcel/watcher-win32-ia32@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz#94fbd4b497be39fd5c8c71ba05436927842c9df7" - integrity sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw== +"@parcel/watcher-win32-ia32@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz#778c39b56da33e045ba21c678c31a9f9d7c6b220" + integrity sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA== -"@parcel/watcher-win32-x64@2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz#4bf920912f67cae5f2d264f58df81abfea68dadf" - integrity sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A== +"@parcel/watcher-win32-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz#33873876d0bbc588aacce38e90d1d7480ce81cb7" + integrity sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw== "@parcel/watcher@^2.4.1": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.4.1.tgz#a50275151a1bb110879c6123589dba90c19f1bf8" - integrity sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA== + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.0.tgz#5c88818b12b8de4307a9d3e6dc3e28eba0dfbd10" + integrity sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ== dependencies: detect-libc "^1.0.3" is-glob "^4.0.3" micromatch "^4.0.5" node-addon-api "^7.0.0" optionalDependencies: - "@parcel/watcher-android-arm64" "2.4.1" - "@parcel/watcher-darwin-arm64" "2.4.1" - "@parcel/watcher-darwin-x64" "2.4.1" - "@parcel/watcher-freebsd-x64" "2.4.1" - "@parcel/watcher-linux-arm-glibc" "2.4.1" - "@parcel/watcher-linux-arm64-glibc" "2.4.1" - "@parcel/watcher-linux-arm64-musl" "2.4.1" - "@parcel/watcher-linux-x64-glibc" "2.4.1" - "@parcel/watcher-linux-x64-musl" "2.4.1" - "@parcel/watcher-win32-arm64" "2.4.1" - "@parcel/watcher-win32-ia32" "2.4.1" - "@parcel/watcher-win32-x64" "2.4.1" + "@parcel/watcher-android-arm64" "2.5.0" + "@parcel/watcher-darwin-arm64" "2.5.0" + "@parcel/watcher-darwin-x64" "2.5.0" + "@parcel/watcher-freebsd-x64" "2.5.0" + "@parcel/watcher-linux-arm-glibc" "2.5.0" + "@parcel/watcher-linux-arm-musl" "2.5.0" + "@parcel/watcher-linux-arm64-glibc" "2.5.0" + "@parcel/watcher-linux-arm64-musl" "2.5.0" + "@parcel/watcher-linux-x64-glibc" "2.5.0" + "@parcel/watcher-linux-x64-musl" "2.5.0" + "@parcel/watcher-win32-arm64" "2.5.0" + "@parcel/watcher-win32-ia32" "2.5.0" + "@parcel/watcher-win32-x64" "2.5.0" "@pinia/nuxt@^0.5.0": - version "0.5.4" - resolved "https://registry.yarnpkg.com/@pinia/nuxt/-/nuxt-0.5.4.tgz#4c6109711bb866deafeea4908f139082d75456c3" - integrity sha512-nNEs2pq6+Ji5qIyRwmeD9LUdctL8aJ8QMVLTYxUc16cXEOcIIN+MSA8Xudsd0lVETYgEAROT5HiBHnOYRDY3yQ== + version "0.5.5" + resolved "https://registry.yarnpkg.com/@pinia/nuxt/-/nuxt-0.5.5.tgz#0e156bbb86b3ccb087006ff505bc0c1b6522e8c3" + integrity sha512-wjxS7YqIesh4OLK+qE3ZjhdOJ5pYZQ+VlEmZNtTwzQn1Kavei/khovx7mzXVXNA/mvSPXVhb9xBzhyS3XMURtw== dependencies: "@nuxt/kit" "^3.9.0" - pinia "^2.2.2" + pinia "^2.2.3" "@pkgjs/parseargs@^0.11.0": version "0.11.0" @@ -1359,9 +1222,41 @@ integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== "@polka/url@^1.0.0-next.24": - version "1.0.0-next.25" - resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.25.tgz#f077fdc0b5d0078d30893396ff4827a13f99e817" - integrity sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ== + version "1.0.0-next.28" + resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.28.tgz#d45e01c4a56f143ee69c54dd6b12eade9e270a73" + integrity sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw== + +"@redocly/ajv@^8.11.2": + version "8.11.2" + resolved "https://registry.yarnpkg.com/@redocly/ajv/-/ajv-8.11.2.tgz#46e1bf321ec0ac1e0fd31dea41a3d1fcbdcda0b5" + integrity sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js-replace "^1.0.1" + +"@redocly/config@^0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@redocly/config/-/config-0.16.0.tgz#4b7700a5cb6e04bc6d6fdb94b871c9e260a1fba6" + integrity sha512-t9jnODbUcuANRSl/K4L9nb12V+U5acIHnVSl26NWrtSdDZVtoqUXk2yGFPZzohYf62cCfEQUT8ouJ3bhPfpnJg== + +"@redocly/openapi-core@^1.25.9": + version "1.25.11" + resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.25.11.tgz#93f168284986da6809363b001e9aa7c2104c2fc0" + integrity sha512-bH+a8izQz4fnKROKoX3bEU8sQ9rjvEIZOqU6qTmxlhOJ0NsKa5e+LmU18SV0oFeg5YhWQhhEDihXkvKJ1wMMNQ== + dependencies: + "@redocly/ajv" "^8.11.2" + "@redocly/config" "^0.16.0" + colorette "^1.2.0" + https-proxy-agent "^7.0.4" + js-levenshtein "^1.1.6" + js-yaml "^4.1.0" + lodash.isequal "^4.5.0" + minimatch "^5.0.1" + node-fetch "^2.6.1" + pluralize "^8.0.0" + yaml-ast-parser "0.0.43" "@refactorjs/ofetch@latest": version "1.1.1" @@ -1378,14 +1273,12 @@ resolved "https://registry.yarnpkg.com/@refactorjs/serialize/-/serialize-1.0.7.tgz#413bc69ff7bc8790859bd4e46a9be9e8608a07c4" integrity sha512-6fdXkxp06pZ/E8YjxxCBm0gF234VadKvma2ut1vNkG991IDOnCr0DjIlxKmB44yg0hSMYfiG9s6rMOKg03WDSg== -"@rollup/plugin-alias@^5.0.0", "@rollup/plugin-alias@^5.1.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz#99a94accc4ff9a3483be5baeedd5d7da3b597e93" - integrity sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ== - dependencies: - slash "^4.0.0" +"@rollup/plugin-alias@^5.0.0", "@rollup/plugin-alias@^5.1.1": + version "5.1.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-5.1.1.tgz#53601d88cda8b1577aa130b4a6e452283605bf26" + integrity sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ== -"@rollup/plugin-commonjs@^25.0.4", "@rollup/plugin-commonjs@^25.0.8": +"@rollup/plugin-commonjs@^25.0.4": version "25.0.8" resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.8.tgz#c77e608ab112a666b7f2a6bea625c73224f7dd34" integrity sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A== @@ -1397,6 +1290,19 @@ is-reference "1.2.1" magic-string "^0.30.3" +"@rollup/plugin-commonjs@^28.0.1": + version "28.0.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.1.tgz#e2138e31cc0637676dc3d5cae7739131f7cd565e" + integrity sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA== + dependencies: + "@rollup/pluginutils" "^5.0.1" + commondir "^1.0.1" + estree-walker "^2.0.2" + fdir "^6.2.0" + is-reference "1.2.1" + magic-string "^0.30.3" + picomatch "^4.0.2" + "@rollup/plugin-inject@^5.0.5": version "5.0.5" resolved "https://registry.yarnpkg.com/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz#616f3a73fe075765f91c5bec90176608bed277a3" @@ -1413,19 +1319,18 @@ dependencies: "@rollup/pluginutils" "^5.1.0" -"@rollup/plugin-node-resolve@^15.2.1", "@rollup/plugin-node-resolve@^15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz#e5e0b059bd85ca57489492f295ce88c2d4b0daf9" - integrity sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ== +"@rollup/plugin-node-resolve@^15.2.1", "@rollup/plugin-node-resolve@^15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.0.tgz#efbb35515c9672e541c08d59caba2eff492a55d5" + integrity sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag== dependencies: "@rollup/pluginutils" "^5.0.1" "@types/resolve" "1.20.2" deepmerge "^4.2.2" - is-builtin-module "^3.2.1" is-module "^1.0.0" resolve "^1.22.1" -"@rollup/plugin-replace@^5.0.2", "@rollup/plugin-replace@^5.0.7": +"@rollup/plugin-replace@^5.0.2": version "5.0.7" resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.7.tgz#150c9ee9db8031d9e4580a61a0edeaaed3d37687" integrity sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ== @@ -1433,6 +1338,14 @@ "@rollup/pluginutils" "^5.0.1" magic-string "^0.30.3" +"@rollup/plugin-replace@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-6.0.1.tgz#547e238f7db994ebe63dd5329ec46ffccf696029" + integrity sha512-2sPh9b73dj5IxuMmDAsQWVFT7mR+yoHweBaXG2W/R8vQ+IWZlnaI7BR7J6EguVQUp1hd8Z7XuozpDjEKQAAC2Q== + dependencies: + "@rollup/pluginutils" "^5.0.1" + magic-string "^0.30.3" + "@rollup/plugin-terser@^0.4.4": version "0.4.4" resolved "https://registry.yarnpkg.com/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz#15dffdb3f73f121aa4fbb37e7ca6be9aeea91962" @@ -1450,94 +1363,104 @@ estree-walker "^2.0.1" picomatch "^2.2.2" -"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.3", "@rollup/pluginutils@^5.1.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" - integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== +"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.3", "@rollup/pluginutils@^5.1.0", "@rollup/pluginutils@^5.1.2", "@rollup/pluginutils@^5.1.3": + version "5.1.3" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.3.tgz#3001bf1a03f3ad24457591f2c259c8e514e0dbdf" + integrity sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A== dependencies: "@types/estree" "^1.0.0" estree-walker "^2.0.2" - picomatch "^2.3.1" + picomatch "^4.0.2" -"@rollup/rollup-android-arm-eabi@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.2.tgz#0412834dc423d1ff7be4cb1fc13a86a0cd262c11" - integrity sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg== - -"@rollup/rollup-android-arm64@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.2.tgz#baf1a014b13654f3b9e835388df9caf8c35389cb" - integrity sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA== - -"@rollup/rollup-darwin-arm64@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.2.tgz#0a2c364e775acdf1172fe3327662eec7c46e55b1" - integrity sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q== - -"@rollup/rollup-darwin-x64@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.2.tgz#a972db75890dfab8df0da228c28993220a468c42" - integrity sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w== - -"@rollup/rollup-linux-arm-gnueabihf@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.2.tgz#1609d0630ef61109dd19a278353e5176d92e30a1" - integrity sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w== - -"@rollup/rollup-linux-arm-musleabihf@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.2.tgz#3c1dca5f160aa2e79e4b20ff6395eab21804f266" - integrity sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w== - -"@rollup/rollup-linux-arm64-gnu@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.2.tgz#c2fe376e8b04eafb52a286668a8df7c761470ac7" - integrity sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw== - -"@rollup/rollup-linux-arm64-musl@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.2.tgz#e62a4235f01e0f66dbba587c087ca6db8008ec80" - integrity sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w== - -"@rollup/rollup-linux-powerpc64le-gnu@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.2.tgz#24b3457e75ee9ae5b1c198bd39eea53222a74e54" - integrity sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ== - -"@rollup/rollup-linux-riscv64-gnu@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.2.tgz#38edfba9620fe2ca8116c97e02bd9f2d606bde09" - integrity sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg== - -"@rollup/rollup-linux-s390x-gnu@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.2.tgz#a3bfb8bc5f1e802f8c76cff4a4be2e9f9ac36a18" - integrity sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ== - -"@rollup/rollup-linux-x64-gnu@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.2.tgz#0dadf34be9199fcdda44b5985a086326344f30ad" - integrity sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw== - -"@rollup/rollup-linux-x64-musl@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.2.tgz#7b7deddce240400eb87f2406a445061b4fed99a8" - integrity sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg== - -"@rollup/rollup-win32-arm64-msvc@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.2.tgz#a0ca0c5149c2cfb26fab32e6ba3f16996fbdb504" - integrity sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ== - -"@rollup/rollup-win32-ia32-msvc@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.2.tgz#aae2886beec3024203dbb5569db3a137bc385f8e" - integrity sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw== - -"@rollup/rollup-win32-x64-msvc@4.21.2": - version "4.21.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz#e4291e3c1bc637083f87936c333cdbcad22af63b" - integrity sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA== +"@rollup/rollup-android-arm-eabi@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.25.0.tgz#3e7eda4c0c1de6d2415343002d742ff95e38dca7" + integrity sha512-CC/ZqFZwlAIbU1wUPisHyV/XRc5RydFrNLtgl3dGYskdwPZdt4HERtKm50a/+DtTlKeCq9IXFEWR+P6blwjqBA== + +"@rollup/rollup-android-arm64@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.25.0.tgz#04f679231acf7284f1f8a1f7250d0e0944865ba8" + integrity sha512-/Y76tmLGUJqVBXXCfVS8Q8FJqYGhgH4wl4qTA24E9v/IJM0XvJCGQVSW1QZ4J+VURO9h8YCa28sTFacZXwK7Rg== + +"@rollup/rollup-darwin-arm64@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.25.0.tgz#ecea723041621747d0772af93b54752edf26467a" + integrity sha512-YVT6L3UrKTlC0FpCZd0MGA7NVdp7YNaEqkENbWQ7AOVOqd/7VzyHpgIpc1mIaxRAo1ZsJRH45fq8j4N63I/vvg== + +"@rollup/rollup-darwin-x64@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.25.0.tgz#28e6e0687092f31e20982fc104779d48c643fc21" + integrity sha512-ZRL+gexs3+ZmmWmGKEU43Bdn67kWnMeWXLFhcVv5Un8FQcx38yulHBA7XR2+KQdYIOtD0yZDWBCudmfj6lQJoA== + +"@rollup/rollup-freebsd-arm64@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.25.0.tgz#99e9173b8aef3d1ef086983da70413988206e530" + integrity sha512-xpEIXhiP27EAylEpreCozozsxWQ2TJbOLSivGfXhU4G1TBVEYtUPi2pOZBnvGXHyOdLAUUhPnJzH3ah5cqF01g== + +"@rollup/rollup-freebsd-x64@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.25.0.tgz#f3a1ef941f8d3c6b2b036484c69a7b2d3d9ebbd7" + integrity sha512-sC5FsmZGlJv5dOcURrsnIK7ngc3Kirnx3as2XU9uER+zjfyqIjdcMVgzy4cOawhsssqzoAX19qmxgJ8a14Qrqw== + +"@rollup/rollup-linux-arm-gnueabihf@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.25.0.tgz#9ba6adcc33f26f2a0c6ee658f0bbda4de8da2f75" + integrity sha512-uD/dbLSs1BEPzg564TpRAQ/YvTnCds2XxyOndAO8nJhaQcqQGFgv/DAVko/ZHap3boCvxnzYMa3mTkV/B/3SWA== + +"@rollup/rollup-linux-arm-musleabihf@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.25.0.tgz#62f2426fa9016ec884f4fa779d7b62d5ba02a41a" + integrity sha512-ZVt/XkrDlQWegDWrwyC3l0OfAF7yeJUF4fq5RMS07YM72BlSfn2fQQ6lPyBNjt+YbczMguPiJoCfaQC2dnflpQ== + +"@rollup/rollup-linux-arm64-gnu@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.25.0.tgz#f98ec111a231d35e0c6d3404e3d80f67f9d5b9f8" + integrity sha512-qboZ+T0gHAW2kkSDPHxu7quaFaaBlynODXpBVnPxUgvWYaE84xgCKAPEYE+fSMd3Zv5PyFZR+L0tCdYCMAtG0A== + +"@rollup/rollup-linux-arm64-musl@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.25.0.tgz#4b36ffb8359f959f2c29afd187603c53368b6723" + integrity sha512-ndWTSEmAaKr88dBuogGH2NZaxe7u2rDoArsejNslugHZ+r44NfWiwjzizVS1nUOHo+n1Z6qV3X60rqE/HlISgw== + +"@rollup/rollup-linux-powerpc64le-gnu@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.25.0.tgz#52f4b39e6783505d168a745b79d86474fde71680" + integrity sha512-BVSQvVa2v5hKwJSy6X7W1fjDex6yZnNKy3Kx1JGimccHft6HV0THTwNtC2zawtNXKUu+S5CjXslilYdKBAadzA== + +"@rollup/rollup-linux-riscv64-gnu@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.25.0.tgz#49195be7e6a7d68d482b12461e2ea914e31ff977" + integrity sha512-G4hTREQrIdeV0PE2JruzI+vXdRnaK1pg64hemHq2v5fhv8C7WjVaeXc9P5i4Q5UC06d/L+zA0mszYIKl+wY8oA== + +"@rollup/rollup-linux-s390x-gnu@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.25.0.tgz#4b8d50a205eac7b46cdcb9c50d4a6ae5994c02e0" + integrity sha512-9T/w0kQ+upxdkFL9zPVB6zy9vWW1deA3g8IauJxojN4bnz5FwSsUAD034KpXIVX5j5p/rn6XqumBMxfRkcHapQ== + +"@rollup/rollup-linux-x64-gnu@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.25.0.tgz#dfcceebc5ccac7fc2db19471996026258c81b55f" + integrity sha512-ThcnU0EcMDn+J4B9LD++OgBYxZusuA7iemIIiz5yzEcFg04VZFzdFjuwPdlURmYPZw+fgVrFzj4CA64jSTG4Ig== + +"@rollup/rollup-linux-x64-musl@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.25.0.tgz#192f78bad8429711d63a31dc0a7d3312e2df850e" + integrity sha512-zx71aY2oQxGxAT1JShfhNG79PnjYhMC6voAjzpu/xmMjDnKNf6Nl/xv7YaB/9SIa9jDYf8RBPWEnjcdlhlv1rQ== + +"@rollup/rollup-win32-arm64-msvc@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.25.0.tgz#f4ec076579634f780b4e5896ae7f59f3e38e0c60" + integrity sha512-JT8tcjNocMs4CylWY/CxVLnv8e1lE7ff1fi6kbGocWwxDq9pj30IJ28Peb+Y8yiPNSF28oad42ApJB8oUkwGww== + +"@rollup/rollup-win32-ia32-msvc@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.25.0.tgz#5458eab1929827e4f805cefb90bd09ecf7eeed2b" + integrity sha512-dRLjLsO3dNOfSN6tjyVlG+Msm4IiZnGkuZ7G5NmpzwF9oOc582FZG05+UdfTbz5Jd4buK/wMb6UeHFhG18+OEg== + +"@rollup/rollup-win32-x64-msvc@4.25.0": + version "4.25.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.25.0.tgz#93415e7e707e4b156d77c5950b983b58f4bc33f3" + integrity sha512-/RqrIFtLB926frMhZD0a5oDa4eFIbyNEwLLloMTEjmqfwZWXywwVVOVmwTsuyhC9HKkVEZcOOi+KV4U9wmOdlg== "@rtsao/scc@^1.1.0": version "1.1.0" @@ -1554,12 +1477,12 @@ resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== -"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" - integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== +"@types/estree@*", "@types/estree@1.0.6", "@types/estree@^1.0.0": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== -"@types/http-proxy@^1.17.14": +"@types/http-proxy@^1.17.15": version "1.17.15" resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.15.tgz#12118141ce9775a6499ecb4c01d02f90fc839d36" integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ== @@ -1576,17 +1499,12 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== -"@types/lodash@^4.14.175": - version "4.17.7" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.7.tgz#2f776bcb53adc9e13b2c0dfd493dfcbd7de43612" - integrity sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA== - "@types/node@*": - version "22.5.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.3.tgz#91a374e42c6e7ccb5893a87f1775f36ce1671d65" - integrity sha512-njripolh85IA9SQGTAqbmnNZTdxv7X/4OYGPz8tgy5JDr8MP+uDBa921GpYEoDDnwm0Hmn5ZPeJgiiSTPoOzkQ== + version "22.9.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.9.0.tgz#b7f16e5c3384788542c72dc3d561a7ceae2c0365" + integrity sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ== dependencies: - undici-types "~6.19.2" + undici-types "~6.19.8" "@types/normalize-package-data@^2.4.0": version "2.4.4" @@ -1699,78 +1617,79 @@ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== -"@unhead/dom@1.10.4", "@unhead/dom@^1.10.4": - version "1.10.4" - resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.10.4.tgz#c26bd4c5e6849f03624085b35018756de9430cdc" - integrity sha512-ehMy9k6efo4GTLmiP27wCtywWYdiggrP3m7h6kD/d1uhfORH3yCgsd4yXQnmDoSbsMyX6GlY5DBzy5bnYPp/Xw== +"@unhead/dom@1.11.11", "@unhead/dom@^1.11.11": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.11.11.tgz#74569a280d7b9f013813aef8dee4705cb011e58a" + integrity sha512-4YwziCH5CmjvUzSGdZ4Klj6BqhLSTNZooA9kt47yDxj4Qw9uHqVnXwWWupYsVdIYPNsw1tR2AkHveg82y1Fn3A== dependencies: - "@unhead/schema" "1.10.4" - "@unhead/shared" "1.10.4" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" -"@unhead/schema@1.10.4": - version "1.10.4" - resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.10.4.tgz#da1af88f5426d6589bc6f7ffdd6cb5b8e62183c5" - integrity sha512-nX9sJgKPy2t4GHB9ky/vkMLbYqXl9Num5NZToTr0rKrIGkshzHhUrbn/EiHreIjcGI1eIpu+edniCDIwGTJgmw== +"@unhead/schema@1.11.11": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.11.11.tgz#28c5dbe923fce0948badca998934c322f5a1c096" + integrity sha512-xSGsWHPBYcMV/ckQeImbrVu6ddeRnrdDCgXUKv3xIjGBY+ob/96V80lGX8FKWh8GwdFSwhblISObKlDAt5K9ZQ== dependencies: hookable "^5.5.3" zhead "^2.2.4" -"@unhead/shared@1.10.4": - version "1.10.4" - resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.10.4.tgz#cbde209ebec1963a3742d67fcb01f97b33b710b4" - integrity sha512-C5wsps9i/XCBObMVQUrbXPvZG17a/e5yL0IsxpICaT4QSiZAj9v7JrNQ5WpM5JOZVMKRI5MYRdafNDw3iSmqZg== +"@unhead/shared@1.11.11", "@unhead/shared@^1.11.11": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.11.11.tgz#1ec0ec744edce31808256801ce13efd369fa6d62" + integrity sha512-RfdvUskPn90ipO+PmR98jKZ8Lsx1uuzscOenO5xcrMrtWGhlLWaEBIrbvFOvX5PZ/u8/VNMJChTXGDUjEtHmlg== dependencies: - "@unhead/schema" "1.10.4" + "@unhead/schema" "1.11.11" -"@unhead/ssr@^1.10.4": - version "1.10.4" - resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.10.4.tgz#e2ec53a06055afe4b48e3762b4160152ec0a5b69" - integrity sha512-2nDG08q9bTvMB24YGNJCXimAs1vuG9yVa01i/Et1B2y4P8qhweXOxnialGmt5j8xeXwPFUBCe36tC5kLCSuJoQ== +"@unhead/ssr@^1.11.11": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.11.11.tgz#2af7d9a8042082c301976878021b14335d2fbe86" + integrity sha512-NQC8y+4ldwkMr3x8WFwv3+OR6g+Sj7dwL6J/3ST25KnvlwDSub2KGbnm2hF1x8vTpTmXTVxMA3GDRL9MRfLvMg== dependencies: - "@unhead/schema" "1.10.4" - "@unhead/shared" "1.10.4" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" -"@unhead/vue@^1.10.4": - version "1.10.4" - resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.10.4.tgz#8c566b522a184b969039552c6df69b1d16bc3e48" - integrity sha512-Q45F/KOvDeitc8GkfkPY45V8Dmw1m1b9A/aHM5A2BwRV8GyoRV+HRWVw5h02e0AO1TsICvcW8tI90qeCM2oGSA== +"@unhead/vue@^1.11.11": + version "1.11.11" + resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.11.11.tgz#226ee5dda055c005ff2569fb5c2cbc91cf76acdc" + integrity sha512-AxsHHauZ+w0m2irwDHqkc3GdNChMLBtolk8CN3IAZM6vTwH0EbPXlFCFcIk4WwkH0opG+R2GlKTThr5H0HLm7g== dependencies: - "@unhead/schema" "1.10.4" - "@unhead/shared" "1.10.4" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" + defu "^6.1.4" hookable "^5.5.3" - unhead "1.10.4" + unhead "1.11.11" -"@vercel/nft@^0.26.5": - version "0.26.5" - resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.26.5.tgz#f21e40576b76446851b6cbff79f39a72dab4d6b2" - integrity sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ== +"@vercel/nft@^0.27.5": + version "0.27.6" + resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.27.6.tgz#4fffb7ad4ffdb70698213cfd67596be5e9cdfb6c" + integrity sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg== dependencies: - "@mapbox/node-pre-gyp" "^1.0.5" + "@mapbox/node-pre-gyp" "^1.0.11" "@rollup/pluginutils" "^4.0.0" acorn "^8.6.0" - acorn-import-attributes "^1.9.2" + acorn-import-attributes "^1.9.5" async-sema "^3.1.1" bindings "^1.4.0" estree-walker "2.0.2" glob "^7.1.3" graceful-fs "^4.2.9" - micromatch "^4.0.2" + micromatch "^4.0.8" node-gyp-build "^4.2.2" resolve-from "^5.0.0" "@vitejs/plugin-vue-jsx@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.0.1.tgz#7be8a66da75ad412c30e57f43486fd2af20697c0" - integrity sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg== + version "4.1.0" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.1.0.tgz#16e048d1eebf74c2d431033d9ca82a74bbd73e5d" + integrity sha512-KuRejz7KAFvhXDzOudlaS2IyygAwoAEEMtHAdcRSy/8cA5iKH043Qudcz48zsC0M0vvN5iKwIwNMuWbBYn6/Yg== dependencies: - "@babel/core" "^7.24.7" - "@babel/plugin-transform-typescript" "^7.24.7" - "@vue/babel-plugin-jsx" "^1.2.2" + "@babel/core" "^7.26.0" + "@babel/plugin-transform-typescript" "^7.25.9" + "@vue/babel-plugin-jsx" "^1.2.5" -"@vitejs/plugin-vue@^5.1.3": - version "5.1.3" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz#42b55c1a4d6f329aea25c5a24db51a31db31c693" - integrity sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw== +"@vitejs/plugin-vue@^5.1.4": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.5.tgz#ef1d7e19f8cecb0d1301c987dc0bdf8b778e3c82" + integrity sha512-dlnib73G05CDBAUR/YpuZcQQ47fpjihnnNouAAqN62z+oqSsWJ+kh52GRzIxpkgFG3q11eXK7Di7RMmoCwISZA== "@vue-leaflet/vue-leaflet@^0.8.4": version "0.8.4" @@ -1778,115 +1697,121 @@ integrity sha512-FyD75jMKzBQCW4TrzRMrIBa8OwaUXaSeaDWJvp7FIjpZzk8niHBfpP+QirA/BT9536FJXviRkmwac3Z7YOQHKQ== "@vue-macros/common@^1.12.2": - version "1.12.2" - resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.12.2.tgz#ffaaf91c5fc2f2e8aee64bdfa75a559970793428" - integrity sha512-+NGfhrPvPNOb3Wg9PNPEXPe0HTXmVe6XJawL1gi3cIjOSGIhpOdvmMT2cRuWb265IpA/PeL5Sqo0+DQnEDxLvw== + version "1.15.0" + resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.15.0.tgz#42a97458698beca552a08c89e9680c3b6c5bb71b" + integrity sha512-yg5VqW7+HRfJGimdKvFYzx8zorHUYo0hzPwuraoC1DWa7HHazbTMoVsHDvk3JHa1SGfSL87fRnzmlvgjEHhszA== dependencies: - "@babel/types" "^7.25.0" - "@rollup/pluginutils" "^5.1.0" - "@vue/compiler-sfc" "^3.4.34" - ast-kit "^1.0.1" + "@babel/types" "^7.25.8" + "@rollup/pluginutils" "^5.1.2" + "@vue/compiler-sfc" "^3.5.12" + ast-kit "^1.3.0" local-pkg "^0.5.0" magic-string-ast "^0.6.2" -"@vue/babel-helper-vue-transform-on@1.2.2": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.2.tgz#7f1f817a4f00ad531651a8d1d22e22d9e42807ef" - integrity sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw== +"@vue/babel-helper-vue-transform-on@1.2.5": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.5.tgz#b9e195b92bfa8d15d5aa9581ca01cb702dbcc19d" + integrity sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw== -"@vue/babel-plugin-jsx@^1.1.5", "@vue/babel-plugin-jsx@^1.2.2": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.2.tgz#eb426fb4660aa510bb8d188ff0ec140405a97d8a" - integrity sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA== - dependencies: - "@babel/helper-module-imports" "~7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.23.3" - "@babel/template" "^7.23.9" - "@babel/traverse" "^7.23.9" - "@babel/types" "^7.23.9" - "@vue/babel-helper-vue-transform-on" "1.2.2" - "@vue/babel-plugin-resolve-type" "1.2.2" - camelcase "^6.3.0" +"@vue/babel-plugin-jsx@^1.1.5", "@vue/babel-plugin-jsx@^1.2.5": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.5.tgz#77f4f9f189d00c24ebd587ab84ae615dfa1c3abb" + integrity sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/plugin-syntax-jsx" "^7.24.7" + "@babel/template" "^7.25.0" + "@babel/traverse" "^7.25.6" + "@babel/types" "^7.25.6" + "@vue/babel-helper-vue-transform-on" "1.2.5" + "@vue/babel-plugin-resolve-type" "1.2.5" html-tags "^3.3.1" svg-tags "^1.0.0" -"@vue/babel-plugin-resolve-type@1.2.2": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.2.tgz#66844898561da6449e0f4a261b0c875118e0707b" - integrity sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A== +"@vue/babel-plugin-resolve-type@1.2.5": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.5.tgz#f6ed0d39987fe0158370659b73156c55e80d17b5" + integrity sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg== dependencies: - "@babel/code-frame" "^7.23.5" - "@babel/helper-module-imports" "~7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/parser" "^7.23.9" - "@vue/compiler-sfc" "^3.4.15" + "@babel/code-frame" "^7.24.7" + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/parser" "^7.25.6" + "@vue/compiler-sfc" "^3.5.3" -"@vue/compiler-core@3.5.1": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.1.tgz#995fc62dc3887a6c5ee2313b4e5472f3c11c0468" - integrity sha512-WdjF+NSgFYdWttHevHw5uaJFtKPalhmxhlu2uREj8cLP0uyKKIR60/JvSZNTp0x+NSd63iTiORQTx3+tt55NWQ== +"@vue/compiler-core@3.5.12": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.12.tgz#bd70b7dabd12b0b6f31bc53418ba3da77994c437" + integrity sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw== dependencies: "@babel/parser" "^7.25.3" - "@vue/shared" "3.5.1" + "@vue/shared" "3.5.12" entities "^4.5.0" estree-walker "^2.0.2" source-map-js "^1.2.0" -"@vue/compiler-dom@3.5.1", "@vue/compiler-dom@^3.3.4": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.1.tgz#016d468ba4c7b736df9c38d8cb81731aeaae95dd" - integrity sha512-Ao23fB1lINo18HLCbJVApvzd9OQe8MgmQSgyY5+umbWj2w92w9KykVmJ4Iv2US5nak3ixc2B+7Km7JTNhQ8kSQ== +"@vue/compiler-dom@3.5.12", "@vue/compiler-dom@^3.3.4": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.12.tgz#456d631d11102535b7ee6fd954cf2c93158d0354" + integrity sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg== dependencies: - "@vue/compiler-core" "3.5.1" - "@vue/shared" "3.5.1" + "@vue/compiler-core" "3.5.12" + "@vue/shared" "3.5.12" -"@vue/compiler-sfc@3.5.1", "@vue/compiler-sfc@^3.4.15", "@vue/compiler-sfc@^3.4.34": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.1.tgz#457a7309fa5006d490450c3d5410b9caf37949c2" - integrity sha512-DFizMNH8eDglLhlfwJ0+ciBsztaYe3fY/zcZjrqL1ljXvUw/UpC84M1d7HpBTCW68SNqZyIxrs1XWmf+73Y65w== +"@vue/compiler-sfc@3.5.12", "@vue/compiler-sfc@^3.5.12", "@vue/compiler-sfc@^3.5.3": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.12.tgz#6688120d905fcf22f7e44d3cb90f8dabc4dd3cc8" + integrity sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw== dependencies: "@babel/parser" "^7.25.3" - "@vue/compiler-core" "3.5.1" - "@vue/compiler-dom" "3.5.1" - "@vue/compiler-ssr" "3.5.1" - "@vue/shared" "3.5.1" + "@vue/compiler-core" "3.5.12" + "@vue/compiler-dom" "3.5.12" + "@vue/compiler-ssr" "3.5.12" + "@vue/shared" "3.5.12" estree-walker "^2.0.2" magic-string "^0.30.11" - postcss "^8.4.44" + postcss "^8.4.47" source-map-js "^1.2.0" -"@vue/compiler-ssr@3.5.1": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.1.tgz#a4dd4d1b47d60b80a529c46a847c7519401c1ba8" - integrity sha512-C1hpSHQgRM8bg+5XWWD7CkFaVpSn9wZHCLRd10AmxqrH17d4EMP6+XcZpwBOM7H1jeStU5naEapZZWX0kso1tQ== +"@vue/compiler-ssr@3.5.12": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.12.tgz#5f1a3fbd5c44b79a6dbe88729f7801d9c9218bde" + integrity sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA== dependencies: - "@vue/compiler-dom" "3.5.1" - "@vue/shared" "3.5.1" + "@vue/compiler-dom" "3.5.12" + "@vue/shared" "3.5.12" -"@vue/devtools-api@^6.6.1", "@vue/devtools-api@^6.6.3": - version "6.6.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.3.tgz#b23a588154cba8986bba82b6e1d0248bde3fd1a0" - integrity sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw== +"@vue/devtools-api@^6.6.3", "@vue/devtools-api@^6.6.4": + version "6.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz#cbe97fe0162b365edc1dba80e173f90492535343" + integrity sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g== -"@vue/devtools-core@7.3.3": - version "7.3.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.3.3.tgz#cadd65806ed2ddd80ae1dc6378abc48820abf850" - integrity sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g== +"@vue/devtools-api@^7.5.2": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-7.6.4.tgz#024bf0ecf543395844f4d97cff0a84f8f759b29d" + integrity sha512-5AaJ5ELBIuevmFMZYYLuOO9HUuY/6OlkOELHE7oeDhy4XD/hSODIzktlsvBOsn+bto3aD0psj36LGzwVu5Ip8w== dependencies: - "@vue/devtools-kit" "^7.3.3" - "@vue/devtools-shared" "^7.3.3" + "@vue/devtools-kit" "^7.6.4" + +"@vue/devtools-core@7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.4.4.tgz#20fdef8e846fce25ed98008011942505cf23bcd5" + integrity sha512-DLxgA3DfeADkRzhAfm3G2Rw/cWxub64SdP5b+s5dwL30+whOGj+QNhmyFpwZ8ZTrHDFRIPj0RqNzJ8IRR1pz7w== + dependencies: + "@vue/devtools-kit" "^7.4.4" + "@vue/devtools-shared" "^7.4.4" mitt "^3.0.1" nanoid "^3.3.4" pathe "^1.1.2" vite-hot-client "^0.2.3" -"@vue/devtools-kit@7.3.3": - version "7.3.3" - resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.3.3.tgz#7e1549fb9685fc033e560e1f69a2245c79406f84" - integrity sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g== +"@vue/devtools-kit@7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.4.4.tgz#f05e775e6e80636362a25c955c7c1291f990e456" + integrity sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw== dependencies: - "@vue/devtools-shared" "^7.3.3" + "@vue/devtools-shared" "^7.4.4" birpc "^0.2.17" hookable "^5.5.3" mitt "^3.0.1" @@ -1894,63 +1819,63 @@ speakingurl "^14.0.1" superjson "^2.2.1" -"@vue/devtools-kit@^7.3.3": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.4.4.tgz#f05e775e6e80636362a25c955c7c1291f990e456" - integrity sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw== +"@vue/devtools-kit@^7.4.4", "@vue/devtools-kit@^7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.6.4.tgz#2a74750d5604b6b3c2fe3388a454c9eac2c6c1f4" + integrity sha512-Zs86qIXXM9icU0PiGY09PQCle4TI750IPLmAJzW5Kf9n9t5HzSYf6Rz6fyzSwmfMPiR51SUKJh9sXVZu78h2QA== dependencies: - "@vue/devtools-shared" "^7.4.4" - birpc "^0.2.17" + "@vue/devtools-shared" "^7.6.4" + birpc "^0.2.19" hookable "^5.5.3" mitt "^3.0.1" perfect-debounce "^1.0.0" speakingurl "^14.0.1" superjson "^2.2.1" -"@vue/devtools-shared@^7.3.3", "@vue/devtools-shared@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.4.4.tgz#f841a99ed30ac3120f878de77e4721c964984976" - integrity sha512-yeJULXFHOKIm8yL2JFO050a9ztTVqOCKTqN9JHFxGTJN0b+gjtfn6zC+FfyHUgjwCwf6E3hfKrlohtthcqoYqw== +"@vue/devtools-shared@^7.4.4", "@vue/devtools-shared@^7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.6.4.tgz#110044c88bafee3b2daa992fd90730546dec7b11" + integrity sha512-nD6CUvBEel+y7zpyorjiUocy0nh77DThZJ0k1GRnJeOmY3ATq2fWijEp7wk37gb023Cb0R396uYh5qMSBQ5WFg== dependencies: rfdc "^1.4.1" -"@vue/reactivity@3.5.1": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.1.tgz#e4a57a038e3caaa9669de529533fcb16288a1736" - integrity sha512-aFE1nMDfbG7V+U5vdOk/NXxH/WX78XuAfX59vWmCM7Ao4lieoc83RkzOAWun61sQXlzNZ4IgROovFBHg+Iz1+Q== +"@vue/reactivity@3.5.12": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.12.tgz#a2815d91842ed7b9e7e7936c851923caf6b6e603" + integrity sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg== dependencies: - "@vue/shared" "3.5.1" + "@vue/shared" "3.5.12" -"@vue/runtime-core@3.5.1": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.1.tgz#a1208d91e9c1b900aa6cfc9dbfec76a5277393c3" - integrity sha512-Ce92CCholNRHR3ZtzpRp/7CDGIPFxQ7ElXt9iH91ilK5eOrUv3Z582NWJesuM3aYX71BujVG5/4ypUxigGNxjA== +"@vue/runtime-core@3.5.12": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.12.tgz#849207f203d0fd82971f19574d30dbe7134c78c7" + integrity sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw== dependencies: - "@vue/reactivity" "3.5.1" - "@vue/shared" "3.5.1" + "@vue/reactivity" "3.5.12" + "@vue/shared" "3.5.12" -"@vue/runtime-dom@3.5.1": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.1.tgz#24f506b827ef7799fe68f0eb045918808080d961" - integrity sha512-B/fUJfBLp5PwE0EWNfBYnA4JUea8Yufb3wN8fN0/HzaqBdkiRHh4sFHOjWqIY8GS75gj//8VqeEqhcU6yUjIkA== +"@vue/runtime-dom@3.5.12": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.12.tgz#6d4de3df49a90a460b311b1100baa5e2d0d1c8c9" + integrity sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA== dependencies: - "@vue/reactivity" "3.5.1" - "@vue/runtime-core" "3.5.1" - "@vue/shared" "3.5.1" + "@vue/reactivity" "3.5.12" + "@vue/runtime-core" "3.5.12" + "@vue/shared" "3.5.12" csstype "^3.1.3" -"@vue/server-renderer@3.5.1": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.1.tgz#e741418a267a645a88e0cd80f1cf24dfa9c5cc73" - integrity sha512-C5V/fjQTitgVaRNH5wCoHynaWysjZ+VH68drNsAvQYg4ArHsZUQNz0nHoEWRj41nzqkVn2RUlnWaEOTl2o1Ppg== +"@vue/server-renderer@3.5.12": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.12.tgz#79c6bc3860e4e4ef80d85653c5d03fd94b26574e" + integrity sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg== dependencies: - "@vue/compiler-ssr" "3.5.1" - "@vue/shared" "3.5.1" + "@vue/compiler-ssr" "3.5.12" + "@vue/shared" "3.5.12" -"@vue/shared@3.5.1", "@vue/shared@^3.5.0": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.1.tgz#f9418dae5ac194a4f19023d812978c21a15412a1" - integrity sha512-NdcTRoO4KuW2RSFgpE2c+E/R/ZHaRzWPxAGxhmxZaaqLh6nYCXx7lc9a88ioqOCxCaV2SFJmujkxbUScW7dNsQ== +"@vue/shared@3.5.12", "@vue/shared@^3.5.12": + version "3.5.12" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.12.tgz#f9e45b7f63f2c3f40d84237b1194b7f67de192e3" + integrity sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg== "@vuetify/loader-shared@^2.0.3": version "2.0.3" @@ -1959,36 +1884,36 @@ dependencies: upath "^2.0.1" -"@vueuse/core@11.0.3": - version "11.0.3" - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-11.0.3.tgz#e5fb5aa6580c6e505cecea43518fcb66cb56a3ef" - integrity sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw== +"@vueuse/core@11.2.0": + version "11.2.0" + resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-11.2.0.tgz#3fc6c0963051bb154dc4c08061889405e3fc745d" + integrity sha512-JIUwRcOqOWzcdu1dGlfW04kaJhW3EXnnjJJfLTtddJanymTL7lF1C0+dVVZ/siLfc73mWn+cGP1PE1PKPruRSA== dependencies: "@types/web-bluetooth" "^0.0.20" - "@vueuse/metadata" "11.0.3" - "@vueuse/shared" "11.0.3" + "@vueuse/metadata" "11.2.0" + "@vueuse/shared" "11.2.0" vue-demi ">=0.14.10" -"@vueuse/metadata@11.0.3": - version "11.0.3" - resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-11.0.3.tgz#f3f20066fb5217df24614de92162b65c24475e1b" - integrity sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q== +"@vueuse/metadata@11.2.0": + version "11.2.0" + resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-11.2.0.tgz#fd02cbbc7d08cb4592fceea0486559b89ae38643" + integrity sha512-L0ZmtRmNx+ZW95DmrgD6vn484gSpVeRbgpWevFKXwqqQxW9hnSi2Ppuh2BzMjnbv4aJRiIw8tQatXT9uOB23dQ== -"@vueuse/nuxt@^11.0.0": - version "11.0.3" - resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-11.0.3.tgz#0b7c013516333f39bbe35f39e5f96e55b3b448ad" - integrity sha512-1tZGM9lvFl6HqmSQNM6hsHbAzLkBitoh8RsVC8kIG/93d3Pb5dEqUdt1k+OfHyR8V2rfSOwCfJx+wlUTlY0A2g== +"@vueuse/nuxt@^11.1.0": + version "11.2.0" + resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-11.2.0.tgz#f0d2441004efccf5e80e3e16c196b6aad25966eb" + integrity sha512-4Mp1SXpXy8KRKY7lJqN4AuiMkun9IUVGt02t2SBk1hf/RVe4U6AIR2ukmHws0uYvjIGIhlGNv4o6ayTK/7ELWQ== dependencies: - "@nuxt/kit" "^3.13.0" - "@vueuse/core" "11.0.3" - "@vueuse/metadata" "11.0.3" + "@nuxt/kit" "^3.13.2" + "@vueuse/core" "11.2.0" + "@vueuse/metadata" "11.2.0" local-pkg "^0.5.0" vue-demi ">=0.14.10" -"@vueuse/shared@11.0.3": - version "11.0.3" - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-11.0.3.tgz#0e5519dcdc9ac0c6fc831c105a9e7ba7bda98628" - integrity sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA== +"@vueuse/shared@11.2.0": + version "11.2.0" + resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-11.2.0.tgz#7fb2f3cade6b6c00ef97e613f187ee9bdcfb9a3a" + integrity sha512-VxFjie0EanOudYSgMErxXfq6fo8vhr5ICI+BuE3I9FnX7ePllEsVrRQ7O6Q1TLgApeLuPKcHQxAXpP+KnlrJsg== dependencies: vue-demi ">=0.14.10" @@ -2012,7 +1937,7 @@ accepts@^1.3.5: mime-types "~2.1.34" negotiator "0.6.3" -acorn-import-attributes@^1.9.2: +acorn-import-attributes@^1.9.5: version "1.9.5" resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== @@ -2022,10 +1947,10 @@ acorn-jsx@^5.3.2: resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn@8.12.1, acorn@^8.11.3, acorn@^8.12.1, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: - version "8.12.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" - integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== +acorn@8.14.0, acorn@^8.12.1, acorn@^8.14.0, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== agent-base@6: version "6.0.2" @@ -2034,6 +1959,13 @@ agent-base@6: dependencies: debug "4" +agent-base@^7.0.2: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -2062,16 +1994,9 @@ ansi-regex@^5.0.1: integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" + version "6.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" + integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" @@ -2218,12 +2143,12 @@ arraybuffer.prototype.slice@^1.0.3: is-array-buffer "^3.0.4" is-shared-array-buffer "^1.0.2" -ast-kit@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-1.1.0.tgz#fe7c7eb44c8d01b1c7516f544d964e88f534f769" - integrity sha512-RlNqd4u6c/rJ5R+tN/ZTtyNrH8X0NHCvyt6gD8RHa3JjzxxHWoyaU0Ujk3Zjbh7IZqrYl1Sxm6XzZifmVxXxHQ== +ast-kit@^1.0.1, ast-kit@^1.3.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-1.3.1.tgz#ef2d490224f46224c4bd8550e5add03f57202463" + integrity sha512-3bIRV4s/cNAee2rKjuvYdoG+0CMqtOIgCvWrJL6zG8R0fDyMwYzStspX5JqXPbdMzM+qxHZ6g2rMHKhr3HkPlQ== dependencies: - "@babel/parser" "^7.25.3" + "@babel/parser" "^7.26.2" pathe "^1.1.2" ast-walker-scope@^0.6.2: @@ -2256,7 +2181,7 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -autoprefixer@^10.4.13, autoprefixer@^10.4.19, autoprefixer@^10.4.20: +autoprefixer@^10.4.13, autoprefixer@^10.4.20: version "10.4.20" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b" integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== @@ -2276,9 +2201,9 @@ available-typed-arrays@^1.0.7: possible-typed-array-names "^1.0.0" b4a@^1.6.4: - version "1.6.6" - resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.6.tgz#a4cc349a3851987c3c4ac2d7785c18744f6da9ba" - integrity sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg== + version "1.6.7" + resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.7.tgz#a99587d4ebbfbd5a6e3b21bdb5d5fa385767abe4" + integrity sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg== balanced-match@^1.0.0: version "1.0.2" @@ -2286,9 +2211,9 @@ balanced-match@^1.0.0: integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== bare-events@^2.2.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.4.2.tgz#3140cca7a0e11d49b3edc5041ab560659fd8e1f8" - integrity sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q== + version "2.5.0" + resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.5.0.tgz#305b511e262ffd8b9d5616b056464f8e1b3329cc" + integrity sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A== base64-js@^1.3.1: version "1.5.1" @@ -2307,10 +2232,10 @@ bindings@^1.4.0: dependencies: file-uri-to-path "1.0.0" -birpc@^0.2.17: - version "0.2.17" - resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.17.tgz#d0bdb90d4d063061156637f03b7b0adea1779734" - integrity sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg== +birpc@^0.2.17, birpc@^0.2.19: + version "0.2.19" + resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.19.tgz#cdd183a4a70ba103127d49765b4a71349da5a0ca" + integrity sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ== boolbase@^1.0.0: version "1.0.0" @@ -2339,15 +2264,15 @@ braces@^3.0.3, braces@~3.0.2: dependencies: fill-range "^7.1.1" -browserslist@^4.0.0, browserslist@^4.23.1, browserslist@^4.23.3: - version "4.23.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800" - integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA== +browserslist@^4.0.0, browserslist@^4.23.3, browserslist@^4.24.0: + version "4.24.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" + integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== dependencies: - caniuse-lite "^1.0.30001646" - electron-to-chromium "^1.5.4" + caniuse-lite "^1.0.30001669" + electron-to-chromium "^1.5.41" node-releases "^2.0.18" - update-browserslist-db "^1.1.0" + update-browserslist-db "^1.1.1" buffer-crc32@^1.0.0: version "1.0.0" @@ -2386,19 +2311,19 @@ bundle-name@^4.1.0: dependencies: run-applescript "^7.0.0" -c12@^1.11.1, c12@^1.11.2: - version "1.11.2" - resolved "https://registry.yarnpkg.com/c12/-/c12-1.11.2.tgz#f8a1e30c10f4b273894a1bcb6944f76c15b56717" - integrity sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew== +c12@2.0.1, c12@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/c12/-/c12-2.0.1.tgz#5702d280b31a08abba39833494c9b1202f0f5aec" + integrity sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A== dependencies: - chokidar "^3.6.0" + chokidar "^4.0.1" confbox "^0.1.7" defu "^6.1.4" dotenv "^16.4.5" giget "^1.2.3" - jiti "^1.21.6" + jiti "^2.3.0" mlly "^1.7.1" - ohash "^1.1.3" + ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" pkg-types "^1.2.0" @@ -2438,11 +2363,6 @@ camelcase-css@^2.0.1: resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== -camelcase@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - caniuse-api@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" @@ -2453,19 +2373,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646: - version "1.0.30001655" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001655.tgz#0ce881f5a19a2dcfda2ecd927df4d5c1684b982f" - integrity sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg== - -chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: + version "1.0.30001680" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" + integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== chalk@^4.0.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" @@ -2480,7 +2391,12 @@ chalk@^5.3.0: resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== -"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.1, chokidar@^3.5.3, chokidar@^3.6.0: +change-case@^5.4.4: + version "5.4.4" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.4.4.tgz#0d52b507d8fb8f204343432381d1a6d7bff97a02" + integrity sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w== + +chokidar@^3.5.1, chokidar@^3.5.3, chokidar@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== @@ -2495,6 +2411,13 @@ chalk@^5.3.0: optionalDependencies: fsevents "~2.3.2" +chokidar@^4.0.0, chokidar@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.1.tgz#4a6dff66798fb0f72a94f616abbd7e1a19f31d41" + integrity sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA== + dependencies: + readdirp "^4.0.1" + chownr@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" @@ -2557,13 +2480,6 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - color-convert@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" @@ -2571,11 +2487,6 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" @@ -2591,6 +2502,11 @@ colord@^2.9.3: resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== +colorette@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" + integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== + commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" @@ -2642,10 +2558,10 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -confbox@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.7.tgz#ccfc0a2bcae36a84838e83a3b7f770fb17d6c579" - integrity sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA== +confbox@^0.1.7, confbox@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.8.tgz#820d73d3b3c82d9bd910652c5d4d599ef8ff8b06" + integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w== consola@^3.2.3: version "3.2.3" @@ -2717,29 +2633,31 @@ create-require@^1.1.1: resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== -croner@^8.0.2: - version "8.1.1" - resolved "https://registry.yarnpkg.com/croner/-/croner-8.1.1.tgz#e6c1f7a4bcb867d4ef97b25168a1234a805ff414" - integrity sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA== +croner@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/croner/-/croner-9.0.0.tgz#1db62160142cf32eb22622e9ae27ba29156883f7" + integrity sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA== cronstrue@^2.50.0: - version "2.50.0" - resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.50.0.tgz#eabba0f915f186765258b707b7a3950c663b5573" - integrity sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg== + version "2.51.0" + resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.51.0.tgz#0d37c506eab088ab5d3b68589203b79d78df488e" + integrity sha512-7EG9VaZZ5SRbZ7m25dmP6xaS0qe9ay6wywMskFOU/lMDKa+3gZr2oeT5OUfXwRP/Bcj8wxdYJ65AHU70CI3tsw== cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.5.tgz#910aac880ff5243da96b728bc6521a5f6c2f2f82" + integrity sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" which "^2.0.1" -crossws@^0.2.0, crossws@^0.2.4: - version "0.2.4" - resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.2.4.tgz#82a8b518bff1018ab1d21ced9e35ffbe1681ad03" - integrity sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg== +"crossws@>=0.2.0 <0.4.0", crossws@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.3.1.tgz#7980e0b6688fe23286661c3ab8deeccbaa05ca86" + integrity sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw== + dependencies: + uncrypto "^0.1.3" css-declaration-sorter@^7.2.0: version "7.2.0" @@ -2783,27 +2701,27 @@ cssesc@^3.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssnano-preset-default@^7.0.5: - version "7.0.5" - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-7.0.5.tgz#916108ab2f73a45a83dc15be5ac83f7a0ff5fa0a" - integrity sha512-Jbzja0xaKwc5JzxPQoc+fotKpYtWEu4wQLMQe29CM0FjjdRjA4omvbGHl2DTGgARKxSTpPssBsok+ixv8uTBqw== +cssnano-preset-default@^7.0.6: + version "7.0.6" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-7.0.6.tgz#0220fa7507478369aa2a226bac03e1204cd024c1" + integrity sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ== dependencies: browserslist "^4.23.3" css-declaration-sorter "^7.2.0" cssnano-utils "^5.0.0" - postcss-calc "^10.0.1" + postcss-calc "^10.0.2" postcss-colormin "^7.0.2" - postcss-convert-values "^7.0.3" - postcss-discard-comments "^7.0.2" + postcss-convert-values "^7.0.4" + postcss-discard-comments "^7.0.3" postcss-discard-duplicates "^7.0.1" postcss-discard-empty "^7.0.0" postcss-discard-overridden "^7.0.0" - postcss-merge-longhand "^7.0.3" - postcss-merge-rules "^7.0.3" + postcss-merge-longhand "^7.0.4" + postcss-merge-rules "^7.0.4" postcss-minify-font-values "^7.0.0" postcss-minify-gradients "^7.0.0" postcss-minify-params "^7.0.2" - postcss-minify-selectors "^7.0.3" + postcss-minify-selectors "^7.0.4" postcss-normalize-charset "^7.0.0" postcss-normalize-display-values "^7.0.0" postcss-normalize-positions "^7.0.0" @@ -2817,19 +2735,19 @@ cssnano-preset-default@^7.0.5: postcss-reduce-initial "^7.0.2" postcss-reduce-transforms "^7.0.0" postcss-svgo "^7.0.1" - postcss-unique-selectors "^7.0.2" + postcss-unique-selectors "^7.0.3" cssnano-utils@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-5.0.0.tgz#b53a0343dd5d21012911882db6ae7d2eae0e3687" integrity sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ== -cssnano@^7.0.5: - version "7.0.5" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-7.0.5.tgz#97186daaf96f4db447227ee2d823ce6332f77beb" - integrity sha512-Aq0vqBLtpTT5Yxj+hLlLfNPFuRQCDIjx5JQAhhaedQKLNDvDGeVziF24PS+S1f0Z5KCxWvw0QVI3VNHNBITxVQ== +cssnano@^7.0.6: + version "7.0.6" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-7.0.6.tgz#63d54fd42bc017f6aaed69e47d9aaef85b7850ec" + integrity sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw== dependencies: - cssnano-preset-default "^7.0.5" + cssnano-preset-default "^7.0.6" lilconfig "^3.1.2" csso@^5.0.5: @@ -2876,10 +2794,10 @@ dayjs@^1.11.6: resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== -db0@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/db0/-/db0-0.1.4.tgz#8df1d9600b812bad0b4129ccbbb7f1b8596a5817" - integrity sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA== +db0@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/db0/-/db0-0.2.1.tgz#be1454ab48e3bb3c93b8b8ae7623a95169474bba" + integrity sha512-BWSFmLaCkfyqbSEZBQINMVNjCVfrogi7GQ2RSy1tmtfK9OXlsup6lUMwLsqSD7FbAjD04eWFdXowSHHUp6SE/Q== debug@2.6.9: version "2.6.9" @@ -2888,12 +2806,12 @@ debug@2.6.9: dependencies: ms "2.0.0" -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6: - version "4.3.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" - integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6, debug@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== dependencies: - ms "2.1.2" + ms "^2.1.3" debug@^3.1.0, debug@^3.2.7: version "3.2.7" @@ -3003,20 +2921,20 @@ detect-libc@^2.0.0: resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== -devalue@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/devalue/-/devalue-5.0.0.tgz#1ca0099a7d715b4d6cac3924e770ccbbc584ad98" - integrity sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA== +devalue@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/devalue/-/devalue-5.1.1.tgz#a71887ac0f354652851752654e4bd435a53891ae" + integrity sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw== didyoumean@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== -diff@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531" - integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A== +diff@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-7.0.0.tgz#3fb34d387cd76d803f6eebea67b921dab0182a9a" + integrity sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw== dir-glob@^3.0.1: version "3.0.1" @@ -3074,12 +2992,12 @@ domutils@^3.0.1: domelementtype "^2.3.0" domhandler "^5.0.3" -dot-prop@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-8.0.2.tgz#afda6866610684dd155a96538f8efcdf78a27f18" - integrity sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ== +dot-prop@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-9.0.0.tgz#bae5982fe6dc6b8fddb92efef4f2ddff26779e92" + integrity sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ== dependencies: - type-fest "^3.8.0" + type-fest "^4.18.2" dotenv@^16.4.5: version "16.4.5" @@ -3101,10 +3019,10 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.5.4: - version "1.5.13" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz#1abf0410c5344b2b829b7247e031f02810d442e6" - integrity sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q== +electron-to-chromium@^1.5.41: + version "1.5.56" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.56.tgz#3213f369efc3a41091c3b2c05bc0f406108ac1df" + integrity sha512-7lXb9dAvimCFdvUMTyucD4mnIndt/xhRKFAlky0CyFogdnNmdPQNoHI23msF/2V4mpTxMzgMdjK4+YRlFlRQZw== emoji-regex@^8.0.0: version "8.0.0" @@ -3121,6 +3039,11 @@ encodeurl@^1.0.2, encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + enhanced-resolve@^5.14.1, enhanced-resolve@^5.15.0: version "5.17.1" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15" @@ -3276,35 +3199,6 @@ esbuild@^0.19.2: "@esbuild/win32-ia32" "0.19.12" "@esbuild/win32-x64" "0.19.12" -esbuild@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== - optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" - esbuild@^0.21.3: version "0.21.5" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" @@ -3334,37 +3228,37 @@ esbuild@^0.21.3: "@esbuild/win32-ia32" "0.21.5" "@esbuild/win32-x64" "0.21.5" -esbuild@^0.23.1: - version "0.23.1" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.1.tgz#40fdc3f9265ec0beae6f59824ade1bd3d3d2dab8" - integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg== +esbuild@^0.24.0: + version "0.24.0" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.24.0.tgz#f2d470596885fcb2e91c21eb3da3b3c89c0b55e7" + integrity sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ== optionalDependencies: - "@esbuild/aix-ppc64" "0.23.1" - "@esbuild/android-arm" "0.23.1" - "@esbuild/android-arm64" "0.23.1" - "@esbuild/android-x64" "0.23.1" - "@esbuild/darwin-arm64" "0.23.1" - "@esbuild/darwin-x64" "0.23.1" - "@esbuild/freebsd-arm64" "0.23.1" - "@esbuild/freebsd-x64" "0.23.1" - "@esbuild/linux-arm" "0.23.1" - "@esbuild/linux-arm64" "0.23.1" - "@esbuild/linux-ia32" "0.23.1" - "@esbuild/linux-loong64" "0.23.1" - "@esbuild/linux-mips64el" "0.23.1" - "@esbuild/linux-ppc64" "0.23.1" - "@esbuild/linux-riscv64" "0.23.1" - "@esbuild/linux-s390x" "0.23.1" - "@esbuild/linux-x64" "0.23.1" - "@esbuild/netbsd-x64" "0.23.1" - "@esbuild/openbsd-arm64" "0.23.1" - "@esbuild/openbsd-x64" "0.23.1" - "@esbuild/sunos-x64" "0.23.1" - "@esbuild/win32-arm64" "0.23.1" - "@esbuild/win32-ia32" "0.23.1" - "@esbuild/win32-x64" "0.23.1" - -escalade@^3.1.1, escalade@^3.1.2: + "@esbuild/aix-ppc64" "0.24.0" + "@esbuild/android-arm" "0.24.0" + "@esbuild/android-arm64" "0.24.0" + "@esbuild/android-x64" "0.24.0" + "@esbuild/darwin-arm64" "0.24.0" + "@esbuild/darwin-x64" "0.24.0" + "@esbuild/freebsd-arm64" "0.24.0" + "@esbuild/freebsd-x64" "0.24.0" + "@esbuild/linux-arm" "0.24.0" + "@esbuild/linux-arm64" "0.24.0" + "@esbuild/linux-ia32" "0.24.0" + "@esbuild/linux-loong64" "0.24.0" + "@esbuild/linux-mips64el" "0.24.0" + "@esbuild/linux-ppc64" "0.24.0" + "@esbuild/linux-riscv64" "0.24.0" + "@esbuild/linux-s390x" "0.24.0" + "@esbuild/linux-x64" "0.24.0" + "@esbuild/netbsd-x64" "0.24.0" + "@esbuild/openbsd-arm64" "0.24.0" + "@esbuild/openbsd-x64" "0.24.0" + "@esbuild/sunos-x64" "0.24.0" + "@esbuild/win32-arm64" "0.24.0" + "@esbuild/win32-ia32" "0.24.0" + "@esbuild/win32-x64" "0.24.0" + +escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== @@ -3417,10 +3311,10 @@ eslint-import-resolver-typescript@^3.6.0: is-bun-module "^1.0.2" is-glob "^4.0.3" -eslint-module-utils@^2.8.1, eslint-module-utils@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.9.0.tgz#95d4ac038a68cd3f63482659dffe0883900eb342" - integrity sha512-McVbYmwA3NEKwRQY5g4aWMdcZE5xZxV8i8l7CqJSrameuGSQJtSWaL/LxTEzSKKaCcOhlpDR8XEfYXWPrdo/ZQ== +eslint-module-utils@^2.12.0, eslint-module-utils@^2.8.1: + version "2.12.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz#fe4cfb948d61f49203d7b08871982b65b9af0b0b" + integrity sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg== dependencies: debug "^3.2.7" @@ -3441,9 +3335,9 @@ eslint-plugin-es@^4.1.0: regexpp "^3.0.0" eslint-plugin-import@^2.26.0, eslint-plugin-import@^2.28.1: - version "2.30.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.30.0.tgz#21ceea0fc462657195989dd780e50c92fe95f449" - integrity sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw== + version "2.31.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz#310ce7e720ca1d9c0bb3f69adfd1c6bdd7d9e0e7" + integrity sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A== dependencies: "@rtsao/scc" "^1.1.0" array-includes "^3.1.8" @@ -3453,7 +3347,7 @@ eslint-plugin-import@^2.26.0, eslint-plugin-import@^2.28.1: debug "^3.2.7" doctrine "^2.1.0" eslint-import-resolver-node "^0.3.9" - eslint-module-utils "^2.9.0" + eslint-module-utils "^2.12.0" hasown "^2.0.2" is-core-module "^2.15.1" is-glob "^4.0.3" @@ -3462,6 +3356,7 @@ eslint-plugin-import@^2.26.0, eslint-plugin-import@^2.28.1: object.groupby "^1.0.3" object.values "^1.2.0" semver "^6.3.1" + string.prototype.trimend "^1.0.8" tsconfig-paths "^3.15.0" eslint-plugin-n@^15.5.1: @@ -3525,9 +3420,9 @@ eslint-plugin-unicorn@^44.0.2: strip-indent "^3.0.0" eslint-plugin-vue@^9.17.0, eslint-plugin-vue@^9.4.0, eslint-plugin-vue@^9.7.0: - version "9.28.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.28.0.tgz#e4412f0c1024bafd15ffeaa6f76f4c99152e2765" - integrity sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g== + version "9.31.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.31.0.tgz#5da53c2826f8efd8a62835aad596826053b1085e" + integrity sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ== dependencies: "@eslint-community/eslint-utils" "^4.4.0" globals "^13.24.0" @@ -3576,15 +3471,15 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.27.0: - version "8.57.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" - integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== + version "8.57.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9" + integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" "@eslint/eslintrc" "^2.1.4" - "@eslint/js" "8.57.0" - "@humanwhocodes/config-array" "^0.11.14" + "@eslint/js" "8.57.1" + "@humanwhocodes/config-array" "^0.13.0" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" "@ungap/structured-clone" "^1.2.0" @@ -3762,10 +3657,10 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" -fdir@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.3.0.tgz#fcca5a23ea20e767b15e081ee13b3e6488ee0bb0" - integrity sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ== +fdir@^6.2.0, fdir@^6.4.2: + version "6.4.2" + resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.2.tgz#ddaa7ce1831b161bc3657bb99cb36e1622702689" + integrity sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ== file-entry-cache@^6.0.1: version "6.0.1" @@ -3958,9 +3853,9 @@ get-symbol-description@^1.0.2: get-intrinsic "^1.2.4" get-tsconfig@^4.7.5: - version "4.8.0" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.8.0.tgz#125dc13a316f61650a12b20c97c11b8fd996fedd" - integrity sha512-Pgba6TExTZ0FJAn1qkJAjIeKoDJ3CsI2ChuLohJnZl/tTU8MVrq3b+2t5UOPfRa4RMsorClBjJALkJUMjG1PAw== + version "4.8.1" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.8.1.tgz#8995eb391ae6e1638d251118c7b56de7eb425471" + integrity sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg== dependencies: resolve-pkg-maps "^1.0.0" @@ -3991,10 +3886,10 @@ git-up@^7.0.0: is-ssh "^1.4.0" parse-url "^8.1.0" -git-url-parse@^14.0.0: - version "14.1.0" - resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-14.1.0.tgz#01cb70000666c11a7230aceec1fd518c416c224c" - integrity sha512-8xg65dTxGHST3+zGpycMMFZcoTzAdZ2dOtu4vmgIfkTFnVHBxHMzBC2L1k8To7EmrSiHesT8JgPLT91VKw1B5g== +git-url-parse@^15.0.0: + version "15.0.0" + resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-15.0.0.tgz#207b74d8eb888955b1aaf5dfc5f5778084fa9fa9" + integrity sha512-5reeBufLi+i4QD3ZFftcJs9jC26aULFLBU23FeKM/b1rI0K6ofIeAblmDVO7Ht22zTDE9+CkJ3ZVb0CgJmz3UQ== dependencies: git-up "^7.0.0" @@ -4097,7 +3992,7 @@ globby@^13.2.2: merge2 "^1.4.1" slash "^4.0.0" -globby@^14.0.1, globby@^14.0.2: +globby@^14.0.2: version "14.0.2" resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f" integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw== @@ -4133,32 +4028,27 @@ gzip-size@^7.0.0: dependencies: duplexer "^0.1.2" -h3@^1.10.2, h3@^1.12.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/h3/-/h3-1.12.0.tgz#9d7f05f08a997d263e484b02436cb027df3026d8" - integrity sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA== +h3@^1.12.0, h3@^1.13.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/h3/-/h3-1.13.0.tgz#b5347a8936529794b6754b440e26c0ab8a60dceb" + integrity sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg== dependencies: - cookie-es "^1.1.0" - crossws "^0.2.4" + cookie-es "^1.2.2" + crossws ">=0.2.0 <0.4.0" defu "^6.1.4" destr "^2.0.3" - iron-webcrypto "^1.1.1" - ohash "^1.1.3" + iron-webcrypto "^1.2.1" + ohash "^1.1.4" radix3 "^1.1.2" - ufo "^1.5.3" + ufo "^1.5.4" uncrypto "^0.1.3" - unenv "^1.9.0" + unenv "^1.10.0" has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" @@ -4273,6 +4163,14 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" +https-proxy-agent@^7.0.4: + version "7.0.5" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" + integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== + dependencies: + agent-base "^7.0.2" + debug "4" + httpxy@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/httpxy/-/httpxy-0.1.5.tgz#fd2401206e0b5d919aeda25e967ece0f1a6c8569" @@ -4293,11 +4191,16 @@ ieee754@^1.2.1: resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore@^5.1.1, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.2: +ignore@^5.1.1, ignore@^5.2.0, ignore@^5.2.4: version "5.3.2" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== +ignore@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-6.0.2.tgz#77cccb72a55796af1b6d2f9eb14fa326d24f4283" + integrity sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A== + image-meta@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/image-meta/-/image-meta-0.2.1.tgz#3a9eb9f0bfd2f767ca2b0720623c2e03742aa29f" @@ -4316,16 +4219,16 @@ import-fresh@^3.2.1: parent-module "^1.0.0" resolve-from "^4.0.0" -impound@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/impound/-/impound-0.1.0.tgz#3f6ff0597fd138f8f2676cc63862bbd005db413a" - integrity sha512-F9nJgOsDc3tysjN74edE0vGPEQrU7DAje6g5nNAL5Jc9Tv4JW3mH7XMGne+EaadTniDXLeUrVR21opkNfWO1zQ== +impound@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/impound/-/impound-0.2.0.tgz#d24d6dd8330f380e8e71c254e8b29d3a2c4fe520" + integrity sha512-gXgeSyp9Hf7qG2/PLKmywHXyQf2xFrw+mJGpoj9DsAB9L7/MIKn+DeEx98UryWXdmbv8wUUPdcQof6qXnZoCGg== dependencies: - "@rollup/pluginutils" "^5.1.0" - mlly "^1.7.1" + "@rollup/pluginutils" "^5.1.2" + mlly "^1.7.2" pathe "^1.1.2" unenv "^1.10.0" - unplugin "^1.12.2" + unplugin "^1.14.1" imurmurhash@^0.1.4: version "0.1.4" @@ -4337,6 +4240,11 @@ indent-string@^4.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== +index-to-position@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/index-to-position/-/index-to-position-0.1.2.tgz#e11bfe995ca4d8eddb1ec43274488f3c201a7f09" + integrity sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -4389,7 +4297,7 @@ ioredis@^5.4.1: redis-parser "^3.0.0" standard-as-callback "^2.1.0" -iron-webcrypto@^1.1.1: +iron-webcrypto@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz#aa60ff2aa10550630f4c0b11fd2442becdb35a6f" integrity sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg== @@ -4429,7 +4337,7 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-builtin-module@^3.2.0, is-builtin-module@^3.2.1: +is-builtin-module@^3.2.0: version "3.2.1" resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169" integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== @@ -4437,9 +4345,9 @@ is-builtin-module@^3.2.0, is-builtin-module@^3.2.1: builtin-modules "^3.3.0" is-bun-module@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-1.1.0.tgz#a66b9830869437f6cdad440ba49ab6e4dc837269" - integrity sha512-4mTAVPlrXpaN3jtF0lsnPCMGnq4+qZjVIKq0HCpfcqf8OC1SM5oATCIAPM5V5FN05qp2NNnFndphmdZS9CV3hA== + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-1.2.1.tgz#495e706f42e29f086fd5fe1ac3c51f106062b9fc" + integrity sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q== dependencies: semver "^7.6.3" @@ -4672,6 +4580,16 @@ jiti@^1.19.3, jiti@^1.21.0, jiti@^1.21.6: resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== +jiti@^2.1.2, jiti@^2.3.0, jiti@^2.3.1, jiti@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.4.0.tgz#393d595fb6031a11d11171b5e4fc0b989ba3e053" + integrity sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g== + +js-levenshtein@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" + integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== + js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -4689,10 +4607,10 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== +jsesc@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" + integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== json-buffer@3.0.1: version "3.0.1" @@ -4709,6 +4627,11 @@ json-schema-traverse@^0.4.1: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" @@ -4833,10 +4756,10 @@ kolorist@^1.8.0: resolved "https://registry.yarnpkg.com/kolorist/-/kolorist-1.8.0.tgz#edddbbbc7894bc13302cdf740af6374d4a04743c" integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ== -launch-editor@^2.8.1: - version "2.8.2" - resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.8.2.tgz#939e1b3469f9d5471e4eaacedd51b3b7c45352cd" - integrity sha512-eF5slEUZXmi6WvFzI3dYcv+hA24/iKnROf24HztcURJpSz9RBmBgz5cNCVOeguouf1llrwy6Yctl4C4HM+xI8g== +launch-editor@^2.9.1: + version "2.9.1" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.9.1.tgz#253f173bd441e342d4344b4dae58291abb425047" + integrity sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w== dependencies: picocolors "^1.0.0" shell-quote "^1.8.1" @@ -4891,27 +4814,27 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== -listhen@^1.7.2: - version "1.7.2" - resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.7.2.tgz#66b81740692269d5d8cafdc475020f2fc51afbae" - integrity sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g== +listhen@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.9.0.tgz#59355f7e4fc1eefda6bc494ae7e9ed13aa7658ef" + integrity sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg== dependencies: "@parcel/watcher" "^2.4.1" "@parcel/watcher-wasm" "^2.4.1" citty "^0.1.6" clipboardy "^4.0.0" consola "^3.2.3" - crossws "^0.2.0" + crossws ">=0.2.0 <0.4.0" defu "^6.1.4" get-port-please "^3.1.2" - h3 "^1.10.2" + h3 "^1.12.0" http-shutdown "^1.2.2" - jiti "^1.21.0" - mlly "^1.6.1" + jiti "^2.1.2" + mlly "^1.7.1" node-forge "^1.3.1" pathe "^1.1.2" std-env "^3.7.0" - ufo "^1.4.0" + ufo "^1.5.4" untun "^0.1.3" uqr "^0.1.2" @@ -4942,11 +4865,6 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" -lodash-es@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== - lodash.defaults@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" @@ -4957,6 +4875,11 @@ lodash.isarguments@^3.1.0: resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" integrity sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg== +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== + lodash.memoize@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" @@ -4996,14 +4919,14 @@ magic-string-ast@^0.6.2: dependencies: magic-string "^0.30.10" -magic-string@^0.30.0, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.8: - version "0.30.11" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954" - integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== +magic-string@^0.30.0, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.12, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.8: + version "0.30.12" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.12.tgz#9eb11c9d072b9bcb4940a5b2c2e1a217e4ee1a60" + integrity sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw== dependencies: "@jridgewell/sourcemap-codec" "^1.5.0" -magicast@^0.3.4: +magicast@^0.3.5: version "0.3.5" resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.5.tgz#8301c3c7d66704a0771eb1bad74274f0ec036739" integrity sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ== @@ -5049,7 +4972,7 @@ methods@^1.1.2: resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== -micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: +micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -5079,7 +5002,7 @@ mime@^3.0.0: resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== -mime@^4.0.3: +mime@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/mime/-/mime-4.0.4.tgz#9f851b0fc3c289d063b20a7a8055b3014b25664b" integrity sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ== @@ -5170,33 +5093,33 @@ mkdirp@^1.0.3: integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== mkdist@^1.3.0: - version "1.5.5" - resolved "https://registry.yarnpkg.com/mkdist/-/mkdist-1.5.5.tgz#251c7f23a32ae216e4eed18191fcf43274509822" - integrity sha512-Kbj0Tt4uk6AN/XEV1W7EgBpJUmEXZgTWxbMKYIpO0hRXoTstFIJrJVqDgPjBz9AXXN3ZpxQBk2Q0n28Ze0Gh1w== + version "1.6.0" + resolved "https://registry.yarnpkg.com/mkdist/-/mkdist-1.6.0.tgz#fa08e860579431966d621469c360c262397b93d3" + integrity sha512-nD7J/mx33Lwm4Q4qoPgRBVA9JQNKgyE7fLo5vdPWVDdjz96pXglGERp/fRnGPCTB37Kykfxs5bDdXa9BWOT9nw== dependencies: autoprefixer "^10.4.20" citty "^0.1.6" - cssnano "^7.0.5" + cssnano "^7.0.6" defu "^6.1.4" - esbuild "^0.23.1" - fast-glob "^3.3.2" + esbuild "^0.24.0" jiti "^1.21.6" mlly "^1.7.1" pathe "^1.1.2" - pkg-types "^1.1.3" - postcss "^8.4.41" + pkg-types "^1.2.0" + postcss "^8.4.45" postcss-nested "^6.2.0" semver "^7.6.3" + tinyglobby "^0.2.9" -mlly@^1.3.0, mlly@^1.4.0, mlly@^1.4.2, mlly@^1.6.1, mlly@^1.7.1: - version "1.7.1" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.1.tgz#e0336429bb0731b6a8e887b438cbdae522c8f32f" - integrity sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA== +mlly@^1.3.0, mlly@^1.4.0, mlly@^1.4.2, mlly@^1.6.1, mlly@^1.7.1, mlly@^1.7.2: + version "1.7.3" + resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.3.tgz#d86c0fcd8ad8e16395eb764a5f4b831590cee48c" + integrity sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A== dependencies: - acorn "^8.11.3" + acorn "^8.14.0" pathe "^1.1.2" - pkg-types "^1.1.1" - ufo "^1.5.3" + pkg-types "^1.2.1" + ufo "^1.5.4" mri@^1.2.0: version "1.2.0" @@ -5213,12 +5136,7 @@ ms@2.0.0: resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3, ms@^2.1.1: +ms@2.1.3, ms@^2.1.1, ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -5232,20 +5150,15 @@ mz@^2.7.0: object-assign "^4.0.1" thenify-all "^1.0.0" -nanoclone@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/nanoclone/-/nanoclone-0.2.1.tgz#dd4090f8f1a110d26bb32c49ed2f5b9235209ed4" - integrity sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA== - nanoid@^3.3.4, nanoid@^3.3.7: version "3.3.7" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== nanoid@^5.0.7: - version "5.0.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.7.tgz#6452e8c5a816861fd9d2b898399f7e5fd6944cc6" - integrity sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ== + version "5.0.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.8.tgz#7610003f6b3b761b5c244bb342c112c5312512bf" + integrity sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ== nanotar@^0.1.1: version "0.1.1" @@ -5267,76 +5180,78 @@ negotiator@0.6.3: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== -nitropack@^2.9.7: - version "2.9.7" - resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.9.7.tgz#66da772d14d0e364dd17adbd439f0b1e44112a8d" - integrity sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw== +nitropack@^2.10.3: + version "2.10.4" + resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.10.4.tgz#f7eb092bf7296257bf2426c45134fba61373e026" + integrity sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g== dependencies: "@cloudflare/kv-asset-handler" "^0.3.4" - "@netlify/functions" "^2.8.0" - "@rollup/plugin-alias" "^5.1.0" - "@rollup/plugin-commonjs" "^25.0.8" + "@netlify/functions" "^2.8.2" + "@rollup/plugin-alias" "^5.1.1" + "@rollup/plugin-commonjs" "^28.0.1" "@rollup/plugin-inject" "^5.0.5" "@rollup/plugin-json" "^6.1.0" - "@rollup/plugin-node-resolve" "^15.2.3" - "@rollup/plugin-replace" "^5.0.7" + "@rollup/plugin-node-resolve" "^15.3.0" + "@rollup/plugin-replace" "^6.0.1" "@rollup/plugin-terser" "^0.4.4" - "@rollup/pluginutils" "^5.1.0" - "@types/http-proxy" "^1.17.14" - "@vercel/nft" "^0.26.5" + "@rollup/pluginutils" "^5.1.3" + "@types/http-proxy" "^1.17.15" + "@vercel/nft" "^0.27.5" archiver "^7.0.1" - c12 "^1.11.1" - chalk "^5.3.0" + c12 "2.0.1" chokidar "^3.6.0" citty "^0.1.6" + compatx "^0.1.8" + confbox "^0.1.8" consola "^3.2.3" - cookie-es "^1.1.0" - croner "^8.0.2" - crossws "^0.2.4" - db0 "^0.1.4" + cookie-es "^1.2.2" + croner "^9.0.0" + crossws "^0.3.1" + db0 "^0.2.1" defu "^6.1.4" destr "^2.0.3" - dot-prop "^8.0.2" - esbuild "^0.20.2" + dot-prop "^9.0.0" + esbuild "^0.24.0" escape-string-regexp "^5.0.0" etag "^1.8.1" fs-extra "^11.2.0" - globby "^14.0.1" + globby "^14.0.2" gzip-size "^7.0.0" - h3 "^1.12.0" + h3 "^1.13.0" hookable "^5.5.3" httpxy "^0.1.5" ioredis "^5.4.1" - jiti "^1.21.6" + jiti "^2.4.0" klona "^2.0.6" knitwork "^1.1.0" - listhen "^1.7.2" - magic-string "^0.30.10" - mime "^4.0.3" - mlly "^1.7.1" - mri "^1.2.0" + listhen "^1.9.0" + magic-string "^0.30.12" + magicast "^0.3.5" + mime "^4.0.4" + mlly "^1.7.2" node-fetch-native "^1.6.4" - ofetch "^1.3.4" - ohash "^1.1.3" - openapi-typescript "^6.7.6" + ofetch "^1.4.1" + ohash "^1.1.4" + openapi-typescript "^7.4.2" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.1.1" + pkg-types "^1.2.1" pretty-bytes "^6.1.1" radix3 "^1.1.2" - rollup "^4.18.0" + rollup "^4.24.3" rollup-plugin-visualizer "^5.12.0" scule "^1.3.0" - semver "^7.6.2" + semver "^7.6.3" serve-placeholder "^2.0.2" - serve-static "^1.15.0" + serve-static "^1.16.2" std-env "^3.7.0" - ufo "^1.5.3" + ufo "^1.5.4" uncrypto "^0.1.3" unctx "^2.3.1" - unenv "^1.9.0" - unimport "^3.7.2" - unstorage "^1.10.2" + unenv "^1.10.0" + unimport "^3.13.1" + unstorage "^1.13.1" + untyped "^1.5.1" unwasm "^0.3.9" node-addon-api@^7.0.0: @@ -5349,7 +5264,7 @@ node-fetch-native@^1.6.3, node-fetch-native@^1.6.4: resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e" integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ== -node-fetch@^2.6.7: +node-fetch@^2.6.1, node-fetch@^2.6.7: version "2.7.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== @@ -5429,99 +5344,100 @@ nth-check@^2.0.1, nth-check@^2.1.1: dependencies: boolbase "^1.0.0" -nuxi@^3.13.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.13.1.tgz#170a573d49bd8f1ec433c6b781276a29d5201232" - integrity sha512-rhUfFCtIH8IxhfibVd26uGrC0ojUijGoU3bAhPQHrkl7mFlK+g+XeIttdsI8YAC7s/wPishrTpE9z1UssHY6eA== - optionalDependencies: - fsevents "~2.3.3" +nuxi@^3.15.0: + version "3.15.0" + resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.15.0.tgz#ed54923ca46727c6e7df10495143db340d9791c9" + integrity sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg== -nuxt-api-party@^2.0.0: - version "2.0.9" - resolved "https://registry.yarnpkg.com/nuxt-api-party/-/nuxt-api-party-2.0.9.tgz#5a14a7dac456f483ce0e68e07df1d3c8d3d9afb4" - integrity sha512-nTSywIlnCFqGlAxWNKxkvsWa7tmhOT3ZufkFXh8XVkXxn++KX9akY1QlBlpfBbkdDO1S9d4ypnSrItHQ/civ2Q== +nuxt-api-party@^2.0.10: + version "2.1.0" + resolved "https://registry.yarnpkg.com/nuxt-api-party/-/nuxt-api-party-2.1.0.tgz#c5a44f92b56f3d1be41aa75781c308e3e200156f" + integrity sha512-jDIpFz3X8HSEbsmyye31VyaW9x7A6x4eQB5RxVa4DU7gXRlX7S8eLuotZ0d8mB5UnMs19ZjxdH+C0TueOwfelg== dependencies: - "@nuxt/kit" "^3.13.0" + "@nuxt/kit" "^3.14.159" defu "^6.1.4" - ofetch "^1.3.4" - ohash "^1.1.3" + jiti "^2.4.0" + ofetch "^1.4.1" + ohash "^1.1.4" openapi-typescript-helpers "0.0.13" pathe "^1.1.2" scule "^1.3.0" ufo "^1.5.4" -nuxt@^3.13.0: - version "3.13.1" - resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.13.1.tgz#b1d43e10b1c3051a898b0b01471face675500c97" - integrity sha512-En0vVrCJWu54ptShUlrqOGzXTcjhX+RnHShwdcpNqL9kmE9FWqeDYnPTgt2gJWrYSvVbmjJcVfEugNo9XpNmHA== +nuxt@^3.13.2: + version "3.14.159" + resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.14.159.tgz#3c1c70ded8bd302457c86f3250af3ccc3389ad03" + integrity sha512-1xz6AfFkun+byUIkBNX3/CTOTShPRFJe0y9HqWZX2aV9xdoz5ByeaHZfktokhOOSbvabjDyzkTbbHh3V673qHw== dependencies: "@nuxt/devalue" "^2.0.2" - "@nuxt/devtools" "^1.4.1" - "@nuxt/kit" "3.13.1" - "@nuxt/schema" "3.13.1" - "@nuxt/telemetry" "^2.5.4" - "@nuxt/vite-builder" "3.13.1" - "@unhead/dom" "^1.10.4" - "@unhead/ssr" "^1.10.4" - "@unhead/vue" "^1.10.4" - "@vue/shared" "^3.5.0" - acorn "8.12.1" - c12 "^1.11.2" - chokidar "^3.6.0" + "@nuxt/devtools" "^1.6.0" + "@nuxt/kit" "3.14.159" + "@nuxt/schema" "3.14.159" + "@nuxt/telemetry" "^2.6.0" + "@nuxt/vite-builder" "3.14.159" + "@unhead/dom" "^1.11.11" + "@unhead/shared" "^1.11.11" + "@unhead/ssr" "^1.11.11" + "@unhead/vue" "^1.11.11" + "@vue/shared" "^3.5.12" + acorn "8.14.0" + c12 "^2.0.1" + chokidar "^4.0.1" compatx "^0.1.8" consola "^3.2.3" cookie-es "^1.2.2" defu "^6.1.4" destr "^2.0.3" - devalue "^5.0.0" + devalue "^5.1.1" errx "^0.1.0" - esbuild "^0.23.1" + esbuild "^0.24.0" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" globby "^14.0.2" - h3 "^1.12.0" + h3 "^1.13.0" hookable "^5.5.3" - ignore "^5.3.2" - impound "^0.1.0" - jiti "^1.21.6" + ignore "^6.0.2" + impound "^0.2.0" + jiti "^2.4.0" klona "^2.0.6" knitwork "^1.1.0" - magic-string "^0.30.11" - mlly "^1.7.1" + magic-string "^0.30.12" + mlly "^1.7.2" nanotar "^0.1.1" - nitropack "^2.9.7" - nuxi "^3.13.1" - nypm "^0.3.11" - ofetch "^1.3.4" - ohash "^1.1.3" + nitropack "^2.10.3" + nuxi "^3.15.0" + nypm "^0.3.12" + ofetch "^1.4.1" + ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.2.0" + pkg-types "^1.2.1" radix3 "^1.1.2" scule "^1.3.0" semver "^7.6.3" std-env "^3.7.0" strip-literal "^2.1.0" - tinyglobby "0.2.5" + tinyglobby "0.2.10" ufo "^1.5.4" ultrahtml "^1.5.3" uncrypto "^0.1.3" unctx "^2.3.1" unenv "^1.10.0" - unimport "^3.11.1" - unplugin "^1.12.3" - unplugin-vue-router "^0.10.7" - unstorage "^1.10.2" - untyped "^1.4.2" - vue "^3.5.0" - vue-bundle-renderer "^2.1.0" + unhead "^1.11.11" + unimport "^3.13.1" + unplugin "^1.15.0" + unplugin-vue-router "^0.10.8" + unstorage "^1.13.1" + untyped "^1.5.1" + vue "^3.5.12" + vue-bundle-renderer "^2.1.1" vue-devtools-stub "^0.1.0" - vue-router "^4.4.3" + vue-router "^4.4.5" -nypm@^0.3.11, nypm@^0.3.8: - version "0.3.11" - resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.11.tgz#57e9a91bbf1dd357add633b1abca90df7a908456" - integrity sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg== +nypm@^0.3.11, nypm@^0.3.12, nypm@^0.3.8: + version "0.3.12" + resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.12.tgz#37541bec0af3a37d3acd81d6662c6666e650b22e" + integrity sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA== dependencies: citty "^0.1.6" consola "^3.2.3" @@ -5541,9 +5457,9 @@ object-hash@^3.0.0: integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== object-keys@^1.1.1: version "1.1.1" @@ -5588,19 +5504,19 @@ object.values@^1.2.0: define-properties "^1.2.1" es-object-atoms "^1.0.0" -ofetch@^1.3.3, ofetch@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.3.4.tgz#7ea65ced3c592ec2b9906975ae3fe1d26a56f635" - integrity sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw== +ofetch@^1.3.3, ofetch@^1.3.4, ofetch@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.4.1.tgz#b6bf6b0d75ba616cef6519dd8b6385a8bae480ec" + integrity sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw== dependencies: destr "^2.0.3" - node-fetch-native "^1.6.3" - ufo "^1.5.3" + node-fetch-native "^1.6.4" + ufo "^1.5.4" -ohash@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/ohash/-/ohash-1.1.3.tgz#f12c3c50bfe7271ce3fd1097d42568122ccdcf07" - integrity sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw== +ohash@^1.1.3, ohash@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/ohash/-/ohash-1.1.4.tgz#ae8d83014ab81157d2c285abf7792e2995fadd72" + integrity sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g== on-finished@2.4.1, on-finished@^2.3.0: version "2.4.1" @@ -5660,7 +5576,7 @@ openapi-typescript-helpers@0.0.13: resolved "https://registry.yarnpkg.com/openapi-typescript-helpers/-/openapi-typescript-helpers-0.0.13.tgz#d959b6a87b5461759e240af375fab480252d2caf" integrity sha512-z44WK2e7ygW3aUtAtiurfEACohf/Qt9g6BsejmIYgEoY4REHeRzgFJmO3ium0libsuzPc145I+8lE9aiiZrQvQ== -openapi-typescript@^6.7.5, openapi-typescript@^6.7.6: +openapi-typescript@^6.7.5: version "6.7.6" resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-6.7.6.tgz#4f387199203bd7bfb94545cbc613751b52e3fa37" integrity sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw== @@ -5672,6 +5588,18 @@ openapi-typescript@^6.7.5, openapi-typescript@^6.7.6: undici "^5.28.4" yargs-parser "^21.1.1" +openapi-typescript@^7.4.2: + version "7.4.3" + resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-7.4.3.tgz#269c367929e8580dae2f7ef2d68bb39ffa30fa47" + integrity sha512-xTIjMIIOv9kNhsr8JxaC00ucbIY/6ZwuJPJBZMSh5FA2dicZN5uM805DWVJojXdom8YI4AQTavPDPHMx/3g0vQ== + dependencies: + "@redocly/openapi-core" "^1.25.9" + ansi-colors "^4.1.3" + change-case "^5.4.4" + parse-json "^8.1.0" + supports-color "^9.4.0" + yargs-parser "^21.1.1" + optionator@^0.9.3: version "0.9.4" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" @@ -5718,9 +5646,14 @@ p-try@^2.0.0: integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== package-json-from-dist@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00" - integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw== + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + +package-manager-detector@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-0.2.2.tgz#fbbc8afe87cdaee471ca9b89c3700236c6d2d9e5" + integrity sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg== parent-module@^1.0.0: version "1.0.1" @@ -5747,6 +5680,15 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +parse-json@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-8.1.0.tgz#91cdc7728004e955af9cb734de5684733b24a717" + integrity sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA== + dependencies: + "@babel/code-frame" "^7.22.13" + index-to-position "^0.1.2" + type-fest "^4.7.1" + parse-path@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b" @@ -5799,10 +5741,10 @@ path-scurry@^1.11.1: lru-cache "^10.2.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" -path-to-regexp@^6.2.1: - version "6.2.2" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.2.tgz#324377a83e5049cbecadc5554d6a63a9a4866b36" - integrity sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw== +path-to-regexp@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.3.0.tgz#2b6a26a337737a8e1416f9272ed0766b1c0389f4" + integrity sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ== path-type@^4.0.0: version "4.0.0" @@ -5824,10 +5766,10 @@ perfect-debounce@^1.0.0: resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz#9c2e8bc30b169cc984a58b7d5b28049839591d2a" integrity sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA== -picocolors@^1.0.0, picocolors@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" - integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== +picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: version "2.3.1" @@ -5844,10 +5786,10 @@ pify@^2.3.0: resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== -pinia@^2.1.7, pinia@^2.2.0, pinia@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.2.2.tgz#dcf576c9a778187d1542c5e6a9f8b8cd5b6aea14" - integrity sha512-ja2XqFWZC36mupU4z1ZzxeTApV7DOw44cV4dhQ9sGwun+N89v/XP7+j7q6TanS1u1tdbK4r+1BUx7heMaIdagA== +pinia@^2.1.7, pinia@^2.2.0, pinia@^2.2.3: + version "2.2.6" + resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.2.6.tgz#ff93f35b8c02033eaedc8c92ad5f10f215d6c804" + integrity sha512-vIsR8JkDN5Ga2vAxqOE2cJj4VtsHnzpR1Fz30kClxlh0yCHfec6uoMeM3e/ddqmwFUejK3NlrcQa/shnpyT4hA== dependencies: "@vue/devtools-api" "^6.6.3" vue-demi "^0.14.10" @@ -5857,13 +5799,13 @@ pirates@^4.0.1: resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== -pkg-types@^1.0.3, pkg-types@^1.1.1, pkg-types@^1.1.3, pkg-types@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.2.0.tgz#d0268e894e93acff11a6279de147e83354ebd42d" - integrity sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA== +pkg-types@^1.0.3, pkg-types@^1.2.0, pkg-types@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.2.1.tgz#6ac4e455a5bb4b9a6185c1c79abd544c901db2e5" + integrity sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw== dependencies: - confbox "^0.1.7" - mlly "^1.7.1" + confbox "^0.1.8" + mlly "^1.7.2" pathe "^1.1.2" pluralize@^8.0.0: @@ -5885,7 +5827,7 @@ possible-typed-array-names@^1.0.0: resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== -postcss-calc@^10.0.1: +postcss-calc@^10.0.2: version "10.0.2" resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-10.0.2.tgz#15f01635a27b9d38913a98c4ef2877f5b715b439" integrity sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg== @@ -5903,20 +5845,20 @@ postcss-colormin@^7.0.2: colord "^2.9.3" postcss-value-parser "^4.2.0" -postcss-convert-values@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-7.0.3.tgz#93524dcc3797cda89d70801e9cc7b7758c76d088" - integrity sha512-yJhocjCs2SQer0uZ9lXTMOwDowbxvhwFVrZeS6NPEij/XXthl73ggUmfwVvJM+Vaj5gtCKJV1jiUu4IhAUkX/Q== +postcss-convert-values@^7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-7.0.4.tgz#fc13ecedded6365f3c794b502dbcf77d298da12c" + integrity sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q== dependencies: browserslist "^4.23.3" postcss-value-parser "^4.2.0" -postcss-discard-comments@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-7.0.2.tgz#b402b2957a1ecefc77a44062ea6563190eaa8903" - integrity sha512-/Hje9Ls1IYcB9duELO/AyDUJI6aQVY3h5Rj1ziXgaLYCTi1iVBLnjg/TS0D6NszR/kDG6I86OwLmAYe+bvJjiQ== +postcss-discard-comments@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-7.0.3.tgz#9c414e8ee99d3514ad06a3465ccc20ec1dbce780" + integrity sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA== dependencies: - postcss-selector-parser "^6.1.1" + postcss-selector-parser "^6.1.2" postcss-discard-duplicates@^7.0.1: version "7.0.1" @@ -5957,23 +5899,23 @@ postcss-load-config@^4.0.1: lilconfig "^3.0.0" yaml "^2.3.4" -postcss-merge-longhand@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-7.0.3.tgz#cb31d8f2381dccf560c0454ce565f0dd0cfbd366" - integrity sha512-8waYomFxshdv6M9Em3QRM9MettRLDRcH2JQi2l0Z1KlYD/vhal3gbkeSES0NuACXOlZBB0V/B0AseHZaklzWOA== +postcss-merge-longhand@^7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-7.0.4.tgz#a52d0662b4b29420f3b64a8d5b0ac5133d8db776" + integrity sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A== dependencies: postcss-value-parser "^4.2.0" - stylehacks "^7.0.3" + stylehacks "^7.0.4" -postcss-merge-rules@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-7.0.3.tgz#2340495eba01aff0dc98d92ce9433167e39b4616" - integrity sha512-2eSas2p3voPxNfdI5sQrvIkMaeUHpVc3EezgVs18hz/wRTQAC9U99tp9j3W5Jx9/L3qHkEDvizEx/LdnmumIvQ== +postcss-merge-rules@^7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-7.0.4.tgz#648cc864d3121e6ec72c2a4f08df1cc801e60ce8" + integrity sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg== dependencies: browserslist "^4.23.3" caniuse-api "^3.0.0" cssnano-utils "^5.0.0" - postcss-selector-parser "^6.1.1" + postcss-selector-parser "^6.1.2" postcss-minify-font-values@^7.0.0: version "7.0.0" @@ -6000,13 +5942,13 @@ postcss-minify-params@^7.0.2: cssnano-utils "^5.0.0" postcss-value-parser "^4.2.0" -postcss-minify-selectors@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-7.0.3.tgz#355ef9cc2136b62398b8c2521cb26efc16b070cc" - integrity sha512-SxTgUQSgBk6wEqzQZKEv1xQYIp9UBju6no9q+npohzSdhuSICQdkqmD1UMKkZWItS3olJSJMDDEY9WOJ5oGJew== +postcss-minify-selectors@^7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-7.0.4.tgz#2b69c99ec48a1c223fce4840609d9c53340a11f5" + integrity sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA== dependencies: cssesc "^3.0.0" - postcss-selector-parser "^6.1.1" + postcss-selector-parser "^6.1.2" postcss-nested@^6.0.1, postcss-nested@^6.2.0: version "6.2.0" @@ -6015,14 +5957,14 @@ postcss-nested@^6.0.1, postcss-nested@^6.2.0: dependencies: postcss-selector-parser "^6.1.1" -postcss-nesting@^12.1.5: - version "12.1.5" - resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.1.5.tgz#e5e2dc1d63e6166c194da45aa28c04d4024db98f" - integrity sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ== +postcss-nesting@^13.0.0: + version "13.0.1" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-13.0.1.tgz#c405796d7245a3e4c267a9956cacfe9670b5d43e" + integrity sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ== dependencies: - "@csstools/selector-resolve-nested" "^1.1.0" - "@csstools/selector-specificity" "^3.1.1" - postcss-selector-parser "^6.1.0" + "@csstools/selector-resolve-nested" "^3.0.0" + "@csstools/selector-specificity" "^5.0.0" + postcss-selector-parser "^7.0.0" postcss-normalize-charset@^7.0.0: version "7.0.0" @@ -6109,7 +6051,7 @@ postcss-reduce-transforms@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.1.0, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2: +postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2: version "6.1.2" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== @@ -6117,6 +6059,14 @@ postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.15, postcss-select cssesc "^3.0.0" util-deprecate "^1.0.2" +postcss-selector-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz#41bd8b56f177c093ca49435f65731befe25d6b9c" + integrity sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + postcss-svgo@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-7.0.1.tgz#2b63571d8e9568384df334bac9917baff4d23f58" @@ -6125,26 +6075,26 @@ postcss-svgo@^7.0.1: postcss-value-parser "^4.2.0" svgo "^3.3.2" -postcss-unique-selectors@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-7.0.2.tgz#3e97445b3cd47701c7e457fafe60c76e39d12d4d" - integrity sha512-CjSam+7Vf8cflJQsHrMS0P2hmy9u0+n/P001kb5eAszLmhjMqrt/i5AqQuNFihhViwDvEAezqTmXqaYXL2ugMw== +postcss-unique-selectors@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-7.0.3.tgz#483fc11215b23d517d5d9bbe5833d9915619ca33" + integrity sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g== dependencies: - postcss-selector-parser "^6.1.1" + postcss-selector-parser "^6.1.2" postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.38, postcss@^8.4.41, postcss@^8.4.43, postcss@^8.4.44: - version "8.4.45" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.45.tgz#538d13d89a16ef71edbf75d895284ae06b79e603" - integrity sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q== +postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.43, postcss@^8.4.45, postcss@^8.4.47: + version "8.4.49" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== dependencies: nanoid "^3.3.7" - picocolors "^1.0.1" - source-map-js "^1.2.0" + picocolors "^1.1.1" + source-map-js "^1.2.1" prelude-ls@^1.2.1: version "1.2.1" @@ -6174,7 +6124,7 @@ prompts@^2.4.2: kleur "^3.0.3" sisteransi "^1.0.5" -property-expr@^2.0.4: +property-expr@^2.0.5: version "2.0.6" resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.6.tgz#f77bc00d5928a6c748414ad12882e83f24aec1e8" integrity sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA== @@ -6295,6 +6245,11 @@ readdir-glob@^1.1.2: dependencies: minimatch "^5.1.0" +readdirp@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.0.2.tgz#388fccb8b75665da3abffe2d8f8ed59fe74c230a" + integrity sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA== + readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -6314,25 +6269,20 @@ redis-parser@^3.0.0: dependencies: redis-errors "^1.0.0" -regenerator-runtime@^0.14.0: - version "0.14.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" - integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== - regexp-tree@^0.1.24, regexp-tree@~0.1.1: version "0.1.27" resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz#2198f0ef54518ffa743fe74d983b56ffd631b6cd" integrity sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA== regexp.prototype.flags@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" - integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + version "1.5.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" + integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== dependencies: - call-bind "^1.0.6" + call-bind "^1.0.7" define-properties "^1.2.1" es-errors "^1.3.0" - set-function-name "^2.0.1" + set-function-name "^2.0.2" regexpp@^3.0.0: version "3.2.0" @@ -6353,6 +6303,11 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + requrl@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/requrl/-/requrl-3.0.2.tgz#d376104193b02a2d874dde68454c2db2dfeb0fac" @@ -6427,35 +6382,37 @@ rollup-plugin-visualizer@^5.12.0: yargs "^17.5.1" rollup@^3.28.1: - version "3.29.4" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981" - integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw== + version "3.29.5" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.5.tgz#8a2e477a758b520fb78daf04bca4c522c1da8a54" + integrity sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w== optionalDependencies: fsevents "~2.3.2" -rollup@^4.18.0, rollup@^4.20.0: - version "4.21.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.2.tgz#f41f277a448d6264e923dd1ea179f0a926aaf9b7" - integrity sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw== +rollup@^4.20.0, rollup@^4.24.3: + version "4.25.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.25.0.tgz#74dff4b5c2777dfc490f9711393925da50171787" + integrity sha512-uVbClXmR6wvx5R1M3Od4utyLUxrmOcEm3pAtMphn73Apq19PDtHpgZoEvqH2YnnaNUuvKmg2DgRd2Sqv+odyqg== dependencies: - "@types/estree" "1.0.5" + "@types/estree" "1.0.6" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.21.2" - "@rollup/rollup-android-arm64" "4.21.2" - "@rollup/rollup-darwin-arm64" "4.21.2" - "@rollup/rollup-darwin-x64" "4.21.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.21.2" - "@rollup/rollup-linux-arm-musleabihf" "4.21.2" - "@rollup/rollup-linux-arm64-gnu" "4.21.2" - "@rollup/rollup-linux-arm64-musl" "4.21.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.21.2" - "@rollup/rollup-linux-riscv64-gnu" "4.21.2" - "@rollup/rollup-linux-s390x-gnu" "4.21.2" - "@rollup/rollup-linux-x64-gnu" "4.21.2" - "@rollup/rollup-linux-x64-musl" "4.21.2" - "@rollup/rollup-win32-arm64-msvc" "4.21.2" - "@rollup/rollup-win32-ia32-msvc" "4.21.2" - "@rollup/rollup-win32-x64-msvc" "4.21.2" + "@rollup/rollup-android-arm-eabi" "4.25.0" + "@rollup/rollup-android-arm64" "4.25.0" + "@rollup/rollup-darwin-arm64" "4.25.0" + "@rollup/rollup-darwin-x64" "4.25.0" + "@rollup/rollup-freebsd-arm64" "4.25.0" + "@rollup/rollup-freebsd-x64" "4.25.0" + "@rollup/rollup-linux-arm-gnueabihf" "4.25.0" + "@rollup/rollup-linux-arm-musleabihf" "4.25.0" + "@rollup/rollup-linux-arm64-gnu" "4.25.0" + "@rollup/rollup-linux-arm64-musl" "4.25.0" + "@rollup/rollup-linux-powerpc64le-gnu" "4.25.0" + "@rollup/rollup-linux-riscv64-gnu" "4.25.0" + "@rollup/rollup-linux-s390x-gnu" "4.25.0" + "@rollup/rollup-linux-x64-gnu" "4.25.0" + "@rollup/rollup-linux-x64-musl" "4.25.0" + "@rollup/rollup-win32-arm64-msvc" "4.25.0" + "@rollup/rollup-win32-ia32-msvc" "4.25.0" + "@rollup/rollup-win32-x64-msvc" "4.25.0" fsevents "~2.3.2" run-applescript@^7.0.0: @@ -6507,15 +6464,17 @@ safe-regex@^2.1.1: regexp-tree "~0.1.1" sass@^1.58.0: - version "1.78.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.78.0.tgz#cef369b2f9dc21ea1d2cf22c979f52365da60841" - integrity sha512-AaIqGSrjo5lA2Yg7RvFZrlXDBCp3nV4XP73GrLGvdRWWwk+8H3l0SDvq/5bA4eF+0RFPLuWUk3E+P1U/YqnpsQ== + version "1.80.6" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.80.6.tgz#5d0aa55763984effe41e40019c9571ab73e6851f" + integrity sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg== dependencies: - chokidar ">=3.0.0 <4.0.0" + chokidar "^4.0.0" immutable "^4.0.0" source-map-js ">=0.6.2 <2.0.0" + optionalDependencies: + "@parcel/watcher" "^2.4.1" -scule@^1.0.0, scule@^1.2.0, scule@^1.3.0: +scule@^1.0.0, scule@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/scule/-/scule-1.3.0.tgz#6efbd22fd0bb801bdcc585c89266a7d2daa8fbd3" integrity sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g== @@ -6530,15 +6489,15 @@ semver@^6.0.0, semver@^6.1.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.0.0, semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.4, semver@^7.6.2, semver@^7.6.3: +semver@^7.0.0, semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.4, semver@^7.6.3: version "7.6.3" resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== +send@0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" depd "2.0.0" @@ -6568,15 +6527,15 @@ serve-placeholder@^2.0.2: dependencies: defu "^6.1.4" -serve-static@^1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== +serve-static@^1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" + integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== dependencies: - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.18.0" + send "0.19.0" set-blocking@^2.0.0: version "2.0.0" @@ -6595,7 +6554,7 @@ set-function-length@^1.2.1: gopd "^1.0.1" has-property-descriptors "^1.0.2" -set-function-name@^2.0.1: +set-function-name@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== @@ -6652,10 +6611,10 @@ signal-exit@^4.0.1, signal-exit@^4.1.0: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== -simple-git@^3.25.0: - version "3.26.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.26.0.tgz#9ee91de402206911dcb752c65db83f5177e18121" - integrity sha512-5tbkCSzuskR6uA7uA23yjasmA0RzugVo8QM2bpsnxkrgP13eisFT7TMS4a+xKEJvbmr4qf+l0WT3eKa9IxxUyw== +simple-git@^3.27.0: + version "3.27.0" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.27.0.tgz#f4b09e807bda56a4a3968f635c0e4888d3decbd5" + integrity sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA== dependencies: "@kwsites/file-exists" "^1.1.1" "@kwsites/promise-deferred" "^1.1.1" @@ -6700,10 +6659,10 @@ sortablejs@1.14.0: resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.14.0.tgz#6d2e17ccbdb25f464734df621d4f35d4ab35b3d8" integrity sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w== -"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" - integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== +"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0, source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-support@~0.5.20: version "0.5.21" @@ -6770,14 +6729,14 @@ statuses@2.0.1: integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== std-env@^3.7.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2" - integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== + version "3.8.0" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.8.0.tgz#b56ffc1baf1a29dcc80a3bdf11d7fca7c315e7d5" + integrity sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w== streamx@^2.15.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.20.0.tgz#5f3608483499a9346852122b26042f964ceec931" - integrity sha512-ZGd1LhDeGFucr1CUCTBOS58ZhEendd0ttpGT3usTvosS4ntIwKN9LJFp+OeCSprsCPL14BXVRZlHGRY1V9PVzQ== + version "2.20.1" + resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.20.1.tgz#471c4f8b860f7b696feb83d5b125caab2fdbb93c" + integrity sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA== dependencies: fast-fifo "^1.3.2" queue-tick "^1.0.1" @@ -6785,7 +6744,16 @@ streamx@^2.15.0: optionalDependencies: bare-events "^2.2.0" -"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -6845,7 +6813,14 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -6888,13 +6863,13 @@ strip-literal@^2.1.0: dependencies: js-tokens "^9.0.0" -stylehacks@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-7.0.3.tgz#c661773377739e9282dc5347a300bd3539a63514" - integrity sha512-4DqtecvI/Nd+2BCvW9YEF6lhBN5UM50IJ1R3rnEAhBwbCKf4VehRf+uqvnVArnBayjYD/WtT3g0G/HSRxWfTRg== +stylehacks@^7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-7.0.4.tgz#9c21f7374f4bccc0082412b859b3c89d77d3277c" + integrity sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww== dependencies: browserslist "^4.23.3" - postcss-selector-parser "^6.1.1" + postcss-selector-parser "^6.1.2" sucrase@^3.32.0: version "3.35.0" @@ -6916,13 +6891,6 @@ superjson@^2.2.1: dependencies: copy-anything "^3.0.2" -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -6977,10 +6945,10 @@ tailwind-config-viewer@^2.0.4: portfinder "^1.0.26" replace-in-file "^6.1.0" -tailwindcss@^3.2.7, tailwindcss@~3.4.4: - version "3.4.10" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.10.tgz#70442d9aeb78758d1f911af29af8255ecdb8ffef" - integrity sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w== +tailwindcss@^3.2.7, tailwindcss@~3.4.13: + version "3.4.14" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.14.tgz#6dd23a7f54ec197b19159e91e3bb1e55e7aa73ac" + integrity sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA== dependencies: "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" @@ -7032,9 +7000,9 @@ tar@^6.1.11, tar@^6.2.0: yallist "^4.0.0" terser@^5.17.4: - version "5.31.6" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.6.tgz#c63858a0f0703988d0266a82fcbf2d7ba76422b1" - integrity sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg== + version "5.36.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e" + integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -7042,11 +7010,9 @@ terser@^5.17.4: source-map-support "~0.5.20" text-decoder@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.1.1.tgz#5df9c224cebac4a7977720b9f083f9efa1aefde8" - integrity sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA== - dependencies: - b4a "^1.6.4" + version "1.2.1" + resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.1.tgz#e173f5121d97bfa3ff8723429ad5ba92e1ead67e" + integrity sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ== text-table@^0.2.0: version "0.2.0" @@ -7067,29 +7033,24 @@ thenify-all@^1.0.0: dependencies: any-promise "^1.0.0" +tiny-case@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tiny-case/-/tiny-case-1.0.3.tgz#d980d66bc72b5d5a9ca86fb7c9ffdb9c898ddd03" + integrity sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q== + tiny-invariant@^1.1.0: version "1.3.3" resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== -tinyglobby@0.2.5, tinyglobby@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.5.tgz#8cdd1df1b155bf2a3c4d5ea2581489f967a38318" - integrity sha512-Dlqgt6h0QkoHttG53/WGADNh9QhcjCAIZMTERAVhdpmIBEejSuLI9ZmGKWzB7tweBjlk30+s/ofi4SLmBeTYhw== +tinyglobby@0.2.10, tinyglobby@^0.2.6, tinyglobby@^0.2.9: + version "0.2.10" + resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.10.tgz#e712cf2dc9b95a1f5c5bbd159720e15833977a0f" + integrity sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew== dependencies: - fdir "^6.2.0" + fdir "^6.4.2" picomatch "^4.0.2" -tinyrainbow@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/tinyrainbow/-/tinyrainbow-1.2.0.tgz#5c57d2fc0fb3d1afd78465c33ca885d04f02abb5" - integrity sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -7118,9 +7079,9 @@ tr46@~0.0.3: integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== ts-api-utils@^1.0.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" - integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + version "1.4.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.0.tgz#709c6f2076e511a81557f3d07a0cbd566ae8195c" + integrity sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ== ts-interface-checker@^0.1.9: version "0.1.13" @@ -7169,15 +7130,15 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== -type-fest@^3.8.0: - version "3.13.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" - integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== +type-fest@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== -type-fest@^4.8.3: - version "4.26.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.26.0.tgz#703f263af10c093cd6277d079e26b9e17d517c4b" - integrity sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw== +type-fest@^4.18.2, type-fest@^4.7.1, type-fest@^4.8.3: + version "4.26.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.26.1.tgz#a4a17fa314f976dd3e6d6675ef6c775c16d7955e" + integrity sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg== type-is@^1.6.16: version "1.6.18" @@ -7231,12 +7192,12 @@ typed-array-length@^1.0.6: is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" -typescript@^5.4.5: - version "5.5.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba" - integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== +typescript@^5.6.3: + version "5.6.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b" + integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== -ufo@^1.1.2, ufo@^1.3.2, ufo@^1.4.0, ufo@^1.5.3, ufo@^1.5.4: +ufo@^1.1.2, ufo@^1.3.2, ufo@^1.5.4: version "1.5.4" resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.4.tgz#16d6949674ca0c9e0fbbae1fa20a71d7b1ded754" integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ== @@ -7301,7 +7262,7 @@ unctx@^2.3.1: magic-string "^0.30.0" unplugin "^1.3.1" -undici-types@~6.19.2: +undici-types@~6.19.8: version "6.19.8" resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== @@ -7313,7 +7274,7 @@ undici@^5.28.4: dependencies: "@fastify/busboy" "^2.0.0" -unenv@^1.10.0, unenv@^1.9.0: +unenv@^1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.10.0.tgz#c3394a6c6e4cfe68d699f87af456fe3f0db39571" integrity sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ== @@ -7324,14 +7285,14 @@ unenv@^1.10.0, unenv@^1.9.0: node-fetch-native "^1.6.4" pathe "^1.1.2" -unhead@1.10.4: - version "1.10.4" - resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.10.4.tgz#12590431af24ae4ac101dbf88a33e63089c1a508" - integrity sha512-qKiYhgZ4IuDbylP409cdwK/8WEIi5cOSIBei/OXzxFs4uxiTZHSSa8NC1qPu2kooxHqxyoXGBw8ARms9zOsbxw== +unhead@1.11.11, unhead@^1.11.11: + version "1.11.11" + resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.11.11.tgz#5115d42ccb4c76fa6053b5b83831a1e14de901a1" + integrity sha512-98tM2R8OWJhvS6uqTewkfIrsPqFU/VwnKpU2tVZ+jPXSWgWSLmM3K2Y2v5AEM4bZjmC/XH8pLVGzbqB7xzFI/Q== dependencies: - "@unhead/dom" "1.10.4" - "@unhead/schema" "1.10.4" - "@unhead/shared" "1.10.4" + "@unhead/dom" "1.11.11" + "@unhead/schema" "1.11.11" + "@unhead/shared" "1.11.11" hookable "^5.5.3" unicorn-magic@^0.1.0: @@ -7339,12 +7300,12 @@ unicorn-magic@^0.1.0: resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4" integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== -unimport@^3.11.1, unimport@^3.7.2: - version "3.11.1" - resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.11.1.tgz#b750eb69fbacf481e000829a79eb9da19919f33e" - integrity sha512-DuB1Uoq01LrrXTScxnwOoMSlTXxyKcULguFxbLrMDFcE/CO0ZWHpEiyhovN0mycPt7K6luAHe8laqvwvuoeUPg== +unimport@^3.12.0, unimport@^3.13.1: + version "3.13.1" + resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.13.1.tgz#4362340e2df7edad212c693d33808189e058dded" + integrity sha512-nNrVzcs93yrZQOW77qnyOVHtb68LegvhYFwxFMfuuWScmwQmyVCG/NBuN8tYsaGzgQUVYv34E/af+Cc9u4og4A== dependencies: - "@rollup/pluginutils" "^5.1.0" + "@rollup/pluginutils" "^5.1.2" acorn "^8.12.1" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" @@ -7356,19 +7317,19 @@ unimport@^3.11.1, unimport@^3.7.2: pkg-types "^1.2.0" scule "^1.3.0" strip-literal "^2.1.0" - unplugin "^1.12.2" + unplugin "^1.14.1" universalify@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -unplugin-vue-router@^0.10.7: - version "0.10.7" - resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.10.7.tgz#678f0008828894407ef675b8b80e20dd1f964020" - integrity sha512-5KEh7Swc1L2Xh5WOD7yQLeB5bO3iTw+Hst7qMxwmwYcPm9qVrtrRTZUftn2Hj4is17oMKgqacyWadjQzwW5B/Q== +unplugin-vue-router@^0.10.8: + version "0.10.8" + resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.10.8.tgz#a868cb64e3c27aba98b312aa757e8cb48830b891" + integrity sha512-xi+eLweYAqolIoTRSmumbi6Yx0z5M0PLvl+NFNVWHJgmE2ByJG1SZbrn+TqyuDtIyln20KKgq8tqmL7aLoiFjw== dependencies: - "@babel/types" "^7.25.2" + "@babel/types" "^7.25.4" "@rollup/pluginutils" "^5.1.0" "@vue-macros/common" "^1.12.2" ast-walker-scope "^0.6.2" @@ -7380,31 +7341,31 @@ unplugin-vue-router@^0.10.7: mlly "^1.7.1" pathe "^1.1.2" scule "^1.3.0" - unplugin "^1.12.1" + unplugin "^1.12.2" yaml "^2.5.0" -unplugin@^1.10.0, unplugin@^1.12.1, unplugin@^1.12.2, unplugin@^1.12.3, unplugin@^1.3.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.13.1.tgz#d33e338374bfb80755a3789ed7de25b8f006131c" - integrity sha512-6Kq1iSSwg7KyjcThRUks9LuqDAKvtnioxbL9iEtB9ctTyBA5OmrB8gZd/d225VJu1w3UpUsKV7eGrvf59J7+VA== +unplugin@^1.10.0, unplugin@^1.12.2, unplugin@^1.14.1, unplugin@^1.15.0, unplugin@^1.3.1: + version "1.15.0" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.15.0.tgz#cd1e92e537ab14a03354d6f83f29d536fac2e5a9" + integrity sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA== dependencies: - acorn "^8.12.1" + acorn "^8.14.0" webpack-virtual-modules "^0.6.2" -unstorage@^1.10.2: - version "1.11.1" - resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.11.1.tgz#6635ddb07ade7a34d42f9193a2d314cae2137841" - integrity sha512-3NVszU4MGlO21WWnkSq0xnPVMHnMyB5DdJQyGRAg/DUZVeQjWRinLOia89iw5KGpllRtoA5+N+xnq75MAsPAOA== +unstorage@^1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.13.1.tgz#090b30de978ee8755b3ad7bbc00acfade124ac13" + integrity sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg== dependencies: anymatch "^3.1.3" chokidar "^3.6.0" + citty "^0.1.6" destr "^2.0.3" - h3 "^1.12.0" - listhen "^1.7.2" + h3 "^1.13.0" + listhen "^1.9.0" lru-cache "^10.4.3" - mri "^1.2.0" node-fetch-native "^1.6.4" - ofetch "^1.3.4" + ofetch "^1.4.1" ufo "^1.5.4" untun@^0.1.3: @@ -7416,18 +7377,18 @@ untun@^0.1.3: consola "^3.2.3" pathe "^1.1.1" -untyped@^1.4.0, untyped@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/untyped/-/untyped-1.4.2.tgz#7945ea53357635434284e6112fd1afe84dd5dcab" - integrity sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q== +untyped@^1.4.0, untyped@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/untyped/-/untyped-1.5.1.tgz#2ccf3ee09419d59a44c21a192877ab45aa98361a" + integrity sha512-reBOnkJBFfBZ8pCKaeHgfZLcehXtM6UTxc+vqs1JvCps0c4amLNp3fhdGBZwYp+VLyoY9n3X5KOP7lCyWBUX9A== dependencies: - "@babel/core" "^7.23.7" - "@babel/standalone" "^7.23.8" - "@babel/types" "^7.23.6" + "@babel/core" "^7.25.7" + "@babel/standalone" "^7.25.7" + "@babel/types" "^7.25.7" defu "^6.1.4" - jiti "^1.21.0" + jiti "^2.3.1" mri "^1.2.0" - scule "^1.2.0" + scule "^1.3.0" unwasm@^0.3.9: version "0.3.9" @@ -7446,19 +7407,24 @@ upath@^2.0.1: resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== -update-browserslist-db@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" - integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== +update-browserslist-db@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" + integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== dependencies: - escalade "^3.1.2" - picocolors "^1.0.1" + escalade "^3.2.0" + picocolors "^1.1.0" uqr@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/uqr/-/uqr-0.1.2.tgz#5c6cd5dcff9581f9bb35b982cb89e2c483a41d7d" integrity sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA== +uri-js-replace@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uri-js-replace/-/uri-js-replace-1.0.1.tgz#c285bb352b701c9dfdaeffc4da5be77f936c9048" + integrity sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g== + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -7476,10 +7442,10 @@ util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -uuid@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" - integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== +uuid@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-10.0.0.tgz#5a95aa454e6e002725c79055fd42aaba30ca6294" + integrity sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ== validate-npm-package-license@^3.0.1: version "3.0.4" @@ -7495,11 +7461,11 @@ vary@^1.1.2: integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== vee-validate@^4.9.5: - version "4.13.2" - resolved "https://registry.yarnpkg.com/vee-validate/-/vee-validate-4.13.2.tgz#cf601c9ac029d58a15aecc1dbab28b15628f0a0e" - integrity sha512-HlpR/6MJ92TW9f135umMZKUqdd/tFQTxLNSf2ImbU4Y/MlLVAUpF1l64VdjTOhbClAqPjCb5p/SqHDxLpUHXrw== + version "4.14.7" + resolved "https://registry.yarnpkg.com/vee-validate/-/vee-validate-4.14.7.tgz#736a500a1a9e7ea2d33c230d71f55a7a69c0a610" + integrity sha512-XVb1gBFJR57equ11HEI8uxNqFJkwvCP/b+p+saDPQYaW7k45cdF5jsYPEJud1o29GD6h2y7Awm7Qfm89yKi74A== dependencies: - "@vue/devtools-api" "^6.6.1" + "@vue/devtools-api" "^7.5.2" type-fest "^4.8.3" vite-hot-client@^0.2.3: @@ -7507,21 +7473,20 @@ vite-hot-client@^0.2.3: resolved "https://registry.yarnpkg.com/vite-hot-client/-/vite-hot-client-0.2.3.tgz#db52aba46edbcfa7906dbca8255fd35b9a9270b2" integrity sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg== -vite-node@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.0.5.tgz#36d909188fc6e3aba3da5fc095b3637d0d18e27b" - integrity sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q== +vite-node@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.4.tgz#97ffb6de913fd8d42253afe441f9512e9dbdfd5c" + integrity sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg== dependencies: cac "^6.7.14" - debug "^4.3.5" + debug "^4.3.7" pathe "^1.1.2" - tinyrainbow "^1.2.0" vite "^5.0.0" -vite-plugin-checker@^0.7.2: - version "0.7.2" - resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.7.2.tgz#093ffdf9ccf51b2c9eab7101480bd0217ae99536" - integrity sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw== +vite-plugin-checker@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.8.0.tgz#33419857a623b35c9483e4f603d4ca8b6984acde" + integrity sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g== dependencies: "@babel/code-frame" "^7.12.13" ansi-escapes "^4.3.0" @@ -7553,10 +7518,10 @@ vite-plugin-inspect@^0.8.7: picocolors "^1.0.1" sirv "^2.0.4" -vite-plugin-vue-inspector@^5.1.3: - version "5.2.0" - resolved "https://registry.yarnpkg.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.2.0.tgz#4c29926aa86e23492a99ac24401f4f9cd4f4c171" - integrity sha512-wWxyb9XAtaIvV/Lr7cqB1HIzmHZFVUJsTNm3yAxkS87dgh/Ky4qr2wDEWNxF23fdhVa3jQ8MZREpr4XyiuaRqA== +vite-plugin-vue-inspector@5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.1.3.tgz#b85c85c2a2d5fe5aa382039f3230068cc0837996" + integrity sha512-pMrseXIDP1Gb38mOevY+BvtNGNqiqmqa2pKB99lnLsADQww9w9xMbAfT4GB6RUoaOkSPrtlXqpq2Fq+Dj2AgFg== dependencies: "@babel/core" "^7.23.0" "@babel/plugin-proposal-decorators" "^7.23.0" @@ -7568,7 +7533,7 @@ vite-plugin-vue-inspector@^5.1.3: kolorist "^1.8.0" magic-string "^0.30.4" -vite-plugin-vuetify@^2.0.0: +vite-plugin-vuetify@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/vite-plugin-vuetify/-/vite-plugin-vuetify-2.0.4.tgz#9beb700ee50da58d83399721d6cf4b0af83202d5" integrity sha512-A4cliYUoP/u4AWSRVRvAPKgpgR987Pss7LpFa7s1GvOe8WjgDq92Rt3eVXrvgxGCWvZsPKziVqfHHdCMqeDhfw== @@ -7577,10 +7542,10 @@ vite-plugin-vuetify@^2.0.0: debug "^4.3.3" upath "^2.0.1" -vite@^5.0.0, vite@^5.4.3: - version "5.4.3" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.3.tgz#771c470e808cb6732f204e1ee96c2ed65b97a0eb" - integrity sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q== +vite@^5.0.0, vite@^5.4.10, vite@^5.4.9: + version "5.4.11" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.11.tgz#3b415cd4aed781a356c1de5a9ebafb837715f6e5" + integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q== dependencies: esbuild "^0.21.3" postcss "^8.4.43" @@ -7632,12 +7597,12 @@ vscode-uri@^3.0.2: resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f" integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw== -vue-bundle-renderer@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.1.0.tgz#2832511e0eb826810e20138fbc811e9c2a7c4e57" - integrity sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q== +vue-bundle-renderer@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.1.1.tgz#77147f96d865729828b3a5dff2bccffa8370dde9" + integrity sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g== dependencies: - ufo "^1.5.3" + ufo "^1.5.4" vue-demi@>=0.14.10, vue-demi@^0.14.10: version "0.14.10" @@ -7662,28 +7627,28 @@ vue-eslint-parser@^9.0.3, vue-eslint-parser@^9.4.3: lodash "^4.17.21" semver "^7.3.6" -vue-router@^4.4.3: - version "4.4.3" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.4.3.tgz#58a39dc804632bfb6d26f052aa8f6718bd130299" - integrity sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A== +vue-router@^4.4.5: + version "4.4.5" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.4.5.tgz#bdf535e4cf32414ebdea6b4b403593efdb541388" + integrity sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q== dependencies: - "@vue/devtools-api" "^6.6.3" + "@vue/devtools-api" "^6.6.4" vue-toastification@^2.0.0-rc.5: version "2.0.0-rc.5" resolved "https://registry.yarnpkg.com/vue-toastification/-/vue-toastification-2.0.0-rc.5.tgz#92798604d806ae473cfb76ed776fae294280f8f8" integrity sha512-q73e5jy6gucEO/U+P48hqX+/qyXDozAGmaGgLFm5tXX4wJBcVsnGp4e/iJqlm9xzHETYOilUuwOUje2Qg1JdwA== -vue@^3.5.0: - version "3.5.1" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.1.tgz#507eb4ab010a2ad894f8d7765f32e68be1604815" - integrity sha512-k4UNnbPOEskodSxMtv+B9GljdB0C9ubZDOmW6vnXVGIfMqmEsY2+ohasjGguhGkMkrcP/oOrbH0dSD41x5JQFw== +vue@^3.5.0, vue@^3.5.12: + version "3.5.12" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.12.tgz#e08421c601b3617ea2c9ef0413afcc747130b36c" + integrity sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg== dependencies: - "@vue/compiler-dom" "3.5.1" - "@vue/compiler-sfc" "3.5.1" - "@vue/runtime-dom" "3.5.1" - "@vue/server-renderer" "3.5.1" - "@vue/shared" "3.5.1" + "@vue/compiler-dom" "3.5.12" + "@vue/compiler-sfc" "3.5.12" + "@vue/runtime-dom" "3.5.12" + "@vue/server-renderer" "3.5.12" + "@vue/shared" "3.5.12" vuedraggable@^4.1.0: version "4.1.0" @@ -7692,10 +7657,10 @@ vuedraggable@^4.1.0: dependencies: sortablejs "1.14.0" -vuetify@^3.0.0: - version "3.7.1" - resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.7.1.tgz#102dc8b6c8795955d874da85375a98e369c102d6" - integrity sha512-N1XlczbgeGt/O+JUk72QPrqcDaRIXUdptUciJqGyTvZ9cfMoSlEWs6TZO+dOOfXbKvmIMFMycYg4dgSHDpCPhg== +vuetify@^3.7.3: + version "3.7.4" + resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.7.4.tgz#52de97ecb4e456c92dc81c723d1e21b1ddccdbc6" + integrity sha512-Y8UU5wUDQXC3oz2uumPb8IOdvB4XMCxtxnmqdOc+LihNuPlkSgxIwf92ndRzbOtJFKHsggFUxpyLqpQp+A+5kg== webidl-conversions@^3.0.0: version "3.0.1" @@ -7763,7 +7728,16 @@ word-wrap@^1.2.5: resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -7811,10 +7785,15 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml-ast-parser@0.0.43: + version "0.0.43" + resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" + integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== + yaml@^2.3.4, yaml@^2.5.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.1.tgz#c9772aacf62cb7494a95b0c4f1fb065b563db130" - integrity sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q== + version "2.6.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.0.tgz#14059ad9d0b1680d0f04d3a60fe00f3a857303c3" + integrity sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ== yargs-parser@^21.1.1: version "21.1.1" @@ -7844,18 +7823,15 @@ yocto-queue@^0.1.0: resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== -yup@^0.32.11: - version "0.32.11" - resolved "https://registry.yarnpkg.com/yup/-/yup-0.32.11.tgz#d67fb83eefa4698607982e63f7ca4c5ed3cf18c5" - integrity sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg== +yup@^1.4: + version "1.4.0" + resolved "https://registry.yarnpkg.com/yup/-/yup-1.4.0.tgz#898dcd660f9fb97c41f181839d3d65c3ee15a43e" + integrity sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg== dependencies: - "@babel/runtime" "^7.15.4" - "@types/lodash" "^4.14.175" - lodash "^4.17.21" - lodash-es "^4.17.21" - nanoclone "^0.2.1" - property-expr "^2.0.4" + property-expr "^2.0.5" + tiny-case "^1.0.3" toposort "^2.0.2" + type-fest "^2.19.0" zhead@^2.2.4: version "2.2.4" From 2f2cfb3e694376d998c92c682a180bfecee62e4a Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Tue, 3 Dec 2024 11:31:49 +0100 Subject: [PATCH 40/58] Remove redundant dotenv loading in settings.py --- citizenvoice/citizenvoice/settings.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/citizenvoice/citizenvoice/settings.py b/citizenvoice/citizenvoice/settings.py index 81e16bec..e0b9d660 100644 --- a/citizenvoice/citizenvoice/settings.py +++ b/citizenvoice/citizenvoice/settings.py @@ -37,9 +37,6 @@ # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent -# read environment variable form .env file -load_dotenv("../.env") - # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/ From 48955fa7c45dc844aeed10ca7d42f3e9f25ad072 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Tue, 3 Dec 2024 11:32:00 +0100 Subject: [PATCH 41/58] Disable inclusion of deprecated survey_design app in urlpatterns --- citizenvoice/citizenvoice/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citizenvoice/citizenvoice/urls.py b/citizenvoice/citizenvoice/urls.py index bcaf635f..2e891b1b 100644 --- a/citizenvoice/citizenvoice/urls.py +++ b/citizenvoice/citizenvoice/urls.py @@ -20,7 +20,7 @@ urlpatterns = [ path('admin/', admin.site.urls), - path('', include('survey_design.urls')), + # path('', include('survey_design.urls')), # enables the survey_design (depricated) app path('respondent/', include('respondent.urls')), path('auth/', include('users.urls')), path('api/v2/', include('apiapp.urls')), From d068604c70ff43d9fd307ccd84ccee1ce8656977 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 12:28:07 +0100 Subject: [PATCH 42/58] create docker compose for api, uses secrets --- docker-compose.yaml | 103 ++++++++++++++++++++++---------------------- 1 file changed, 52 insertions(+), 51 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index c2a211b9..6be12086 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,77 +1,78 @@ services: - nuxt-app: - build: ./frontend - container_name: nuxt-app - restart: always - ports: - - "3000:3000" - command: "yarn run start" - networks: - - nuxt-network - depends_on: - - django-app - environment: - - API_PARTY_CMS_URL=http://django-app:8000/api/v2 - db-postgis: + db_postgis: image: postgis/postgis:16-3.4-alpine container_name: db-postgis - environment: - - POSTGRES_PASSWORD=${POSTGRES_PWD} volumes: - - postgis-data:/var/lib/postgresql/data + - postgis_data:/var/lib/postgresql/data - ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh + environment: + - POSTGRES_PASSWORD=/run/secrets/postgres_password restart: unless-stopped + secrets: + - postgres_password ports: - - "5432:5432" + - 5432:5432 networks: - - nuxt-network + - civo-network - django-app: - # TODO: debug the connection to the api app. + django_app: build: context: ./citizenvoice command: sh -c "python manage.py runserver 0.0.0.0:8000" container_name: django-app + environment: + - SECRET_KEY=/run/secrets/django_token + - DATABASE_ENGINE=postgis + - POSTGRES_DBASE=civo + - POSTGRES_USER=citizen # don't use quotes here + - POSTGRES_PWD=/run/secrets/postgres_password + - POSTGRES_HOST=db_postgis + - POSTGRES_PORT=5432 + - DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1] + - DJANGO_DEBUG=1 volumes: - ./citizenvoice:/citizenvoice ports: - 8000:8000 - environment: - - SECRET_KEY=${SECRET_KEY} - - DATABASE_ENGINE=${DATABASE_ENGINE} - - POSTGRES_DBASE=${POSTGRES_DBASE} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_PWD=${POSTGRES_PWD} - - POSTGRES_HOST=${POSTGRES_HOST} - - POSTGRES_PORT=${POSTGRES_PORT} - - DJANGO_ALLOWED_HOSTS=${DJANGO_ALLOWED_HOSTS} + # env_file: + # - path: ./.env.dev + # required: true + secrets: + - django_token + - postgres_password depends_on: - - db-postgis - restart: unless-stopped + - db_postgis + # restart: unless-stopped networks: - - nuxt-network + - civo-network + + - web-server: - build: - context: ./container/nginx - container_name: web-server - volumes: - - ./container/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf - - web-root:/var/www/citizenvoice - ports: - - 80:80 - networks: - - nuxt-network - depends_on: - - nuxt-app - - django-app - restart: unless-stopped +# web_server: +# build: +# context: ./container/nginx +# container_name: web-server +# volumes: +# - ./container/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf +# - web-root:/var/www/citizenvoice +# ports: +# - 8000:8000 +# networks: +# - nuxt-network +# depends_on: +# - django-app +# restart: unless-stopped +secrets: + postgres_password: + file: ./secrets/postgres_password.txt + django_token: + file: ./secrets/django_token.txt volumes: - web-root: - postgis-data: +# web_root: + postgis_data: networks: - nuxt-network: + civo-network: driver: bridge \ No newline at end of file From 11fd80bc0c8155387bc8546147c1fb10f719bd93 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 12:34:05 +0100 Subject: [PATCH 43/58] Add PostgreSQL user and database configuration to docker-compose --- docker-compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 6be12086..864ca532 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,6 +8,8 @@ services: - ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh environment: - POSTGRES_PASSWORD=/run/secrets/postgres_password + - POSTGRES_USER=citizen + - POSTGRES_DB=civo restart: unless-stopped secrets: - postgres_password From a292b3dd7473477b4a28d0d25e9a64f9bfb9708e Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 12:36:19 +0100 Subject: [PATCH 44/58] Remove example environment variables from .env.example --- .env.example | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .env.example diff --git a/.env.example b/.env.example deleted file mode 100644 index 8573b6f0..00000000 --- a/.env.example +++ /dev/null @@ -1,10 +0,0 @@ -SECRET_KEY='' -DATABASE_ENGINE='postgis' -POSTGRES_DBASE='' -POSTGRES_USER='' -POSTGRES_PWD='' -POSTGRES_HOST='localhost' -POSTGRES_PORT='5432' -TEST_DBASE='' - - From 0b6cbe46b6d75978f64bfeb56faba222d33d728d Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 12:36:31 +0100 Subject: [PATCH 45/58] Add PYTHONDONTWRITEBYTECODE environment variable and comment out EXPOSE and CMD in Dockerfile --- citizenvoice/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/citizenvoice/Dockerfile b/citizenvoice/Dockerfile index 409591c8..f530b141 100644 --- a/citizenvoice/Dockerfile +++ b/citizenvoice/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.11-alpine3.20 ENV PYTHONUNBUFFERED 1 +ENV PYTHONDONTWRITEBYTECODE 1 RUN mkdir -p /var/www/dockerize-django/citizenvoice WORKDIR /var/www/dockerize-django/citizenvoice @@ -32,7 +33,7 @@ USER django # ENV DJANGO_ALLOWED_HOSTS=localhost -EXPOSE 8000 +# EXPOSE 8000 # CMD [ "/wait-for-it.sh", "db-postgis:5432", "--", "python", "manage.py", "runserver", "0.0.0.0:8000" ] -CMD ["uwsig", "--socket", ":8000", "--workers", "4", "--master", "--enable-threads", "--module", "citizenvoice.wsgi"] +# CMD ["uwsig", "--socket", ":8000", "--workers", "4", "--master", "--enable-threads", "--module", "citizenvoice.wsgi"] From 5bb7f06a0f493ebde8c8c4bdea2fa24a3031cbd2 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 12:37:35 +0100 Subject: [PATCH 46/58] remove loading of environmental variable from .env. Environmental variables are manged by docker, and loading them here caused issues --- citizenvoice/citizenvoice/settings.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/citizenvoice/citizenvoice/settings.py b/citizenvoice/citizenvoice/settings.py index e0b9d660..4e08f91f 100644 --- a/citizenvoice/citizenvoice/settings.py +++ b/citizenvoice/citizenvoice/settings.py @@ -32,7 +32,7 @@ DEFAULT_SURVEY_PUBLISHING_DURATION = 7 # read environment variable form .env file -load_dotenv("../.env") +# load_dotenv("../.env") # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent @@ -41,14 +41,14 @@ # See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = os.getenv('SECRET_KEY', 'setme-in-production') +SECRET_KEY = os.environ.get('SECRET_KEY', 'setme-in-production') # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = bool(os.environ.get("DEBUG", default=0)) +DEBUG = bool(os.environ.get("DJANGO_DEBUG", default=0)) # Choice of database engine will be retrieved from .env file -DATABASE_ENGINE = os.getenv('DATABASE_ENGINE') +DATABASE_ENGINE = os.environ.get("DATABASE_ENGINE") ALLOWED_HOSTS = os.environ.get("DJANGO_ALLOWED_HOSTS").split(" ") @@ -143,7 +143,7 @@ # The code below is necessary to distinguish a deployment for CI with # GitHub Actions (IF part) and any other deployment (the ELSE part) -if os.getenv('GITHUB_WORKFLOW'): +if os.environ.get('GITHUB_WORKFLOW'): DATABASES = { 'default': { 'ENGINE': 'django.contrib.gis.db.backends.postgis', @@ -159,13 +159,13 @@ DATABASES = { 'default': { 'ENGINE': 'django.contrib.gis.db.backends.postgis', - 'NAME': os.getenv('POSTGRES_DBASE'), - 'USER': os.getenv('POSTGRES_USER'), - 'PASSWORD': os.getenv('POSTGRES_PWD'), - 'HOST': os.getenv('POSTGRES_HOST'), - 'PORT': os.getenv('POSTGRES_PORT'), + 'NAME': os.environ.get('POSTGRES_DBASE'), + 'USER': os.environ.get('POSTGRES_USER'), + 'PASSWORD': os.environ.get('POSTGRES_PWD'), + 'HOST': os.environ.get('POSTGRES_HOST'), + 'PORT': os.environ.get('POSTGRES_PORT'), 'TEST': { - 'NAME': os.getenv('TEST_DBASE'), + 'NAME': os.environ.get('TEST_DBASE'), }, } } From 3651fb054c0161992107b0ff41bef3e14e68b17f Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 17:21:20 +0100 Subject: [PATCH 47/58] add healthcheck to wait for db service, implement use of .env --- citizenvoice/Dockerfile | 2 +- docker-compose.yaml | 29 +++++++++++++++++------------ 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/citizenvoice/Dockerfile b/citizenvoice/Dockerfile index f530b141..bcda17c4 100644 --- a/citizenvoice/Dockerfile +++ b/citizenvoice/Dockerfile @@ -27,7 +27,7 @@ RUN adduser --disabled-password --no-create-home django COPY . . RUN chown -R django:django /var/www/dockerize-django/citizenvoice USER django -# Copy wait-for-it.sh script + # COPY wait-for-it.sh /wait-for-it.sh # RUN chmod +x /wait-for-it.sh diff --git a/docker-compose.yaml b/docker-compose.yaml index 864ca532..0612dda2 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -3,13 +3,19 @@ services: db_postgis: image: postgis/postgis:16-3.4-alpine container_name: db-postgis + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${DB_USER} -d ${DATABASE}"] + interval: 10s + timeout: 30s + retries: 5 + start_period: 30s volumes: - postgis_data:/var/lib/postgresql/data - ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh environment: - POSTGRES_PASSWORD=/run/secrets/postgres_password - - POSTGRES_USER=citizen - - POSTGRES_DB=civo + - POSTGRES_USER=${DB_USER} + - POSTGRES_DB=${DATABASE} restart: unless-stopped secrets: - postgres_password @@ -25,26 +31,25 @@ services: container_name: django-app environment: - SECRET_KEY=/run/secrets/django_token - - DATABASE_ENGINE=postgis - - POSTGRES_DBASE=civo - - POSTGRES_USER=citizen # don't use quotes here + - DATABASE_ENGINE=${JDANGO_DB_ENGING} + - POSTGRES_DBASE=${DATABASE} + - POSTGRES_USER=${DB_USER} - POSTGRES_PWD=/run/secrets/postgres_password - POSTGRES_HOST=db_postgis - - POSTGRES_PORT=5432 - - DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1] - - DJANGO_DEBUG=1 + - POSTGRES_PORT=${DB_PORT} + - DJANGO_ALLOWED_HOSTS=${DJANGO_ALLOWED_HOSTS} + - DJANGO_DEBUG=${DJANGO_DEBUG} volumes: - ./citizenvoice:/citizenvoice ports: - 8000:8000 - # env_file: - # - path: ./.env.dev - # required: true secrets: - django_token - postgres_password depends_on: - - db_postgis + db_postgis: + condition: service_healthy + restart: true # restart: unless-stopped networks: - civo-network From c3f0890109a43fe290a9ca3cd612bb448fcf6880 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 17:30:15 +0100 Subject: [PATCH 48/58] Apply migrations to django app --- docker-compose.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 0612dda2..50c9e736 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -27,7 +27,9 @@ services: django_app: build: context: ./citizenvoice - command: sh -c "python manage.py runserver 0.0.0.0:8000" + command: > + sh -c "python manage.py migrate && + python manage.py runserver 0.0.0.0:8000" container_name: django-app environment: - SECRET_KEY=/run/secrets/django_token From c13f56a8721cc3f33bb96ea2deb3923bce95dd71 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Fri, 6 Dec 2024 17:32:01 +0100 Subject: [PATCH 49/58] Rename django_app service to django_api in docker-compose.yaml and clean up commented-out web_server configuration --- docker-compose.yaml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 50c9e736..45eee41f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -24,7 +24,7 @@ services: networks: - civo-network - django_app: + django_api: build: context: ./citizenvoice command: > @@ -52,34 +52,15 @@ services: db_postgis: condition: service_healthy restart: true - # restart: unless-stopped networks: - civo-network - - -# web_server: -# build: -# context: ./container/nginx -# container_name: web-server -# volumes: -# - ./container/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf -# - web-root:/var/www/citizenvoice -# ports: -# - 8000:8000 -# networks: -# - nuxt-network -# depends_on: -# - django-app -# restart: unless-stopped - secrets: postgres_password: file: ./secrets/postgres_password.txt django_token: file: ./secrets/django_token.txt volumes: -# web_root: postgis_data: networks: From 82b533dcaac2388be0e48b67e0d5e1b449f30009 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 8 Dec 2024 21:36:51 +0100 Subject: [PATCH 50/58] Fix typo in DATABASE_ENGINE environment variable in docker-compose.yaml --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 45eee41f..b17f1ad8 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -33,7 +33,7 @@ services: container_name: django-app environment: - SECRET_KEY=/run/secrets/django_token - - DATABASE_ENGINE=${JDANGO_DB_ENGING} + - DATABASE_ENGINE=${JDANGO_DB_ENGINE} - POSTGRES_DBASE=${DATABASE} - POSTGRES_USER=${DB_USER} - POSTGRES_PWD=/run/secrets/postgres_password From 67526782edcaabfd24e9a9220627a785a7ca5985 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 8 Dec 2024 22:02:08 +0100 Subject: [PATCH 51/58] include civilian survey in docker container --- citizenvoice/civilian-db.json | 1 + docker-compose.yaml | 1 + 2 files changed, 2 insertions(+) create mode 100644 citizenvoice/civilian-db.json diff --git a/citizenvoice/civilian-db.json b/citizenvoice/civilian-db.json new file mode 100644 index 00000000..fecb1f09 --- /dev/null +++ b/citizenvoice/civilian-db.json @@ -0,0 +1 @@ +[{"model": "admin.logentry", "pk": 1, "fields": {"action_time": "2024-05-08T16:00:55.923Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Demo 1", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 2, "fields": {"action_time": "2024-05-08T16:01:26.787Z", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Demo 2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 3, "fields": {"action_time": "2024-05-08T16:01:59.522Z", "user": 1, "content_type": 10, "object_id": "1", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 4, "fields": {"action_time": "2024-05-08T16:03:07.121Z", "user": 1, "content_type": 8, "object_id": "1", "object_repr": "popular places", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 5, "fields": {"action_time": "2024-05-08T16:03:09.134Z", "user": 1, "content_type": 10, "object_id": "2", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 6, "fields": {"action_time": "2024-05-08T16:03:19.143Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 7, "fields": {"action_time": "2024-05-08T16:03:58.828Z", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "What do you do?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 8, "fields": {"action_time": "2024-05-08T16:04:04.880Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must be answered geospatially or not\"]}}]"}}, {"model": "admin.logentry", "pk": 9, "fields": {"action_time": "2024-05-08T16:05:53.927Z", "user": 1, "content_type": 10, "object_id": "3", "object_repr": "Enschede", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 10, "fields": {"action_time": "2024-05-08T16:05:58.873Z", "user": 1, "content_type": 13, "object_id": "3", "object_repr": "Where do you live?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 11, "fields": {"action_time": "2024-05-08T16:06:23.344Z", "user": 1, "content_type": 13, "object_id": "4", "object_repr": "Question for demo 2?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 12, "fields": {"action_time": "2024-05-08T16:06:33.535Z", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "What do you do?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 13, "fields": {"action_time": "2024-05-08T16:07:28.543Z", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "PointFeature object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 14, "fields": {"action_time": "2024-05-08T16:17:57.329Z", "user": 1, "content_type": 10, "object_id": "1", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 15, "fields": {"action_time": "2024-05-08T16:31:25.673Z", "user": 1, "content_type": 10, "object_id": "3", "object_repr": "Enschede", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 16, "fields": {"action_time": "2024-05-08T16:31:25.676Z", "user": 1, "content_type": 10, "object_id": "2", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 17, "fields": {"action_time": "2024-05-08T16:31:33.293Z", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "PointFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 18, "fields": {"action_time": "2024-05-08T16:38:18.987Z", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "PointFeature object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 19, "fields": {"action_time": "2024-05-15T10:07:17.934Z", "user": 1, "content_type": 10, "object_id": "4", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 20, "fields": {"action_time": "2024-05-15T10:07:35.637Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 21, "fields": {"action_time": "2024-06-12T09:14:53.009Z", "user": 1, "content_type": 14, "object_id": "f765df5a-c77f-4e71-b751-2c9156b6a408", "object_repr": "Response f765df5a-c77f-4e71-b751-2c9156b6a408 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 22, "fields": {"action_time": "2024-06-12T09:14:53.017Z", "user": 1, "content_type": 14, "object_id": "f41fe333-53d0-4def-9707-6341275b84dc", "object_repr": "Response f41fe333-53d0-4def-9707-6341275b84dc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 23, "fields": {"action_time": "2024-06-12T09:14:53.018Z", "user": 1, "content_type": 14, "object_id": "e94ea703-453c-4544-8178-29f6ae72a2c3", "object_repr": "Response e94ea703-453c-4544-8178-29f6ae72a2c3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 24, "fields": {"action_time": "2024-06-12T09:14:53.018Z", "user": 1, "content_type": 14, "object_id": "df113198-6181-4eb2-bf98-94de6af457e9", "object_repr": "Response df113198-6181-4eb2-bf98-94de6af457e9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 25, "fields": {"action_time": "2024-06-12T09:14:53.019Z", "user": 1, "content_type": 14, "object_id": "d391312c-9b3d-4909-82c9-83288dab6451", "object_repr": "Response d391312c-9b3d-4909-82c9-83288dab6451 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 26, "fields": {"action_time": "2024-06-12T09:14:53.020Z", "user": 1, "content_type": 14, "object_id": "c03140a7-a3fb-487d-bca4-09878caf70e3", "object_repr": "Response c03140a7-a3fb-487d-bca4-09878caf70e3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 27, "fields": {"action_time": "2024-06-12T09:14:53.020Z", "user": 1, "content_type": 14, "object_id": "be46e9d6-a73c-42b8-98b3-7be2e6e39c08", "object_repr": "Response be46e9d6-a73c-42b8-98b3-7be2e6e39c08 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 28, "fields": {"action_time": "2024-06-12T09:14:53.021Z", "user": 1, "content_type": 14, "object_id": "b6fb97e8-673d-41d3-8db4-83f0a1fec2d9", "object_repr": "Response b6fb97e8-673d-41d3-8db4-83f0a1fec2d9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 29, "fields": {"action_time": "2024-06-12T09:14:53.022Z", "user": 1, "content_type": 14, "object_id": "b543a9b5-db92-4950-9989-3f1471928d1f", "object_repr": "Response b543a9b5-db92-4950-9989-3f1471928d1f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 30, "fields": {"action_time": "2024-06-12T09:14:53.022Z", "user": 1, "content_type": 14, "object_id": "b0e7d769-73f3-4d8d-bf70-3010febd20df", "object_repr": "Response b0e7d769-73f3-4d8d-bf70-3010febd20df (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 31, "fields": {"action_time": "2024-06-12T09:14:53.023Z", "user": 1, "content_type": 14, "object_id": "add311c8-08b8-4a0f-933d-3ab116967b57", "object_repr": "Response add311c8-08b8-4a0f-933d-3ab116967b57 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 32, "fields": {"action_time": "2024-06-12T09:14:53.023Z", "user": 1, "content_type": 14, "object_id": "a15f4bb7-251f-4638-a3bb-a4babf400542", "object_repr": "Response a15f4bb7-251f-4638-a3bb-a4babf400542 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 33, "fields": {"action_time": "2024-06-12T09:14:53.024Z", "user": 1, "content_type": 14, "object_id": "9d6cd33c-f2f1-4281-b263-a40052456958", "object_repr": "Response 9d6cd33c-f2f1-4281-b263-a40052456958 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 34, "fields": {"action_time": "2024-06-12T09:14:53.024Z", "user": 1, "content_type": 14, "object_id": "984627fc-814e-4c02-b978-dd51ee64088d", "object_repr": "Response 984627fc-814e-4c02-b978-dd51ee64088d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 35, "fields": {"action_time": "2024-06-12T09:14:53.025Z", "user": 1, "content_type": 14, "object_id": "97fff2f5-eb46-4d16-bdb6-a52c5dbdc34d", "object_repr": "Response 97fff2f5-eb46-4d16-bdb6-a52c5dbdc34d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 36, "fields": {"action_time": "2024-06-12T09:14:53.025Z", "user": 1, "content_type": 14, "object_id": "9026f681-0171-42ce-8824-4b8db34becfd", "object_repr": "Response 9026f681-0171-42ce-8824-4b8db34becfd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 37, "fields": {"action_time": "2024-06-12T09:14:53.026Z", "user": 1, "content_type": 14, "object_id": "87d263b4-05bd-4e67-b970-8528d31ba39a", "object_repr": "Response 87d263b4-05bd-4e67-b970-8528d31ba39a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 38, "fields": {"action_time": "2024-06-12T09:14:53.027Z", "user": 1, "content_type": 14, "object_id": "846ef479-9c2b-420e-aec6-48e8ea58df1c", "object_repr": "Response 846ef479-9c2b-420e-aec6-48e8ea58df1c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 39, "fields": {"action_time": "2024-06-12T09:14:53.027Z", "user": 1, "content_type": 14, "object_id": "81a15f02-756b-46ae-a7f1-64a912a00720", "object_repr": "Response 81a15f02-756b-46ae-a7f1-64a912a00720 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 40, "fields": {"action_time": "2024-06-12T09:14:53.028Z", "user": 1, "content_type": 14, "object_id": "7fea840d-2e71-433b-b042-4882dc9c4821", "object_repr": "Response 7fea840d-2e71-433b-b042-4882dc9c4821 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 41, "fields": {"action_time": "2024-06-12T09:14:53.028Z", "user": 1, "content_type": 14, "object_id": "7f2eb62d-39a3-44a9-adc1-451a61556acf", "object_repr": "Response 7f2eb62d-39a3-44a9-adc1-451a61556acf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 42, "fields": {"action_time": "2024-06-12T09:14:53.029Z", "user": 1, "content_type": 14, "object_id": "7a86c417-41eb-4b0d-b98b-a24c8628d5f3", "object_repr": "Response 7a86c417-41eb-4b0d-b98b-a24c8628d5f3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 43, "fields": {"action_time": "2024-06-12T09:14:53.029Z", "user": 1, "content_type": 14, "object_id": "633e4c91-0bfc-4b55-86b0-8c78bc24e16f", "object_repr": "Response 633e4c91-0bfc-4b55-86b0-8c78bc24e16f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 44, "fields": {"action_time": "2024-06-12T09:14:53.030Z", "user": 1, "content_type": 14, "object_id": "5ede54b1-2f21-4748-9ab4-2e094e7969e0", "object_repr": "Response 5ede54b1-2f21-4748-9ab4-2e094e7969e0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 45, "fields": {"action_time": "2024-06-12T09:14:53.030Z", "user": 1, "content_type": 14, "object_id": "52358415-fe72-459a-bb7a-c48576325dec", "object_repr": "Response 52358415-fe72-459a-bb7a-c48576325dec (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 46, "fields": {"action_time": "2024-06-12T09:14:53.032Z", "user": 1, "content_type": 14, "object_id": "4d4a3cdf-3758-4f9b-8162-d079ffb1f734", "object_repr": "Response 4d4a3cdf-3758-4f9b-8162-d079ffb1f734 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 47, "fields": {"action_time": "2024-06-12T09:14:53.032Z", "user": 1, "content_type": 14, "object_id": "4bf17813-b999-448e-a6d1-ed1ac4b2767e", "object_repr": "Response 4bf17813-b999-448e-a6d1-ed1ac4b2767e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2024-06-12T09:14:53.033Z", "user": 1, "content_type": 14, "object_id": "4bd5dd2b-b3a3-4145-a302-ea8e55a25a03", "object_repr": "Response 4bd5dd2b-b3a3-4145-a302-ea8e55a25a03 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2024-06-12T09:14:53.033Z", "user": 1, "content_type": 14, "object_id": "47d0e65b-ccad-4a6e-9234-eeb535301bae", "object_repr": "Response 47d0e65b-ccad-4a6e-9234-eeb535301bae (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2024-06-12T09:14:53.034Z", "user": 1, "content_type": 14, "object_id": "466d40cd-bcd5-4329-bca0-6761ba7444dc", "object_repr": "Response 466d40cd-bcd5-4329-bca0-6761ba7444dc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2024-06-12T09:14:53.034Z", "user": 1, "content_type": 14, "object_id": "390614bb-834e-4952-ad1e-97a8ca97120e", "object_repr": "Response 390614bb-834e-4952-ad1e-97a8ca97120e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2024-06-12T09:14:53.035Z", "user": 1, "content_type": 14, "object_id": "33259f02-74a0-440e-9fe0-291b4b315ccc", "object_repr": "Response 33259f02-74a0-440e-9fe0-291b4b315ccc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 53, "fields": {"action_time": "2024-06-12T09:14:53.035Z", "user": 1, "content_type": 14, "object_id": "2d003ba7-ac80-422e-ab0b-54d306fdb581", "object_repr": "Response 2d003ba7-ac80-422e-ab0b-54d306fdb581 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 54, "fields": {"action_time": "2024-06-12T09:14:53.036Z", "user": 1, "content_type": 14, "object_id": "14bbe9d0-a473-4e09-8e64-4d8a7ff008af", "object_repr": "Response 14bbe9d0-a473-4e09-8e64-4d8a7ff008af (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 55, "fields": {"action_time": "2024-06-12T09:14:53.036Z", "user": 1, "content_type": 14, "object_id": "1477f7e5-86b9-4158-8a3a-a541f2b1567d", "object_repr": "Response 1477f7e5-86b9-4158-8a3a-a541f2b1567d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 56, "fields": {"action_time": "2024-06-12T09:14:53.037Z", "user": 1, "content_type": 14, "object_id": "10adf6d7-6ed5-461d-97c1-f88e00bf1dea", "object_repr": "Response 10adf6d7-6ed5-461d-97c1-f88e00bf1dea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 57, "fields": {"action_time": "2024-06-12T09:14:53.037Z", "user": 1, "content_type": 14, "object_id": "0d77106a-f524-471c-8cff-9e396f8644f6", "object_repr": "Response 0d77106a-f524-471c-8cff-9e396f8644f6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 58, "fields": {"action_time": "2024-06-12T09:38:08.878Z", "user": 1, "content_type": 10, "object_id": "5", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 59, "fields": {"action_time": "2024-06-12T09:38:24.620Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 60, "fields": {"action_time": "2024-06-19T07:14:50.691Z", "user": 1, "content_type": 11, "object_id": "11", "object_repr": "PointFeature object (11)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 61, "fields": {"action_time": "2024-06-19T08:24:23.942Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 62, "fields": {"action_time": "2024-06-19T08:25:21.756Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 63, "fields": {"action_time": "2024-06-19T08:26:18.491Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 64, "fields": {"action_time": "2024-06-19T08:27:02.847Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 65, "fields": {"action_time": "2024-06-19T08:38:35.400Z", "user": 1, "content_type": 13, "object_id": "5", "object_repr": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 66, "fields": {"action_time": "2024-06-19T08:42:09.618Z", "user": 1, "content_type": 13, "object_id": "5", "object_repr": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Choices for answers\"]}}]"}}, {"model": "admin.logentry", "pk": 67, "fields": {"action_time": "2024-06-19T08:43:49.115Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 68, "fields": {"action_time": "2024-06-19T08:44:11.100Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Survey\"]}}]"}}, {"model": "admin.logentry", "pk": 69, "fields": {"action_time": "2024-06-19T08:47:16.461Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Delf Civilian", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 70, "fields": {"action_time": "2024-06-19T08:47:29.242Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 71, "fields": {"action_time": "2024-06-19T08:49:58.236Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 72, "fields": {"action_time": "2024-06-19T08:51:24.027Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 73, "fields": {"action_time": "2024-06-19T08:58:01.017Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 74, "fields": {"action_time": "2024-06-19T08:58:09.325Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must be answered geospatially or not\"]}}]"}}, {"model": "admin.logentry", "pk": 75, "fields": {"action_time": "2024-06-19T08:59:21.534Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 76, "fields": {"action_time": "2024-06-19T09:00:23.973Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 77, "fields": {"action_time": "2024-06-19T09:00:54.475Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 78, "fields": {"action_time": "2024-06-19T09:02:13.700Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 79, "fields": {"action_time": "2024-06-19T09:02:45.567Z", "user": 1, "content_type": 13, "object_id": "12", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 80, "fields": {"action_time": "2024-06-19T09:04:32.182Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2024-06-19T09:05:39.526Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from? Please mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2024-06-19T09:06:41.649Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2024-06-19T09:07:43.664Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves? Please mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2024-06-19T09:09:07.072Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2024-06-19T09:09:44.119Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2024-06-19T09:11:08.749Z", "user": 1, "content_type": 13, "object_id": "19", "object_repr": "Is there anything else you would like to say about your neighbourhood?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2024-06-19T09:13:02.360Z", "user": 1, "content_type": 13, "object_id": "19", "object_repr": "Is there anything else you would like to say about your neighbourhood?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2024-06-19T09:13:22.411Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2024-06-19T09:13:47.888Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2024-06-19T09:14:06.526Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2024-06-19T09:14:43.073Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2024-06-19T09:15:15.005Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2024-06-19T09:16:01.220Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2024-06-19T09:16:25.100Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2024-06-19T09:16:33.181Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2024-06-19T09:17:41.593Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2024-06-19T09:47:23.928Z", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Demo 2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2024-06-19T10:02:15.217Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN Survey", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2024-06-19T10:32:42.007Z", "user": 1, "content_type": 10, "object_id": "17", "object_repr": "fc264be6-e71b-40db-a2d4-0650df5eb7f9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2024-06-19T10:32:42.008Z", "user": 1, "content_type": 10, "object_id": "16", "object_repr": "90d5cd5f-0c83-47e8-92f4-d652980eae19", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2024-06-19T10:32:42.009Z", "user": 1, "content_type": 10, "object_id": "15", "object_repr": "587cabf5-4c8e-4445-88aa-d4573afbc69c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2024-06-19T10:32:42.010Z", "user": 1, "content_type": 10, "object_id": "14", "object_repr": "9617c8f9-abf6-4363-9236-faba07b29711", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2024-06-19T10:32:42.011Z", "user": 1, "content_type": 10, "object_id": "13", "object_repr": "80f87882-d094-494f-9011-f981d69d9aa3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2024-06-19T10:32:42.012Z", "user": 1, "content_type": 10, "object_id": "12", "object_repr": "6f3cd79b-927d-4015-b92f-f716f92fe168", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2024-06-19T10:32:42.013Z", "user": 1, "content_type": 10, "object_id": "11", "object_repr": "e3460970-fa78-44df-8f73-55d339abb661", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2024-06-19T10:32:42.014Z", "user": 1, "content_type": 10, "object_id": "10", "object_repr": "67786278-a399-4d68-8c5a-d297945f7b4d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2024-06-19T10:32:42.015Z", "user": 1, "content_type": 10, "object_id": "9", "object_repr": "6c49461f-d802-473f-9db8-089708282c4c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2024-06-19T10:32:42.016Z", "user": 1, "content_type": 10, "object_id": "8", "object_repr": "38968a9a-a3a3-458d-a31f-018470deeebf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2024-06-19T10:32:42.018Z", "user": 1, "content_type": 10, "object_id": "7", "object_repr": "1819d919-19eb-485e-94ad-f31938356b71", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2024-06-19T10:32:42.019Z", "user": 1, "content_type": 10, "object_id": "5", "object_repr": "5ea006b5-8b2b-409b-b983-ac20916d50be", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2024-06-19T10:32:42.020Z", "user": 1, "content_type": 10, "object_id": "4", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2024-06-19T10:35:11.275Z", "user": 1, "content_type": 10, "object_id": "6", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2024-06-19T10:35:18.919Z", "user": 1, "content_type": 10, "object_id": "20", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2024-06-19T10:35:31.094Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2024-06-20T15:22:57.506Z", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Demo 2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2024-06-20T15:23:37.933Z", "user": 1, "content_type": 13, "object_id": "20", "object_repr": "Enter a text:", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2024-06-20T15:46:59.229Z", "user": 1, "content_type": 15, "object_id": "1", "object_repr": "Response 06a4468e-328a-45f5-b0aa-71fb87376e50:Enter a text:", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 118, "fields": {"action_time": "2024-06-25T17:21:29.216Z", "user": 1, "content_type": 14, "object_id": "ff5abbc0-9d2e-4af1-bd0d-80eb44fa3945", "object_repr": "Response ff5abbc0-9d2e-4af1-bd0d-80eb44fa3945 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 119, "fields": {"action_time": "2024-06-25T17:21:29.223Z", "user": 1, "content_type": 14, "object_id": "fc737c9a-6bbf-4335-beb0-d7fa3e1ed506", "object_repr": "Response fc737c9a-6bbf-4335-beb0-d7fa3e1ed506 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 120, "fields": {"action_time": "2024-06-25T17:21:29.224Z", "user": 1, "content_type": 14, "object_id": "f94abed5-e278-44c2-8992-5edb544f5122", "object_repr": "Response f94abed5-e278-44c2-8992-5edb544f5122 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 121, "fields": {"action_time": "2024-06-25T17:21:29.225Z", "user": 1, "content_type": 14, "object_id": "f84e5761-78a1-4f0c-a092-49385f9a4838", "object_repr": "Response f84e5761-78a1-4f0c-a092-49385f9a4838 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 122, "fields": {"action_time": "2024-06-25T17:21:29.226Z", "user": 1, "content_type": 14, "object_id": "f0b95ea3-85f0-4eeb-b63f-76c880121386", "object_repr": "Response f0b95ea3-85f0-4eeb-b63f-76c880121386 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 123, "fields": {"action_time": "2024-06-25T17:21:29.226Z", "user": 1, "content_type": 14, "object_id": "efe299c4-1dd0-4b09-983b-bfa5f3708a3f", "object_repr": "Response efe299c4-1dd0-4b09-983b-bfa5f3708a3f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 124, "fields": {"action_time": "2024-06-25T17:21:29.227Z", "user": 1, "content_type": 14, "object_id": "ef7c0f25-5f06-478a-87bc-81d10b3e80c5", "object_repr": "Response ef7c0f25-5f06-478a-87bc-81d10b3e80c5 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 125, "fields": {"action_time": "2024-06-25T17:21:29.227Z", "user": 1, "content_type": 14, "object_id": "eeccb756-ba69-4d83-a92b-518f2685e4f1", "object_repr": "Response eeccb756-ba69-4d83-a92b-518f2685e4f1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 126, "fields": {"action_time": "2024-06-25T17:21:29.228Z", "user": 1, "content_type": 14, "object_id": "ed5c9390-1554-4ee5-9ee3-5b00656fe5e2", "object_repr": "Response ed5c9390-1554-4ee5-9ee3-5b00656fe5e2 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 127, "fields": {"action_time": "2024-06-25T17:21:29.228Z", "user": 1, "content_type": 14, "object_id": "e2a7ec0a-5f21-4bf8-a97c-6c2c7fa3aa0e", "object_repr": "Response e2a7ec0a-5f21-4bf8-a97c-6c2c7fa3aa0e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 128, "fields": {"action_time": "2024-06-25T17:21:29.229Z", "user": 1, "content_type": 14, "object_id": "e1dc74b9-053d-4943-8b15-283da3547b1b", "object_repr": "Response e1dc74b9-053d-4943-8b15-283da3547b1b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 129, "fields": {"action_time": "2024-06-25T17:21:29.230Z", "user": 1, "content_type": 14, "object_id": "de70fe95-6b25-4502-b863-b8fa4ae0d7eb", "object_repr": "Response de70fe95-6b25-4502-b863-b8fa4ae0d7eb (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 130, "fields": {"action_time": "2024-06-25T17:21:29.230Z", "user": 1, "content_type": 14, "object_id": "de360f11-86d0-4057-acd8-1c553d4c8987", "object_repr": "Response de360f11-86d0-4057-acd8-1c553d4c8987 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 131, "fields": {"action_time": "2024-06-25T17:21:29.231Z", "user": 1, "content_type": 14, "object_id": "d91e5d1a-085a-45a9-8a5a-b1907122907c", "object_repr": "Response d91e5d1a-085a-45a9-8a5a-b1907122907c (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 132, "fields": {"action_time": "2024-06-25T17:21:29.231Z", "user": 1, "content_type": 14, "object_id": "d718f445-1584-4bd5-b009-d0f8a83292c9", "object_repr": "Response d718f445-1584-4bd5-b009-d0f8a83292c9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 133, "fields": {"action_time": "2024-06-25T17:21:29.232Z", "user": 1, "content_type": 14, "object_id": "d3dc4efe-b0dc-44d2-91e9-dca422d949ea", "object_repr": "Response d3dc4efe-b0dc-44d2-91e9-dca422d949ea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 134, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d2235f98-d44e-4031-93a0-f6ff1fd8a622", "object_repr": "Response d2235f98-d44e-4031-93a0-f6ff1fd8a622 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 135, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d1915d3c-1af9-4b70-a255-cdff8bec59ee", "object_repr": "Response d1915d3c-1af9-4b70-a255-cdff8bec59ee (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 136, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d0851610-571f-4b18-b8df-4671cf35f162", "object_repr": "Response d0851610-571f-4b18-b8df-4671cf35f162 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 137, "fields": {"action_time": "2024-06-25T17:21:29.234Z", "user": 1, "content_type": 14, "object_id": "d05b534b-f5e6-4f33-beac-9ef4f8600fe0", "object_repr": "Response d05b534b-f5e6-4f33-beac-9ef4f8600fe0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 138, "fields": {"action_time": "2024-06-25T17:21:29.234Z", "user": 1, "content_type": 14, "object_id": "cfbb343a-f842-4aee-a537-92b3bb0b27d3", "object_repr": "Response cfbb343a-f842-4aee-a537-92b3bb0b27d3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 139, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ce8b57e2-ad59-4202-b039-6fa0b2632bf8", "object_repr": "Response ce8b57e2-ad59-4202-b039-6fa0b2632bf8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 140, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ce249dbd-ba52-4844-a18a-6c688968c94b", "object_repr": "Response ce249dbd-ba52-4844-a18a-6c688968c94b (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 141, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ccb775ce-b774-456b-974a-338b742214b5", "object_repr": "Response ccb775ce-b774-456b-974a-338b742214b5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 142, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c9bb0d6b-ebc3-495c-8704-78d95831c737", "object_repr": "Response c9bb0d6b-ebc3-495c-8704-78d95831c737 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 143, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c5c2c76b-83aa-425f-9fc9-6bb22f49770a", "object_repr": "Response c5c2c76b-83aa-425f-9fc9-6bb22f49770a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 144, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c4d4196a-1843-48f0-8d6d-94c6a604307f", "object_repr": "Response c4d4196a-1843-48f0-8d6d-94c6a604307f (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 145, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c48913ed-feaa-4100-a394-0d425631a04c", "object_repr": "Response c48913ed-feaa-4100-a394-0d425631a04c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 146, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c3bc6ce7-6a4f-467f-bc92-ab30614de0a6", "object_repr": "Response c3bc6ce7-6a4f-467f-bc92-ab30614de0a6 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 147, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c0654806-882a-4592-8f89-b72c533f16bc", "object_repr": "Response c0654806-882a-4592-8f89-b72c533f16bc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 148, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "ba3cb7b4-4030-4d6b-8e9f-c2ab4c56d8d2", "object_repr": "Response ba3cb7b4-4030-4d6b-8e9f-c2ab4c56d8d2 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 149, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "b6487f8e-a2cf-4240-bb09-28efb1d2889b", "object_repr": "Response b6487f8e-a2cf-4240-bb09-28efb1d2889b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 150, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "b401a71d-f24a-42ba-8753-474450cd5971", "object_repr": "Response b401a71d-f24a-42ba-8753-474450cd5971 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 151, "fields": {"action_time": "2024-06-25T17:21:29.239Z", "user": 1, "content_type": 14, "object_id": "ace22b6e-18f3-4c97-a3f6-d54d1f17878c", "object_repr": "Response ace22b6e-18f3-4c97-a3f6-d54d1f17878c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 152, "fields": {"action_time": "2024-06-25T17:21:29.239Z", "user": 1, "content_type": 14, "object_id": "aba42297-f5ec-4fdc-8bc9-f8e8623683c4", "object_repr": "Response aba42297-f5ec-4fdc-8bc9-f8e8623683c4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 153, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "aa7f21a5-90f8-424b-9ca7-f5fbb22aeba0", "object_repr": "Response aa7f21a5-90f8-424b-9ca7-f5fbb22aeba0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 154, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a9bb5ef0-f2a5-42dc-bff0-19ab0874759f", "object_repr": "Response a9bb5ef0-f2a5-42dc-bff0-19ab0874759f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 155, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a9ad1053-3c07-4c5f-b8d9-09f686309f73", "object_repr": "Response a9ad1053-3c07-4c5f-b8d9-09f686309f73 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 156, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a64e07a9-a6dc-44f5-a75d-9fc5ee68e8e8", "object_repr": "Response a64e07a9-a6dc-44f5-a75d-9fc5ee68e8e8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 157, "fields": {"action_time": "2024-06-25T17:21:29.241Z", "user": 1, "content_type": 14, "object_id": "a53d16c9-22a2-432e-b433-6363c31f9229", "object_repr": "Response a53d16c9-22a2-432e-b433-6363c31f9229 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 158, "fields": {"action_time": "2024-06-25T17:21:29.241Z", "user": 1, "content_type": 14, "object_id": "a0c3f20c-6b0c-45b9-b704-55c6c06605f4", "object_repr": "Response a0c3f20c-6b0c-45b9-b704-55c6c06605f4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 159, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9ce722d3-cc8e-4713-b4b1-58a17f72243b", "object_repr": "Response 9ce722d3-cc8e-4713-b4b1-58a17f72243b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 160, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9b93dad4-3d35-468b-bdb6-15f49c09fd22", "object_repr": "Response 9b93dad4-3d35-468b-bdb6-15f49c09fd22 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 161, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9a7d09e8-d894-4d79-9dab-c74ba419ddf4", "object_repr": "Response 9a7d09e8-d894-4d79-9dab-c74ba419ddf4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 162, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9a091816-1e7a-402e-9bac-45de0630b615", "object_repr": "Response 9a091816-1e7a-402e-9bac-45de0630b615 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 163, "fields": {"action_time": "2024-06-25T17:21:29.243Z", "user": 1, "content_type": 14, "object_id": "991537b1-e78b-4587-b519-6bc029a675c1", "object_repr": "Response 991537b1-e78b-4587-b519-6bc029a675c1 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 164, "fields": {"action_time": "2024-06-25T17:21:29.243Z", "user": 1, "content_type": 14, "object_id": "9652689f-46b5-4366-8287-75327830ba0a", "object_repr": "Response 9652689f-46b5-4366-8287-75327830ba0a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 165, "fields": {"action_time": "2024-06-25T17:21:29.244Z", "user": 1, "content_type": 14, "object_id": "90399364-c8b6-4740-90fd-358bd01b0d03", "object_repr": "Response 90399364-c8b6-4740-90fd-358bd01b0d03 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 166, "fields": {"action_time": "2024-06-25T17:21:29.244Z", "user": 1, "content_type": 14, "object_id": "8bfaa50f-d917-4c1f-9749-13dcc80e6b60", "object_repr": "Response 8bfaa50f-d917-4c1f-9749-13dcc80e6b60 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 167, "fields": {"action_time": "2024-06-25T17:21:29.245Z", "user": 1, "content_type": 14, "object_id": "88679525-10fa-4dfc-82fd-002d43c12c9d", "object_repr": "Response 88679525-10fa-4dfc-82fd-002d43c12c9d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 168, "fields": {"action_time": "2024-06-25T17:21:29.245Z", "user": 1, "content_type": 14, "object_id": "869d8343-37b5-4474-a87c-630f3b86633d", "object_repr": "Response 869d8343-37b5-4474-a87c-630f3b86633d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 169, "fields": {"action_time": "2024-06-25T17:21:29.246Z", "user": 1, "content_type": 14, "object_id": "7ffe43f9-6813-4415-86e0-09b2624702ea", "object_repr": "Response 7ffe43f9-6813-4415-86e0-09b2624702ea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 170, "fields": {"action_time": "2024-06-25T17:21:29.246Z", "user": 1, "content_type": 14, "object_id": "7edb0eec-58a8-4f52-8314-b674d1c67ed4", "object_repr": "Response 7edb0eec-58a8-4f52-8314-b674d1c67ed4 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 171, "fields": {"action_time": "2024-06-25T17:21:29.247Z", "user": 1, "content_type": 14, "object_id": "7d0b92dc-2a3b-457f-96e1-a2b8a6be9e4d", "object_repr": "Response 7d0b92dc-2a3b-457f-96e1-a2b8a6be9e4d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 172, "fields": {"action_time": "2024-06-25T17:21:29.247Z", "user": 1, "content_type": 14, "object_id": "7a6f0ef8-9f9c-4864-9258-5e94d36a78c5", "object_repr": "Response 7a6f0ef8-9f9c-4864-9258-5e94d36a78c5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 173, "fields": {"action_time": "2024-06-25T17:21:29.248Z", "user": 1, "content_type": 14, "object_id": "778c0e9f-5896-41ad-b727-48c836c6b987", "object_repr": "Response 778c0e9f-5896-41ad-b727-48c836c6b987 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 174, "fields": {"action_time": "2024-06-25T17:21:29.248Z", "user": 1, "content_type": 14, "object_id": "73b6d6f1-acfd-4ef5-b86a-c3d2489a709c", "object_repr": "Response 73b6d6f1-acfd-4ef5-b86a-c3d2489a709c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 175, "fields": {"action_time": "2024-06-25T17:21:29.249Z", "user": 1, "content_type": 14, "object_id": "6e1a2152-3c8b-4ea3-8d6b-031e8a6503d0", "object_repr": "Response 6e1a2152-3c8b-4ea3-8d6b-031e8a6503d0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 176, "fields": {"action_time": "2024-06-25T17:21:29.249Z", "user": 1, "content_type": 14, "object_id": "687ee0e0-2666-4ef8-989e-1602024429e5", "object_repr": "Response 687ee0e0-2666-4ef8-989e-1602024429e5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 177, "fields": {"action_time": "2024-06-25T17:21:29.250Z", "user": 1, "content_type": 14, "object_id": "677e4063-bf25-47b0-bd1a-ddb4a7c8e8ca", "object_repr": "Response 677e4063-bf25-47b0-bd1a-ddb4a7c8e8ca (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 178, "fields": {"action_time": "2024-06-25T17:21:29.250Z", "user": 1, "content_type": 14, "object_id": "6774a138-95eb-4ee7-b187-6f573edd9153", "object_repr": "Response 6774a138-95eb-4ee7-b187-6f573edd9153 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 179, "fields": {"action_time": "2024-06-25T17:21:29.251Z", "user": 1, "content_type": 14, "object_id": "6710d547-7538-4de6-9c5a-ceb8c27d6a13", "object_repr": "Response 6710d547-7538-4de6-9c5a-ceb8c27d6a13 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 180, "fields": {"action_time": "2024-06-25T17:21:29.251Z", "user": 1, "content_type": 14, "object_id": "66e2032a-f64c-40b1-b649-c82e3faa3453", "object_repr": "Response 66e2032a-f64c-40b1-b649-c82e3faa3453 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 181, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "65dda732-a603-4325-ab00-5f17b4000fe7", "object_repr": "Response 65dda732-a603-4325-ab00-5f17b4000fe7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 182, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "6535d611-7b87-4131-91b9-da3500338da0", "object_repr": "Response 6535d611-7b87-4131-91b9-da3500338da0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 183, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "59db8bc6-0c43-4e6b-93ea-cd2493baafb4", "object_repr": "Response 59db8bc6-0c43-4e6b-93ea-cd2493baafb4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 184, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "566007f3-b6c3-4444-baa4-58760ebabba5", "object_repr": "Response 566007f3-b6c3-4444-baa4-58760ebabba5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 185, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "564d4b47-2f4b-487f-a8bc-bd24afac79e1", "object_repr": "Response 564d4b47-2f4b-487f-a8bc-bd24afac79e1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 186, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "4e8895af-8675-41d5-9451-d133c61bc411", "object_repr": "Response 4e8895af-8675-41d5-9451-d133c61bc411 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 187, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "4afd781b-e507-4d3c-83e1-382960227c50", "object_repr": "Response 4afd781b-e507-4d3c-83e1-382960227c50 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 188, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "4864b1e3-f3aa-4d92-b29d-63452f18a2bd", "object_repr": "Response 4864b1e3-f3aa-4d92-b29d-63452f18a2bd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 189, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "43e69429-b327-41b6-8dbb-6bc0a8892971", "object_repr": "Response 43e69429-b327-41b6-8dbb-6bc0a8892971 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 190, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "42397e66-a2b5-4002-a45b-f993cd88f2a5", "object_repr": "Response 42397e66-a2b5-4002-a45b-f993cd88f2a5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 191, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "40d61bb3-ad38-431b-a114-0674ebadf154", "object_repr": "Response 40d61bb3-ad38-431b-a114-0674ebadf154 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 192, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "3d6c1b80-5b7d-4c46-b793-058528a0cf97", "object_repr": "Response 3d6c1b80-5b7d-4c46-b793-058528a0cf97 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 193, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "370aa354-2202-4dfd-b4c6-0b9f70afe2b7", "object_repr": "Response 370aa354-2202-4dfd-b4c6-0b9f70afe2b7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 194, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "3681ab92-9b74-4c9d-adf4-2ade229e6846", "object_repr": "Response 3681ab92-9b74-4c9d-adf4-2ade229e6846 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 195, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "2daab1b8-6bb1-402a-a544-ed5f89ec95b8", "object_repr": "Response 2daab1b8-6bb1-402a-a544-ed5f89ec95b8 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 196, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "280fa79e-2647-40f0-9d8a-fc810096cf5a", "object_repr": "Response 280fa79e-2647-40f0-9d8a-fc810096cf5a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 197, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "24e576d1-7c0e-45b8-bd8a-f5923b1f2132", "object_repr": "Response 24e576d1-7c0e-45b8-bd8a-f5923b1f2132 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 198, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "2125f83a-5d48-4634-b499-02e8ed4042cf", "object_repr": "Response 2125f83a-5d48-4634-b499-02e8ed4042cf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 199, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "20ead559-7959-4ed9-83f0-09dd89bfcfe4", "object_repr": "Response 20ead559-7959-4ed9-83f0-09dd89bfcfe4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 200, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "1e339b59-a5d8-4a17-9175-82263de0a1c6", "object_repr": "Response 1e339b59-a5d8-4a17-9175-82263de0a1c6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 201, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "180b0e1f-92c8-41e1-9693-015a366c8f75", "object_repr": "Response 180b0e1f-92c8-41e1-9693-015a366c8f75 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 202, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "1267e3f9-4d0a-40f6-89ee-bd3fb2c69570", "object_repr": "Response 1267e3f9-4d0a-40f6-89ee-bd3fb2c69570 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 203, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "115a29e8-96d8-4760-bf30-85fbbaa7d5e3", "object_repr": "Response 115a29e8-96d8-4760-bf30-85fbbaa7d5e3 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 204, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "0e68f70b-e245-4617-9a31-da7a46714fc7", "object_repr": "Response 0e68f70b-e245-4617-9a31-da7a46714fc7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 205, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "0af2c42c-aad1-4ccf-bc46-794f16a13569", "object_repr": "Response 0af2c42c-aad1-4ccf-bc46-794f16a13569 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 206, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "0a6dfea5-3958-480d-ac9d-1322998a2c01", "object_repr": "Response 0a6dfea5-3958-480d-ac9d-1322998a2c01 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 207, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "095751b9-4178-4139-b3d0-6f3d7a9724ec", "object_repr": "Response 095751b9-4178-4139-b3d0-6f3d7a9724ec (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 208, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "08e2e978-4466-4fbd-ac27-a7a9a7e223e4", "object_repr": "Response 08e2e978-4466-4fbd-ac27-a7a9a7e223e4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 209, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "0893bb78-931f-47ae-9c1c-592834ba3505", "object_repr": "Response 0893bb78-931f-47ae-9c1c-592834ba3505 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 210, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "06a4468e-328a-45f5-b0aa-71fb87376e50", "object_repr": "Response 06a4468e-328a-45f5-b0aa-71fb87376e50 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 211, "fields": {"action_time": "2024-06-25T17:21:29.261Z", "user": 1, "content_type": 14, "object_id": "0561cd3a-bfad-4ffa-aacd-743c9afd25f4", "object_repr": "Response 0561cd3a-bfad-4ffa-aacd-743c9afd25f4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 212, "fields": {"action_time": "2024-06-25T17:21:29.261Z", "user": 1, "content_type": 14, "object_id": "0094628c-f5b2-4d27-8400-d255dbbee1c0", "object_repr": "Response 0094628c-f5b2-4d27-8400-d255dbbee1c0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 213, "fields": {"action_time": "2024-06-26T05:12:11.353Z", "user": 1, "content_type": 14, "object_id": "f445ad60-f3b6-44c7-bd6d-446f5c215acf", "object_repr": "Response f445ad60-f3b6-44c7-bd6d-446f5c215acf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 214, "fields": {"action_time": "2024-06-26T05:12:11.357Z", "user": 1, "content_type": 14, "object_id": "efcd9127-9a24-476a-af00-f828eb76b941", "object_repr": "Response efcd9127-9a24-476a-af00-f828eb76b941 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 215, "fields": {"action_time": "2024-06-26T05:12:11.359Z", "user": 1, "content_type": 14, "object_id": "e16d9a8b-a621-48ca-a599-906604664ebe", "object_repr": "Response e16d9a8b-a621-48ca-a599-906604664ebe (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 216, "fields": {"action_time": "2024-06-26T05:12:11.359Z", "user": 1, "content_type": 14, "object_id": "e0509355-0193-4fbd-bf4c-188dc6605025", "object_repr": "Response e0509355-0193-4fbd-bf4c-188dc6605025 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 217, "fields": {"action_time": "2024-06-26T05:12:11.360Z", "user": 1, "content_type": 14, "object_id": "d7577a6f-326b-4416-a557-e9f7df686308", "object_repr": "Response d7577a6f-326b-4416-a557-e9f7df686308 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 218, "fields": {"action_time": "2024-06-26T05:12:11.361Z", "user": 1, "content_type": 14, "object_id": "bf085e8e-a06d-4137-a9f9-2001bdcb0fa1", "object_repr": "Response bf085e8e-a06d-4137-a9f9-2001bdcb0fa1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 219, "fields": {"action_time": "2024-06-26T05:12:11.362Z", "user": 1, "content_type": 14, "object_id": "a2cfa096-0fd2-45e2-a793-bed7625c9fa6", "object_repr": "Response a2cfa096-0fd2-45e2-a793-bed7625c9fa6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 220, "fields": {"action_time": "2024-06-26T05:12:11.363Z", "user": 1, "content_type": 14, "object_id": "9a0dd6c1-cb44-4232-af99-e414a5f669b8", "object_repr": "Response 9a0dd6c1-cb44-4232-af99-e414a5f669b8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 221, "fields": {"action_time": "2024-06-26T05:12:11.364Z", "user": 1, "content_type": 14, "object_id": "9156fcba-752f-4579-8aea-afb78bae19f0", "object_repr": "Response 9156fcba-752f-4579-8aea-afb78bae19f0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 222, "fields": {"action_time": "2024-06-26T05:12:11.365Z", "user": 1, "content_type": 14, "object_id": "85cbf186-cd54-4dac-a9c4-b133ebd833fd", "object_repr": "Response 85cbf186-cd54-4dac-a9c4-b133ebd833fd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 223, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "75cf9331-c130-401d-a339-55204a3aba88", "object_repr": "Response 75cf9331-c130-401d-a339-55204a3aba88 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 224, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "708aec38-c188-497f-8a5a-47cd8978fef8", "object_repr": "Response 708aec38-c188-497f-8a5a-47cd8978fef8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 225, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "5a88dfa0-16fb-48ca-85ba-678517f0a9c3", "object_repr": "Response 5a88dfa0-16fb-48ca-85ba-678517f0a9c3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 226, "fields": {"action_time": "2024-06-26T05:12:11.367Z", "user": 1, "content_type": 14, "object_id": "401c425f-e9f5-4048-b4cd-0feb67fc1f55", "object_repr": "Response 401c425f-e9f5-4048-b4cd-0feb67fc1f55 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 227, "fields": {"action_time": "2024-06-26T05:12:11.367Z", "user": 1, "content_type": 14, "object_id": "33d98c45-0df6-442a-b993-33b9d46e12a1", "object_repr": "Response 33d98c45-0df6-442a-b993-33b9d46e12a1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 228, "fields": {"action_time": "2024-06-26T05:12:11.369Z", "user": 1, "content_type": 14, "object_id": "2f287fe1-2069-4d87-bb4d-063e5cdc24c7", "object_repr": "Response 2f287fe1-2069-4d87-bb4d-063e5cdc24c7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 229, "fields": {"action_time": "2024-06-26T05:52:33.517Z", "user": 1, "content_type": 13, "object_id": "21", "object_repr": "Does this work?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 230, "fields": {"action_time": "2024-06-26T06:08:17.343Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 231, "fields": {"action_time": "2024-06-26T06:11:05.462Z", "user": 1, "content_type": 13, "object_id": "12", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 232, "fields": {"action_time": "2024-06-26T06:11:54.049Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 233, "fields": {"action_time": "2024-06-26T06:12:27.912Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 234, "fields": {"action_time": "2024-06-26T06:12:39.377Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 235, "fields": {"action_time": "2024-06-26T06:26:41.410Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 236, "fields": {"action_time": "2024-06-26T06:26:51.889Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 237, "fields": {"action_time": "2024-06-26T06:27:05.715Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 238, "fields": {"action_time": "2024-06-26T06:27:15.620Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 239, "fields": {"action_time": "2024-06-26T06:27:27.214Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 240, "fields": {"action_time": "2024-06-26T06:27:40.706Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 241, "fields": {"action_time": "2024-06-26T06:27:51.156Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 242, "fields": {"action_time": "2024-06-26T06:28:00.838Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 243, "fields": {"action_time": "2024-06-26T06:28:09.476Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 244, "fields": {"action_time": "2024-06-26T06:28:18.219Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 245, "fields": {"action_time": "2024-06-26T06:28:29.201Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 246, "fields": {"action_time": "2024-06-26T06:32:15.982Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Civilian NL", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the MapView location\", \"Map service specific options\"]}}]"}}, {"model": "admin.logentry", "pk": 247, "fields": {"action_time": "2024-06-26T06:33:02.475Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 248, "fields": {"action_time": "2024-06-26T06:33:26.892Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 249, "fields": {"action_time": "2024-06-26T06:34:40.458Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Civilian NL", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 250, "fields": {"action_time": "2024-06-26T06:36:29.116Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 251, "fields": {"action_time": "2024-06-26T06:41:48.114Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 252, "fields": {"action_time": "2024-06-26T14:44:58.797Z", "user": 1, "content_type": 15, "object_id": "40", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 253, "fields": {"action_time": "2024-06-26T14:44:58.802Z", "user": 1, "content_type": 15, "object_id": "39", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 254, "fields": {"action_time": "2024-06-26T14:44:58.802Z", "user": 1, "content_type": 15, "object_id": "38", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 255, "fields": {"action_time": "2024-06-26T14:44:58.803Z", "user": 1, "content_type": 15, "object_id": "37", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 256, "fields": {"action_time": "2024-06-26T14:44:58.803Z", "user": 1, "content_type": 15, "object_id": "36", "object_repr": "Response 44b901bb-07b9-4bfa-b72b-554b8d2f803d:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 257, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "35", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 258, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "34", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 259, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "33", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 260, "fields": {"action_time": "2024-06-26T15:02:50.907Z", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Demo 2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 261, "fields": {"action_time": "2024-06-26T15:05:19.935Z", "user": 1, "content_type": 10, "object_id": "104", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 262, "fields": {"action_time": "2024-06-26T15:05:19.938Z", "user": 1, "content_type": 10, "object_id": "103", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 263, "fields": {"action_time": "2024-06-26T15:05:19.939Z", "user": 1, "content_type": 10, "object_id": "102", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 264, "fields": {"action_time": "2024-06-26T15:05:19.939Z", "user": 1, "content_type": 10, "object_id": "101", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 265, "fields": {"action_time": "2024-06-26T15:05:19.940Z", "user": 1, "content_type": 10, "object_id": "100", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 266, "fields": {"action_time": "2024-06-26T15:05:19.941Z", "user": 1, "content_type": 10, "object_id": "99", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 267, "fields": {"action_time": "2024-06-26T15:05:19.941Z", "user": 1, "content_type": 10, "object_id": "98", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 268, "fields": {"action_time": "2024-06-26T15:05:19.942Z", "user": 1, "content_type": 10, "object_id": "97", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 269, "fields": {"action_time": "2024-06-26T15:05:19.943Z", "user": 1, "content_type": 10, "object_id": "96", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 270, "fields": {"action_time": "2024-06-26T15:05:19.943Z", "user": 1, "content_type": 10, "object_id": "95", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 271, "fields": {"action_time": "2024-06-26T15:05:19.944Z", "user": 1, "content_type": 10, "object_id": "94", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 272, "fields": {"action_time": "2024-06-26T15:05:19.944Z", "user": 1, "content_type": 10, "object_id": "93", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 273, "fields": {"action_time": "2024-06-26T15:05:19.945Z", "user": 1, "content_type": 10, "object_id": "92", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 274, "fields": {"action_time": "2024-06-26T15:05:19.945Z", "user": 1, "content_type": 10, "object_id": "91", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 275, "fields": {"action_time": "2024-06-26T15:05:19.946Z", "user": 1, "content_type": 10, "object_id": "90", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 276, "fields": {"action_time": "2024-06-26T15:05:19.947Z", "user": 1, "content_type": 10, "object_id": "89", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 277, "fields": {"action_time": "2024-06-26T15:05:19.948Z", "user": 1, "content_type": 10, "object_id": "88", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 278, "fields": {"action_time": "2024-06-26T15:05:19.948Z", "user": 1, "content_type": 10, "object_id": "87", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 279, "fields": {"action_time": "2024-06-26T15:05:19.950Z", "user": 1, "content_type": 10, "object_id": "86", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 280, "fields": {"action_time": "2024-06-26T15:05:19.950Z", "user": 1, "content_type": 10, "object_id": "85", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 281, "fields": {"action_time": "2024-06-26T15:05:19.951Z", "user": 1, "content_type": 10, "object_id": "84", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 282, "fields": {"action_time": "2024-06-26T15:05:19.951Z", "user": 1, "content_type": 10, "object_id": "83", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 283, "fields": {"action_time": "2024-06-26T15:05:19.952Z", "user": 1, "content_type": 10, "object_id": "82", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 284, "fields": {"action_time": "2024-06-26T15:05:19.952Z", "user": 1, "content_type": 10, "object_id": "81", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 285, "fields": {"action_time": "2024-06-26T15:05:19.953Z", "user": 1, "content_type": 10, "object_id": "80", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 286, "fields": {"action_time": "2024-06-26T15:05:19.953Z", "user": 1, "content_type": 10, "object_id": "79", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 287, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "78", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 288, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "77", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 289, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "76", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 290, "fields": {"action_time": "2024-06-26T15:05:19.955Z", "user": 1, "content_type": 10, "object_id": "75", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 291, "fields": {"action_time": "2024-06-26T15:05:19.955Z", "user": 1, "content_type": 10, "object_id": "74", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2024-06-26T15:05:19.956Z", "user": 1, "content_type": 10, "object_id": "73", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2024-06-26T15:05:19.957Z", "user": 1, "content_type": 10, "object_id": "72", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 294, "fields": {"action_time": "2024-06-26T15:05:19.957Z", "user": 1, "content_type": 10, "object_id": "71", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 295, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "70", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 296, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "69", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 297, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "68", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 298, "fields": {"action_time": "2024-06-26T15:05:19.959Z", "user": 1, "content_type": 10, "object_id": "67", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 299, "fields": {"action_time": "2024-06-26T15:05:19.959Z", "user": 1, "content_type": 10, "object_id": "66", "object_repr": "bb17d6d7-1323-43e2-978c-2caa77b0e824", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 300, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "65", "object_repr": "a6218c2a-8442-4935-a0b4-fea4f1c9a63e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 301, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "64", "object_repr": "03b8955b-4e0b-4e84-a720-981929cdac5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 302, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "63", "object_repr": "c8a52d5d-4bfe-4d2b-950a-fe34b38d3ae9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 303, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "62", "object_repr": "7b5dd311-065c-44ff-9c9f-9fc91c91991f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 304, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "61", "object_repr": "e961efff-9c0a-4707-a965-0cbb6d875e81", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 305, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "60", "object_repr": "14badb36-7466-4397-95eb-cd66da8ee601", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 306, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "59", "object_repr": "a4a19d47-82aa-4401-9357-27f1171adbf2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 307, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "58", "object_repr": "7094066a-59ca-4282-8dbf-d2aedfb12563", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 308, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "57", "object_repr": "797da630-1702-4b18-9c00-eaf09a0f3311", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 309, "fields": {"action_time": "2024-06-26T15:05:19.963Z", "user": 1, "content_type": 10, "object_id": "56", "object_repr": "8f54748f-2ca9-449d-b481-c58009b42cfe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 310, "fields": {"action_time": "2024-06-26T15:05:19.964Z", "user": 1, "content_type": 10, "object_id": "55", "object_repr": "6fd27454-8847-4e90-9da5-0048bdf5ec0f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 311, "fields": {"action_time": "2024-06-26T15:05:19.964Z", "user": 1, "content_type": 10, "object_id": "54", "object_repr": "7aa9a336-35b6-4b0a-bedf-a1077f96cc1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 312, "fields": {"action_time": "2024-06-26T15:05:19.965Z", "user": 1, "content_type": 10, "object_id": "53", "object_repr": "f7c1783c-ddfc-4278-8acf-025f42284756", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 313, "fields": {"action_time": "2024-06-26T15:05:19.966Z", "user": 1, "content_type": 10, "object_id": "52", "object_repr": "eaed28c8-0fd8-4557-9efb-8c21f749945f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 314, "fields": {"action_time": "2024-06-26T15:05:19.966Z", "user": 1, "content_type": 10, "object_id": "51", "object_repr": "f4020528-a6ef-43e0-a4b9-8b2b464c892d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 315, "fields": {"action_time": "2024-06-26T15:05:19.967Z", "user": 1, "content_type": 10, "object_id": "50", "object_repr": "513684d5-65cb-4692-92a6-cfa1061bb7fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 316, "fields": {"action_time": "2024-06-26T15:05:19.967Z", "user": 1, "content_type": 10, "object_id": "49", "object_repr": "28679261-8de2-46e6-bf27-a3f0116629fd", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 317, "fields": {"action_time": "2024-06-26T15:05:19.968Z", "user": 1, "content_type": 10, "object_id": "48", "object_repr": "83c53f31-16e2-4816-b937-76bd0910d383", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 318, "fields": {"action_time": "2024-06-26T15:05:19.968Z", "user": 1, "content_type": 10, "object_id": "47", "object_repr": "f5ff020e-f627-4110-a7d9-8f83e9c7472a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 319, "fields": {"action_time": "2024-06-26T15:05:19.969Z", "user": 1, "content_type": 10, "object_id": "46", "object_repr": "2a7dc336-2612-4704-80c4-efda4776cdbb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 320, "fields": {"action_time": "2024-06-26T15:05:19.969Z", "user": 1, "content_type": 10, "object_id": "45", "object_repr": "0a951213-ff10-4563-8202-5b7576b3d056", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 321, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "44", "object_repr": "36fb92ad-16fc-4467-a1e2-67878582f8f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 322, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "43", "object_repr": "d36fcfd6-9a8a-4d73-b266-5d447f266f1c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 323, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "42", "object_repr": "4cf2db77-65fd-4973-afda-b7348b88999c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 324, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "41", "object_repr": "e18769b7-1ae0-4340-bb1a-1bbc55df227e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 325, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "40", "object_repr": "5b1304e4-c5bc-40ed-9f41-7f46c5e2a589", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 326, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "39", "object_repr": "d1f59705-dbc9-4350-8e2b-ef05fcf0d976", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 327, "fields": {"action_time": "2024-06-26T15:05:19.972Z", "user": 1, "content_type": 10, "object_id": "38", "object_repr": "48a7c304-2c14-4fd3-899b-e7e22359edc6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 328, "fields": {"action_time": "2024-06-26T15:05:19.972Z", "user": 1, "content_type": 10, "object_id": "37", "object_repr": "c4d75c41-55b3-4827-ab44-962d584c584e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 329, "fields": {"action_time": "2024-06-26T15:05:19.973Z", "user": 1, "content_type": 10, "object_id": "36", "object_repr": "401328f5-bba4-445c-b2b6-46c6c9a96ecf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 330, "fields": {"action_time": "2024-06-26T15:05:19.973Z", "user": 1, "content_type": 10, "object_id": "35", "object_repr": "a0142652-c721-408f-8a3c-9687375d6488", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 331, "fields": {"action_time": "2024-06-26T15:05:19.974Z", "user": 1, "content_type": 10, "object_id": "34", "object_repr": "02dc86e1-15d8-4800-b5b0-7f96560df549", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 332, "fields": {"action_time": "2024-06-26T15:05:19.974Z", "user": 1, "content_type": 10, "object_id": "33", "object_repr": "88c431ba-8ec7-4c57-9627-27bcec807932", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 333, "fields": {"action_time": "2024-06-26T15:05:19.975Z", "user": 1, "content_type": 10, "object_id": "32", "object_repr": "efd98c1d-6da8-4c86-938c-029250727b82", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 334, "fields": {"action_time": "2024-06-26T15:05:19.975Z", "user": 1, "content_type": 10, "object_id": "31", "object_repr": "e47f9f47-e79d-4aae-9297-9476d90b81bc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 335, "fields": {"action_time": "2024-06-26T15:05:19.976Z", "user": 1, "content_type": 10, "object_id": "30", "object_repr": "98a13e0f-191b-4961-ab4a-0cb7e1d24f6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 336, "fields": {"action_time": "2024-06-26T15:05:19.976Z", "user": 1, "content_type": 10, "object_id": "29", "object_repr": "e2b508cf-e889-45a8-90a3-6063ca1cc294", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 337, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "28", "object_repr": "f09bb4fe-02c9-42f4-b2a3-1ee2b6b526ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 338, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "27", "object_repr": "7a6b9e61-f24c-4905-8abe-6ff8c632f6fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 339, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "26", "object_repr": "3be1f8c2-d38d-45c0-99db-5ca4729f9b8a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 340, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "25", "object_repr": "94d96bbc-39cb-4bb8-b881-29edf21f5e18", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 341, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "24", "object_repr": "f754b89a-ab06-44c6-a19a-c417c33775b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 342, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "23", "object_repr": "756a3d00-3fa0-44a6-9fa9-bdc108cec508", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 343, "fields": {"action_time": "2024-06-26T15:05:19.979Z", "user": 1, "content_type": 10, "object_id": "22", "object_repr": "dd78f51e-5275-4618-a05b-245854ac60cb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 344, "fields": {"action_time": "2024-06-26T15:05:19.979Z", "user": 1, "content_type": 10, "object_id": "21", "object_repr": "b963afc4-8803-4a8c-a87b-33f9cf8104e3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 345, "fields": {"action_time": "2024-06-26T15:05:19.980Z", "user": 1, "content_type": 10, "object_id": "19", "object_repr": "d6cd9915-ce27-4ef6-8bdc-8990c7e441a3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 346, "fields": {"action_time": "2024-06-26T15:05:37.056Z", "user": 1, "content_type": 15, "object_id": "44", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 347, "fields": {"action_time": "2024-06-26T15:05:37.059Z", "user": 1, "content_type": 15, "object_id": "43", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 348, "fields": {"action_time": "2024-06-26T15:05:37.060Z", "user": 1, "content_type": 15, "object_id": "42", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 349, "fields": {"action_time": "2024-06-26T15:05:37.061Z", "user": 1, "content_type": 15, "object_id": "41", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 350, "fields": {"action_time": "2024-06-26T15:07:29.487Z", "user": 1, "content_type": 11, "object_id": "84", "object_repr": "PointFeature object (84)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 351, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "83", "object_repr": "PointFeature object (83)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 352, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "82", "object_repr": "PointFeature object (82)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 353, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "81", "object_repr": "PointFeature object (81)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 354, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "80", "object_repr": "PointFeature object (80)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 355, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "79", "object_repr": "PointFeature object (79)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 356, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "78", "object_repr": "PointFeature object (78)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 357, "fields": {"action_time": "2024-06-26T15:07:29.492Z", "user": 1, "content_type": 11, "object_id": "77", "object_repr": "PointFeature object (77)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 358, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "76", "object_repr": "PointFeature object (76)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 359, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "75", "object_repr": "PointFeature object (75)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 360, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "74", "object_repr": "PointFeature object (74)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 361, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "73", "object_repr": "PointFeature object (73)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 362, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "72", "object_repr": "PointFeature object (72)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 363, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "71", "object_repr": "PointFeature object (71)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 364, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "70", "object_repr": "PointFeature object (70)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 365, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "69", "object_repr": "PointFeature object (69)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 366, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "68", "object_repr": "PointFeature object (68)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 367, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "67", "object_repr": "PointFeature object (67)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 368, "fields": {"action_time": "2024-06-26T15:07:29.496Z", "user": 1, "content_type": 11, "object_id": "66", "object_repr": "PointFeature object (66)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 369, "fields": {"action_time": "2024-06-26T15:07:29.497Z", "user": 1, "content_type": 11, "object_id": "65", "object_repr": "PointFeature object (65)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 370, "fields": {"action_time": "2024-06-26T15:07:29.497Z", "user": 1, "content_type": 11, "object_id": "64", "object_repr": "PointFeature object (64)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 371, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "63", "object_repr": "PointFeature object (63)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 372, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "62", "object_repr": "PointFeature object (62)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 373, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "61", "object_repr": "PointFeature object (61)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 374, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "60", "object_repr": "PointFeature object (60)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 375, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "59", "object_repr": "PointFeature object (59)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 376, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "58", "object_repr": "PointFeature object (58)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 377, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "57", "object_repr": "PointFeature object (57)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 378, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "56", "object_repr": "PointFeature object (56)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 379, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "55", "object_repr": "PointFeature object (55)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 380, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "54", "object_repr": "PointFeature object (54)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 381, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "53", "object_repr": "PointFeature object (53)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 382, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "52", "object_repr": "PointFeature object (52)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 383, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "51", "object_repr": "PointFeature object (51)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 384, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "50", "object_repr": "PointFeature object (50)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 385, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "49", "object_repr": "PointFeature object (49)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 386, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "48", "object_repr": "PointFeature object (48)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 387, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "47", "object_repr": "PointFeature object (47)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 388, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "46", "object_repr": "PointFeature object (46)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 389, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "45", "object_repr": "PointFeature object (45)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 390, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "44", "object_repr": "PointFeature object (44)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 391, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "43", "object_repr": "PointFeature object (43)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 392, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "42", "object_repr": "PointFeature object (42)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 393, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "41", "object_repr": "PointFeature object (41)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 394, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "40", "object_repr": "PointFeature object (40)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 395, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "39", "object_repr": "PointFeature object (39)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 396, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "38", "object_repr": "PointFeature object (38)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 397, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "37", "object_repr": "PointFeature object (37)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 398, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "36", "object_repr": "PointFeature object (36)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 399, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "35", "object_repr": "PointFeature object (35)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 400, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "34", "object_repr": "PointFeature object (34)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 401, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "33", "object_repr": "PointFeature object (33)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 402, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "32", "object_repr": "PointFeature object (32)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 403, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "31", "object_repr": "PointFeature object (31)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 404, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "30", "object_repr": "PointFeature object (30)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 405, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "29", "object_repr": "PointFeature object (29)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 406, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "28", "object_repr": "PointFeature object (28)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 407, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "27", "object_repr": "PointFeature object (27)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 408, "fields": {"action_time": "2024-06-26T15:07:29.509Z", "user": 1, "content_type": 11, "object_id": "26", "object_repr": "PointFeature object (26)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 409, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "25", "object_repr": "PointFeature object (25)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 410, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "24", "object_repr": "PointFeature object (24)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 411, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "23", "object_repr": "PointFeature object (23)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 412, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "22", "object_repr": "PointFeature object (22)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 413, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "21", "object_repr": "PointFeature object (21)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 414, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "20", "object_repr": "PointFeature object (20)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 415, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "19", "object_repr": "PointFeature object (19)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 416, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "18", "object_repr": "PointFeature object (18)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 417, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "17", "object_repr": "PointFeature object (17)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 418, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "16", "object_repr": "PointFeature object (16)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 419, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "15", "object_repr": "PointFeature object (15)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 420, "fields": {"action_time": "2024-06-26T15:07:29.513Z", "user": 1, "content_type": 11, "object_id": "11", "object_repr": "PointFeature object (11)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2024-06-26T15:07:29.513Z", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "PointFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2024-06-26T15:07:37.570Z", "user": 1, "content_type": 12, "object_id": "2", "object_repr": "PolygonFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2024-06-26T15:07:37.571Z", "user": 1, "content_type": 12, "object_id": "1", "object_repr": "PolygonFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2024-06-26T15:08:16.112Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Ppular Places", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2024-06-26T15:08:40.582Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Popular Places", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 426, "fields": {"action_time": "2024-06-26T15:13:27.831Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 427, "fields": {"action_time": "2024-06-26T15:13:34.290Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 428, "fields": {"action_time": "2024-06-26T15:13:50.944Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 429, "fields": {"action_time": "2024-06-26T15:14:02.580Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 430, "fields": {"action_time": "2024-06-26T15:19:45.096Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 431, "fields": {"action_time": "2024-06-26T16:55:12.087Z", "user": 1, "content_type": 14, "object_id": "fd0de839-bdef-4821-9218-ccc78d1a92ef", "object_repr": "Response fd0de839-bdef-4821-9218-ccc78d1a92ef (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 432, "fields": {"action_time": "2024-06-26T16:55:12.091Z", "user": 1, "content_type": 14, "object_id": "f8a0eebf-b710-48fa-84ac-57184c96a5b8", "object_repr": "Response f8a0eebf-b710-48fa-84ac-57184c96a5b8 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 433, "fields": {"action_time": "2024-06-26T16:55:12.092Z", "user": 1, "content_type": 14, "object_id": "f277fe69-b2aa-4087-b56d-6588f14a1587", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 434, "fields": {"action_time": "2024-06-26T16:55:12.093Z", "user": 1, "content_type": 14, "object_id": "d45dfdbc-5ff1-4902-841e-301562ed0bf9", "object_repr": "Response d45dfdbc-5ff1-4902-841e-301562ed0bf9 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 435, "fields": {"action_time": "2024-06-26T16:55:12.094Z", "user": 1, "content_type": 14, "object_id": "c6b44c95-3f26-4412-8108-0a8acd50a614", "object_repr": "Response c6b44c95-3f26-4412-8108-0a8acd50a614 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 436, "fields": {"action_time": "2024-06-26T16:55:12.095Z", "user": 1, "content_type": 14, "object_id": "c39ace1f-3196-4a6e-b5e6-39d6e9b00b63", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 437, "fields": {"action_time": "2024-06-26T16:55:12.095Z", "user": 1, "content_type": 14, "object_id": "aa9a7d67-d649-41d2-9cbb-78fc08bb5e2f", "object_repr": "Response aa9a7d67-d649-41d2-9cbb-78fc08bb5e2f (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 438, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "a19528d7-393a-449b-a376-65df86f9b929", "object_repr": "Response a19528d7-393a-449b-a376-65df86f9b929 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 439, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "a1001648-f132-40b7-86d2-389109311730", "object_repr": "Response a1001648-f132-40b7-86d2-389109311730 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 440, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "9f5c503c-c147-4124-b78e-5e3590f20a20", "object_repr": "Response 9f5c503c-c147-4124-b78e-5e3590f20a20 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 441, "fields": {"action_time": "2024-06-26T16:55:12.097Z", "user": 1, "content_type": 14, "object_id": "7b9b6f7c-9453-4422-b770-a7d7ef401c59", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 442, "fields": {"action_time": "2024-06-26T16:55:12.097Z", "user": 1, "content_type": 14, "object_id": "78b13ba8-e26c-4859-8234-88603e9b5d55", "object_repr": "Response 78b13ba8-e26c-4859-8234-88603e9b5d55 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 443, "fields": {"action_time": "2024-06-26T16:55:12.098Z", "user": 1, "content_type": 14, "object_id": "759f2b03-2445-4646-9667-61e9cd575711", "object_repr": "Response 759f2b03-2445-4646-9667-61e9cd575711 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 444, "fields": {"action_time": "2024-06-26T16:55:12.098Z", "user": 1, "content_type": 14, "object_id": "65f5ef8c-468d-4913-b4c4-e10275116c59", "object_repr": "Response 65f5ef8c-468d-4913-b4c4-e10275116c59 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 445, "fields": {"action_time": "2024-06-26T16:55:12.099Z", "user": 1, "content_type": 14, "object_id": "5d22505f-a939-4de1-a003-3d980ef918ba", "object_repr": "Response 5d22505f-a939-4de1-a003-3d980ef918ba (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 446, "fields": {"action_time": "2024-06-26T16:55:12.100Z", "user": 1, "content_type": 14, "object_id": "5a115495-71ef-4b9f-b82d-afbde49430bd", "object_repr": "Response 5a115495-71ef-4b9f-b82d-afbde49430bd (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 447, "fields": {"action_time": "2024-06-26T16:55:12.100Z", "user": 1, "content_type": 14, "object_id": "4d8733c8-88a8-4368-a58c-a95518daec24", "object_repr": "Response 4d8733c8-88a8-4368-a58c-a95518daec24 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 448, "fields": {"action_time": "2024-06-26T16:55:12.101Z", "user": 1, "content_type": 14, "object_id": "44b901bb-07b9-4bfa-b72b-554b8d2f803d", "object_repr": "Response 44b901bb-07b9-4bfa-b72b-554b8d2f803d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 449, "fields": {"action_time": "2024-06-26T16:55:12.102Z", "user": 1, "content_type": 14, "object_id": "17e13e33-51ef-4d50-8c0d-683a2357e9a5", "object_repr": "Response 17e13e33-51ef-4d50-8c0d-683a2357e9a5 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 450, "fields": {"action_time": "2024-06-26T16:55:12.103Z", "user": 1, "content_type": 14, "object_id": "0dc054e4-5402-4944-a7e9-730aab902e8d", "object_repr": "Response 0dc054e4-5402-4944-a7e9-730aab902e8d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 451, "fields": {"action_time": "2024-06-26T17:00:55.263Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 452, "fields": {"action_time": "2024-06-26T17:01:52.287Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\", \"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 453, "fields": {"action_time": "2024-06-26T17:02:24.418Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\", \"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 454, "fields": {"action_time": "2024-06-26T17:03:05.996Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 455, "fields": {"action_time": "2024-06-26T17:15:18.414Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\"]}}]"}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2024-06-26T19:14:35.918Z", "user": 1, "content_type": 14, "object_id": "81ab81c0-efbc-431a-954f-32771e9d8306", "object_repr": "Response 81ab81c0-efbc-431a-954f-32771e9d8306 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2024-06-26T19:14:35.921Z", "user": 1, "content_type": 14, "object_id": "4f68cd55-de1f-462d-88e0-692b0b280a3d", "object_repr": "Response 4f68cd55-de1f-462d-88e0-692b0b280a3d (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 458, "fields": {"action_time": "2024-06-26T19:14:51.863Z", "user": 1, "content_type": 12, "object_id": "6", "object_repr": "PolygonFeature object (6)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 459, "fields": {"action_time": "2024-06-26T19:14:51.864Z", "user": 1, "content_type": 12, "object_id": "5", "object_repr": "PolygonFeature object (5)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 460, "fields": {"action_time": "2024-06-26T19:14:51.865Z", "user": 1, "content_type": 12, "object_id": "4", "object_repr": "PolygonFeature object (4)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 461, "fields": {"action_time": "2024-06-26T19:14:51.866Z", "user": 1, "content_type": 12, "object_id": "3", "object_repr": "PolygonFeature object (3)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 462, "fields": {"action_time": "2024-06-26T19:14:58.196Z", "user": 1, "content_type": 11, "object_id": "101", "object_repr": "PointFeature object (101)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 463, "fields": {"action_time": "2024-06-26T19:14:58.197Z", "user": 1, "content_type": 11, "object_id": "100", "object_repr": "PointFeature object (100)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 464, "fields": {"action_time": "2024-06-26T19:14:58.198Z", "user": 1, "content_type": 11, "object_id": "99", "object_repr": "PointFeature object (99)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 465, "fields": {"action_time": "2024-06-26T19:14:58.198Z", "user": 1, "content_type": 11, "object_id": "98", "object_repr": "PointFeature object (98)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 466, "fields": {"action_time": "2024-06-26T19:14:58.199Z", "user": 1, "content_type": 11, "object_id": "97", "object_repr": "PointFeature object (97)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 467, "fields": {"action_time": "2024-06-26T19:14:58.199Z", "user": 1, "content_type": 11, "object_id": "96", "object_repr": "PointFeature object (96)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 468, "fields": {"action_time": "2024-06-26T19:14:58.200Z", "user": 1, "content_type": 11, "object_id": "95", "object_repr": "PointFeature object (95)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 469, "fields": {"action_time": "2024-06-26T19:14:58.200Z", "user": 1, "content_type": 11, "object_id": "94", "object_repr": "PointFeature object (94)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 470, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "93", "object_repr": "PointFeature object (93)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 471, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "92", "object_repr": "PointFeature object (92)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 472, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "91", "object_repr": "PointFeature object (91)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "90", "object_repr": "PointFeature object (90)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "89", "object_repr": "PointFeature object (89)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 475, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "88", "object_repr": "PointFeature object (88)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 476, "fields": {"action_time": "2024-06-26T19:14:58.203Z", "user": 1, "content_type": 11, "object_id": "87", "object_repr": "PointFeature object (87)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 477, "fields": {"action_time": "2024-06-26T19:14:58.203Z", "user": 1, "content_type": 11, "object_id": "86", "object_repr": "PointFeature object (86)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 478, "fields": {"action_time": "2024-06-26T19:14:58.204Z", "user": 1, "content_type": 11, "object_id": "85", "object_repr": "PointFeature object (85)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 479, "fields": {"action_time": "2024-06-26T19:15:28.201Z", "user": 1, "content_type": 10, "object_id": "120", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2024-06-26T19:15:28.203Z", "user": 1, "content_type": 10, "object_id": "119", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2024-06-26T19:15:28.204Z", "user": 1, "content_type": 10, "object_id": "118", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2024-06-26T19:15:28.205Z", "user": 1, "content_type": 10, "object_id": "117", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2024-06-26T19:15:28.206Z", "user": 1, "content_type": 10, "object_id": "116", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2024-06-26T19:15:28.207Z", "user": 1, "content_type": 10, "object_id": "115", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2024-06-26T19:15:28.207Z", "user": 1, "content_type": 10, "object_id": "114", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2024-06-26T19:15:28.208Z", "user": 1, "content_type": 10, "object_id": "113", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2024-06-26T19:15:28.208Z", "user": 1, "content_type": 10, "object_id": "112", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2024-06-26T19:15:28.209Z", "user": 1, "content_type": 10, "object_id": "111", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2024-06-26T19:15:28.210Z", "user": 1, "content_type": 10, "object_id": "110", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2024-06-26T19:15:28.210Z", "user": 1, "content_type": 10, "object_id": "109", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2024-06-26T19:15:28.211Z", "user": 1, "content_type": 10, "object_id": "108", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2024-06-26T19:15:28.212Z", "user": 1, "content_type": 10, "object_id": "107", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2024-06-26T19:15:28.213Z", "user": 1, "content_type": 10, "object_id": "106", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2024-06-26T19:15:28.214Z", "user": 1, "content_type": 10, "object_id": "105", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2024-06-26T19:15:28.215Z", "user": 1, "content_type": 10, "object_id": "20", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2024-06-26T19:15:37.234Z", "user": 1, "content_type": 10, "object_id": "121", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2024-06-26T19:16:10.448Z", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "LineFeature object (6)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 498, "fields": {"action_time": "2024-06-26T19:16:10.450Z", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "LineFeature object (5)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 499, "fields": {"action_time": "2024-06-26T19:16:10.450Z", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "LineFeature object (4)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 500, "fields": {"action_time": "2024-06-26T19:16:10.451Z", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "LineFeature object (3)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 501, "fields": {"action_time": "2024-06-26T19:16:10.452Z", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "LineFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 502, "fields": {"action_time": "2024-06-26T19:16:10.452Z", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "LineFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 503, "fields": {"action_time": "2024-06-26T19:16:26.234Z", "user": 1, "content_type": 8, "object_id": "105", "object_repr": "ccc461df-0230-42e3-bbab-258e52da71b6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 504, "fields": {"action_time": "2024-06-26T19:16:26.236Z", "user": 1, "content_type": 8, "object_id": "104", "object_repr": "48ff5529-2e99-427a-ac43-817ca2792e3a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 505, "fields": {"action_time": "2024-06-26T19:16:26.236Z", "user": 1, "content_type": 8, "object_id": "103", "object_repr": "e28acf44-6d7d-4e36-878c-590f7fabc20e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 506, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "102", "object_repr": "188c84bc-6d92-4fde-b12b-792d3d57ed8e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 507, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "101", "object_repr": "1d70fefe-392d-444d-98f0-e18e7ee2af94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 508, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "100", "object_repr": "d8580041-b8a7-4dfa-be1f-31331efa063d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 509, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "99", "object_repr": "4c647157-a8d7-448d-8ec7-5891d83311bf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 510, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "98", "object_repr": "53444b0e-4229-4a66-9056-dafa410aa59f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 511, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "97", "object_repr": "383b3d97-79cf-47dd-89c5-aa02f1bf85be", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 512, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "96", "object_repr": "b3e4ec35-f11a-4ab1-8a94-64189e078c3f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 513, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "95", "object_repr": "52577855-1214-4fcc-92b1-cbb31051f574", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 514, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "94", "object_repr": "d5ac457e-5297-4574-af12-63d0031205f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 515, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "93", "object_repr": "694480d5-e78f-4f9f-aa87-d15d721fc4b9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 516, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "92", "object_repr": "fa035359-325c-4db5-a3cb-fc46102f76b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 517, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "91", "object_repr": "86d06221-b89f-41d2-aaf7-c26d96e5db78", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 518, "fields": {"action_time": "2024-06-26T19:16:26.241Z", "user": 1, "content_type": 8, "object_id": "90", "object_repr": "b5c79b96-84f9-47b7-af5f-5f4d8a1d699c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 519, "fields": {"action_time": "2024-06-26T19:16:26.241Z", "user": 1, "content_type": 8, "object_id": "89", "object_repr": "941805a2-0589-41b1-a413-903bc150ff3b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 520, "fields": {"action_time": "2024-06-26T19:16:26.242Z", "user": 1, "content_type": 8, "object_id": "88", "object_repr": "74cdcb0a-e92c-4574-bc94-38453599d813", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 521, "fields": {"action_time": "2024-06-26T19:16:26.242Z", "user": 1, "content_type": 8, "object_id": "87", "object_repr": "60b6e465-042e-4d4c-8a4b-3c0069101313", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 522, "fields": {"action_time": "2024-06-26T19:16:26.243Z", "user": 1, "content_type": 8, "object_id": "86", "object_repr": "e6df9f4d-ad2d-4fd4-93fc-18d4b1809dd6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 523, "fields": {"action_time": "2024-06-26T19:16:26.243Z", "user": 1, "content_type": 8, "object_id": "85", "object_repr": "93efc4cf-77c8-4e3c-b14a-171ab83e0741", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 524, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "84", "object_repr": "33dc9e5a-c91a-4b6a-87bd-8f3a757505b5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 525, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "83", "object_repr": "20a6d115-2064-4457-850c-4203dfa0364e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 526, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "82", "object_repr": "e4c5a29b-91d5-449f-815c-ff481a96a76e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 527, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "81", "object_repr": "5b985424-4a58-4e30-be25-6df36cdcc914", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 528, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "80", "object_repr": "e8ff4f93-8759-4647-8fd4-3be594169f5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 529, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "79", "object_repr": "0d1015d7-53f7-4105-b35a-a29be3c84171", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 530, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "78", "object_repr": "06f1c86b-dbcf-4314-93a4-1e195084009a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 531, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "77", "object_repr": "5ef11234-4ccd-4676-87de-5da1ca28d128", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 532, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "76", "object_repr": "7b48d11e-036a-49dc-86d5-18e22de15a7b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 533, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "75", "object_repr": "8d33612f-ee4e-4c1e-bd4c-5aefeab16eed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 534, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "74", "object_repr": "e7d1f6b4-a34e-4ce3-af28-aeaace993eea", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 535, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "73", "object_repr": "814a7151-1cff-4d00-b93f-9b41d9fcf5d1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 536, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "72", "object_repr": "5846fd7f-ddbd-431c-8457-e9e1313648c4", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 537, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "71", "object_repr": "17d14baf-550b-4854-ae4e-bd3a28a8b189", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 538, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "70", "object_repr": "dea17557-92f5-4ae3-86a5-2d8603ff11e5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 539, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "69", "object_repr": "cc8324d1-ad72-443b-8cc4-8d196d15e869", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 540, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "68", "object_repr": "9dc2572c-4d60-475d-b021-5507918963a1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 541, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "67", "object_repr": "9a96a80d-e919-4935-8043-3c39133091a6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 542, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "66", "object_repr": "53440af8-41fa-4b15-b95b-0bc62eacc012", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 543, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "65", "object_repr": "1b69ef9b-00da-4f76-8829-3ec214380268", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 544, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "64", "object_repr": "c63c4d9b-b370-4939-a8f5-6c262a10c2c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 545, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "63", "object_repr": "7373cec7-62a0-4901-a8e2-2d2fe05655b7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 546, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "62", "object_repr": "c036c19a-c709-45c2-aad1-ccf6c6ecf514", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 547, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "61", "object_repr": "cf1a442c-f58a-4297-964c-833b67f16bcc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 548, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "60", "object_repr": "62f0e97e-7955-49a6-9372-6feba7fadc43", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 549, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "59", "object_repr": "bcf8eb81-5db3-45c3-9624-ccbe7245c475", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 550, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "58", "object_repr": "4e1e2653-6ad8-4632-9474-00586c863e6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 551, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "57", "object_repr": "6e6bf1e0-0603-4a59-87ae-4f83b2e40d73", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 552, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "56", "object_repr": "36c517f1-8ea2-4b38-9a7b-669e58862ef6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 553, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "55", "object_repr": "dc6fc7db-8322-4f55-8b29-b9a52afd32fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 554, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "54", "object_repr": "7aab177c-1bbd-4fcd-bcb0-14fa535ee968", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 555, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "53", "object_repr": "40f5a9e0-6fcc-4e50-95be-f0ea8a502227", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 556, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "52", "object_repr": "f08d6c96-7430-4200-8635-91666f8b0295", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 557, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "51", "object_repr": "bb17d6d7-1323-43e2-978c-2caa77b0e824", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 558, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "50", "object_repr": "a6218c2a-8442-4935-a0b4-fea4f1c9a63e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 559, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "49", "object_repr": "03b8955b-4e0b-4e84-a720-981929cdac5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 560, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "48", "object_repr": "c8a52d5d-4bfe-4d2b-950a-fe34b38d3ae9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 561, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "47", "object_repr": "7b5dd311-065c-44ff-9c9f-9fc91c91991f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 562, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "46", "object_repr": "e961efff-9c0a-4707-a965-0cbb6d875e81", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 563, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "45", "object_repr": "a4a19d47-82aa-4401-9357-27f1171adbf2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 564, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "44", "object_repr": "7094066a-59ca-4282-8dbf-d2aedfb12563", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 565, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "43", "object_repr": "797da630-1702-4b18-9c00-eaf09a0f3311", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 566, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "42", "object_repr": "8f54748f-2ca9-449d-b481-c58009b42cfe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 567, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "41", "object_repr": "6fd27454-8847-4e90-9da5-0048bdf5ec0f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 568, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "40", "object_repr": "7aa9a336-35b6-4b0a-bedf-a1077f96cc1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 569, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "39", "object_repr": "f7c1783c-ddfc-4278-8acf-025f42284756", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 570, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "38", "object_repr": "eaed28c8-0fd8-4557-9efb-8c21f749945f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 571, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "37", "object_repr": "f4020528-a6ef-43e0-a4b9-8b2b464c892d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 572, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "36", "object_repr": "513684d5-65cb-4692-92a6-cfa1061bb7fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 573, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "35", "object_repr": "28679261-8de2-46e6-bf27-a3f0116629fd", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 574, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "34", "object_repr": "83c53f31-16e2-4816-b937-76bd0910d383", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 575, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "33", "object_repr": "f5ff020e-f627-4110-a7d9-8f83e9c7472a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 576, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "32", "object_repr": "2a7dc336-2612-4704-80c4-efda4776cdbb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "31", "object_repr": "0a951213-ff10-4563-8202-5b7576b3d056", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "30", "object_repr": "36fb92ad-16fc-4467-a1e2-67878582f8f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 579, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "29", "object_repr": "d36fcfd6-9a8a-4d73-b266-5d447f266f1c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 580, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "28", "object_repr": "4cf2db77-65fd-4973-afda-b7348b88999c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 581, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "27", "object_repr": "e18769b7-1ae0-4340-bb1a-1bbc55df227e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 582, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "26", "object_repr": "5b1304e4-c5bc-40ed-9f41-7f46c5e2a589", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 583, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "25", "object_repr": "d1f59705-dbc9-4350-8e2b-ef05fcf0d976", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 584, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "24", "object_repr": "48a7c304-2c14-4fd3-899b-e7e22359edc6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 585, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "23", "object_repr": "c4d75c41-55b3-4827-ab44-962d584c584e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 586, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "22", "object_repr": "401328f5-bba4-445c-b2b6-46c6c9a96ecf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 587, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "21", "object_repr": "a0142652-c721-408f-8a3c-9687375d6488", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 588, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "20", "object_repr": "02dc86e1-15d8-4800-b5b0-7f96560df549", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 589, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "19", "object_repr": "88c431ba-8ec7-4c57-9627-27bcec807932", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 590, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "18", "object_repr": "efd98c1d-6da8-4c86-938c-029250727b82", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 591, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "17", "object_repr": "e47f9f47-e79d-4aae-9297-9476d90b81bc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 592, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "16", "object_repr": "98a13e0f-191b-4961-ab4a-0cb7e1d24f6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 593, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "15", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 594, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "14", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 595, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "13", "object_repr": "f09bb4fe-02c9-42f4-b2a3-1ee2b6b526ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 596, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "12", "object_repr": "7a6b9e61-f24c-4905-8abe-6ff8c632f6fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 597, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "11", "object_repr": "3be1f8c2-d38d-45c0-99db-5ca4729f9b8a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 598, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "10", "object_repr": "94d96bbc-39cb-4bb8-b881-29edf21f5e18", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 599, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "9", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 600, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "8", "object_repr": "f754b89a-ab06-44c6-a19a-c417c33775b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 601, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "7", "object_repr": "756a3d00-3fa0-44a6-9fa9-bdc108cec508", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 602, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "6", "object_repr": "dd78f51e-5275-4618-a05b-245854ac60cb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 603, "fields": {"action_time": "2024-06-26T19:16:34.813Z", "user": 1, "content_type": 8, "object_id": "5", "object_repr": "b963afc4-8803-4a8c-a87b-33f9cf8104e3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 604, "fields": {"action_time": "2024-06-26T19:16:34.814Z", "user": 1, "content_type": 8, "object_id": "4", "object_repr": "fc264be6-e71b-40db-a2d4-0650df5eb7f9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 605, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "3", "object_repr": "90d5cd5f-0c83-47e8-92f4-d652980eae19", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 606, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "2", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 607, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "1", "object_repr": "popular places", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 608, "fields": {"action_time": "2024-06-26T19:17:48.343Z", "user": 1, "content_type": 13, "object_id": "21", "object_repr": "Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 609, "fields": {"action_time": "2024-06-26T19:36:50.659Z", "user": 1, "content_type": 14, "object_id": "21ad60df-997a-4e28-aaed-c1664751f1a9", "object_repr": "Response 21ad60df-997a-4e28-aaed-c1664751f1a9 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 610, "fields": {"action_time": "2024-06-26T19:36:58.846Z", "user": 1, "content_type": 12, "object_id": "7", "object_repr": "PolygonFeature object (7)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 611, "fields": {"action_time": "2024-06-26T19:37:08.030Z", "user": 1, "content_type": 11, "object_id": "103", "object_repr": "PointFeature object (103)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 612, "fields": {"action_time": "2024-06-26T19:37:08.031Z", "user": 1, "content_type": 11, "object_id": "102", "object_repr": "PointFeature object (102)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 613, "fields": {"action_time": "2024-06-26T19:37:20.692Z", "user": 1, "content_type": 10, "object_id": "123", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 614, "fields": {"action_time": "2024-06-26T19:37:20.694Z", "user": 1, "content_type": 10, "object_id": "122", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 615, "fields": {"action_time": "2024-06-26T19:37:36.730Z", "user": 1, "content_type": 9, "object_id": "7", "object_repr": "LineFeature object (7)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 616, "fields": {"action_time": "2024-06-26T19:37:44.659Z", "user": 1, "content_type": 8, "object_id": "107", "object_repr": "565b82ec-1394-4ed7-b9b5-9459f9ec0e1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 617, "fields": {"action_time": "2024-06-26T19:37:44.661Z", "user": 1, "content_type": 8, "object_id": "106", "object_repr": "91b00bb1-688a-45f7-aad3-b119717686ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 618, "fields": {"action_time": "2024-06-27T03:59:44.854Z", "user": 1, "content_type": 15, "object_id": "73", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 619, "fields": {"action_time": "2024-06-27T03:59:44.860Z", "user": 1, "content_type": 15, "object_id": "72", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 620, "fields": {"action_time": "2024-06-27T03:59:44.861Z", "user": 1, "content_type": 15, "object_id": "71", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 621, "fields": {"action_time": "2024-06-27T03:59:56.366Z", "user": 1, "content_type": 15, "object_id": "76", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 622, "fields": {"action_time": "2024-06-27T03:59:56.369Z", "user": 1, "content_type": 15, "object_id": "75", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 623, "fields": {"action_time": "2024-06-27T03:59:56.370Z", "user": 1, "content_type": 15, "object_id": "74", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 624, "fields": {"action_time": "2024-06-27T04:00:06.476Z", "user": 1, "content_type": 14, "object_id": "0d293642-9192-4b47-bb8f-1e388154ed52", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 625, "fields": {"action_time": "2024-06-27T04:00:19.495Z", "user": 1, "content_type": 11, "object_id": "118", "object_repr": "PointFeature object (118)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 626, "fields": {"action_time": "2024-06-27T04:00:19.496Z", "user": 1, "content_type": 11, "object_id": "117", "object_repr": "PointFeature object (117)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 627, "fields": {"action_time": "2024-06-27T04:00:19.497Z", "user": 1, "content_type": 11, "object_id": "116", "object_repr": "PointFeature object (116)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 628, "fields": {"action_time": "2024-06-27T04:00:19.498Z", "user": 1, "content_type": 11, "object_id": "115", "object_repr": "PointFeature object (115)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 629, "fields": {"action_time": "2024-06-27T04:00:19.498Z", "user": 1, "content_type": 11, "object_id": "114", "object_repr": "PointFeature object (114)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 630, "fields": {"action_time": "2024-06-27T04:00:19.499Z", "user": 1, "content_type": 11, "object_id": "113", "object_repr": "PointFeature object (113)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 631, "fields": {"action_time": "2024-06-27T04:00:19.499Z", "user": 1, "content_type": 11, "object_id": "112", "object_repr": "PointFeature object (112)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 632, "fields": {"action_time": "2024-06-27T04:00:19.500Z", "user": 1, "content_type": 11, "object_id": "111", "object_repr": "PointFeature object (111)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 633, "fields": {"action_time": "2024-06-27T04:00:19.501Z", "user": 1, "content_type": 11, "object_id": "110", "object_repr": "PointFeature object (110)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 634, "fields": {"action_time": "2024-06-27T04:00:19.501Z", "user": 1, "content_type": 11, "object_id": "109", "object_repr": "PointFeature object (109)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 635, "fields": {"action_time": "2024-06-27T04:00:19.502Z", "user": 1, "content_type": 11, "object_id": "108", "object_repr": "PointFeature object (108)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 636, "fields": {"action_time": "2024-06-27T04:00:19.502Z", "user": 1, "content_type": 11, "object_id": "107", "object_repr": "PointFeature object (107)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 637, "fields": {"action_time": "2024-06-27T04:00:19.503Z", "user": 1, "content_type": 11, "object_id": "106", "object_repr": "PointFeature object (106)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 638, "fields": {"action_time": "2024-06-27T04:00:19.503Z", "user": 1, "content_type": 11, "object_id": "105", "object_repr": "PointFeature object (105)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 639, "fields": {"action_time": "2024-06-27T04:00:19.504Z", "user": 1, "content_type": 11, "object_id": "104", "object_repr": "PointFeature object (104)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 640, "fields": {"action_time": "2024-06-27T04:00:42.396Z", "user": 1, "content_type": 9, "object_id": "8", "object_repr": "LineFeature object (8)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 641, "fields": {"action_time": "2024-06-27T04:00:56.554Z", "user": 1, "content_type": 12, "object_id": "8", "object_repr": "PolygonFeature object (8)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 642, "fields": {"action_time": "2024-06-27T04:01:07.627Z", "user": 1, "content_type": 8, "object_id": "122", "object_repr": "2a0b9175-cc5b-4910-a158-86756a5358bf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 643, "fields": {"action_time": "2024-06-27T04:01:07.628Z", "user": 1, "content_type": 8, "object_id": "121", "object_repr": "9f815455-90a2-43cf-809d-2b90c4be8836", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 644, "fields": {"action_time": "2024-06-27T04:01:07.629Z", "user": 1, "content_type": 8, "object_id": "120", "object_repr": "a300dea9-37e6-48df-a057-61f964bc7ebf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 645, "fields": {"action_time": "2024-06-27T04:01:07.630Z", "user": 1, "content_type": 8, "object_id": "119", "object_repr": "ebed8aca-63ea-4b4b-80ee-4f71fc47eab5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 646, "fields": {"action_time": "2024-06-27T04:01:07.631Z", "user": 1, "content_type": 8, "object_id": "118", "object_repr": "3d7c6c2e-831a-4543-aa63-cf03fdb6e134", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 647, "fields": {"action_time": "2024-06-27T04:01:07.632Z", "user": 1, "content_type": 8, "object_id": "117", "object_repr": "39cf4051-46c0-4a8e-b005-1d9bbab7fb39", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 648, "fields": {"action_time": "2024-06-27T04:01:07.632Z", "user": 1, "content_type": 8, "object_id": "116", "object_repr": "2565135a-29a8-40fe-85bb-719fa3ef2bde", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 649, "fields": {"action_time": "2024-06-27T04:01:07.633Z", "user": 1, "content_type": 8, "object_id": "115", "object_repr": "3d397a8b-354d-4d25-8d0a-6b3e77db5d4a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 650, "fields": {"action_time": "2024-06-27T04:01:07.634Z", "user": 1, "content_type": 8, "object_id": "114", "object_repr": "8dd6ad2b-ac67-4556-8cc1-507599fcb565", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 651, "fields": {"action_time": "2024-06-27T04:01:07.634Z", "user": 1, "content_type": 8, "object_id": "113", "object_repr": "6c3df0a2-c527-434d-a630-52482e64ec94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 652, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "112", "object_repr": "c98c8bae-45ec-4583-8aaf-25bea7ff64c8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 653, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "111", "object_repr": "a98ea240-9098-4378-ab38-afcb50825967", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 654, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "110", "object_repr": "bd9263e0-1543-4c31-9db3-e6e53dd3e798", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 655, "fields": {"action_time": "2024-06-27T04:01:07.636Z", "user": 1, "content_type": 8, "object_id": "109", "object_repr": "41a7f25b-5dd6-4433-8925-cf1a3b9bbaa1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 656, "fields": {"action_time": "2024-06-27T04:01:07.636Z", "user": 1, "content_type": 8, "object_id": "108", "object_repr": "2ff49d95-1c03-4e14-90ce-a639b8bc86ad", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 657, "fields": {"action_time": "2024-07-03T09:03:04.812Z", "user": 1, "content_type": 15, "object_id": "90", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Is there anything else you would like to say about your neighbourhood?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 658, "fields": {"action_time": "2024-07-03T09:03:04.815Z", "user": 1, "content_type": 15, "object_id": "89", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where waste/trash is a problem?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 659, "fields": {"action_time": "2024-07-03T09:03:04.816Z", "user": 1, "content_type": 15, "object_id": "88", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you see water on the ground after a heavy rain?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 660, "fields": {"action_time": "2024-07-03T09:03:04.816Z", "user": 1, "content_type": 15, "object_id": "87", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 661, "fields": {"action_time": "2024-07-03T09:03:04.817Z", "user": 1, "content_type": 15, "object_id": "86", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where you feel unsafe?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 662, "fields": {"action_time": "2024-07-03T09:03:04.818Z", "user": 1, "content_type": 15, "object_id": "85", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 663, "fields": {"action_time": "2024-07-03T09:03:04.818Z", "user": 1, "content_type": 15, "object_id": "84", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 664, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "83", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 665, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "82", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 666, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "81", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is the closest green area to your house?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 667, "fields": {"action_time": "2024-07-03T09:03:04.820Z", "user": 1, "content_type": 15, "object_id": "80", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels,", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 668, "fields": {"action_time": "2024-07-03T09:03:04.821Z", "user": 1, "content_type": 15, "object_id": "79", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is your least favourite area in the neighbourhood and why?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 669, "fields": {"action_time": "2024-07-03T09:03:04.822Z", "user": 1, "content_type": 15, "object_id": "78", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is your favourite area in the neighbourhood and why?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 670, "fields": {"action_time": "2024-07-03T09:03:04.822Z", "user": 1, "content_type": 15, "object_id": "77", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 671, "fields": {"action_time": "2024-07-03T09:36:03.523Z", "user": 1, "content_type": 10, "object_id": "160", "object_repr": "71d7b851-78e0-4b96-9ae4-ac2743d21665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 672, "fields": {"action_time": "2024-07-03T09:36:03.525Z", "user": 1, "content_type": 10, "object_id": "159", "object_repr": "25a6b645-c06c-4e34-802a-56728561190c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 673, "fields": {"action_time": "2024-07-03T09:36:03.526Z", "user": 1, "content_type": 10, "object_id": "158", "object_repr": "3b08ff09-38ec-4a97-b07b-b3ea11882665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 674, "fields": {"action_time": "2024-07-03T09:36:03.527Z", "user": 1, "content_type": 10, "object_id": "157", "object_repr": "b60329b3-89a0-47aa-a825-eefafaa7f25d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 675, "fields": {"action_time": "2024-07-03T09:36:03.527Z", "user": 1, "content_type": 10, "object_id": "156", "object_repr": "4d20302a-1afb-465c-ba76-786d6d4604f2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 676, "fields": {"action_time": "2024-07-03T09:36:03.528Z", "user": 1, "content_type": 10, "object_id": "155", "object_repr": "674c3910-68f9-4c37-b54e-0fa57737a984", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 677, "fields": {"action_time": "2024-07-03T09:36:03.529Z", "user": 1, "content_type": 10, "object_id": "154", "object_repr": "68a3a40a-bd79-4238-ae65-03107a6d66fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 678, "fields": {"action_time": "2024-07-03T09:36:03.529Z", "user": 1, "content_type": 10, "object_id": "153", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2024-07-03T09:36:03.530Z", "user": 1, "content_type": 10, "object_id": "152", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2024-07-03T09:36:03.531Z", "user": 1, "content_type": 10, "object_id": "151", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2024-07-03T09:36:03.531Z", "user": 1, "content_type": 10, "object_id": "150", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2024-07-03T09:36:03.532Z", "user": 1, "content_type": 10, "object_id": "149", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2024-07-03T09:36:03.533Z", "user": 1, "content_type": 10, "object_id": "148", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 684, "fields": {"action_time": "2024-07-03T09:36:03.533Z", "user": 1, "content_type": 10, "object_id": "147", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 685, "fields": {"action_time": "2024-07-03T09:36:03.534Z", "user": 1, "content_type": 10, "object_id": "146", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 686, "fields": {"action_time": "2024-07-03T09:36:03.534Z", "user": 1, "content_type": 10, "object_id": "145", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 687, "fields": {"action_time": "2024-07-03T09:36:03.535Z", "user": 1, "content_type": 10, "object_id": "144", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2024-07-03T09:36:03.536Z", "user": 1, "content_type": 10, "object_id": "143", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2024-07-03T09:36:03.536Z", "user": 1, "content_type": 10, "object_id": "142", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 690, "fields": {"action_time": "2024-07-03T09:36:03.537Z", "user": 1, "content_type": 10, "object_id": "141", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 691, "fields": {"action_time": "2024-07-03T09:36:03.537Z", "user": 1, "content_type": 10, "object_id": "140", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 692, "fields": {"action_time": "2024-07-03T09:36:03.538Z", "user": 1, "content_type": 10, "object_id": "139", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 693, "fields": {"action_time": "2024-07-03T09:36:03.538Z", "user": 1, "content_type": 10, "object_id": "138", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 694, "fields": {"action_time": "2024-07-03T09:36:03.539Z", "user": 1, "content_type": 10, "object_id": "137", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 695, "fields": {"action_time": "2024-07-03T09:36:03.539Z", "user": 1, "content_type": 10, "object_id": "136", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 696, "fields": {"action_time": "2024-07-03T09:36:03.540Z", "user": 1, "content_type": 10, "object_id": "135", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 697, "fields": {"action_time": "2024-07-03T09:36:03.540Z", "user": 1, "content_type": 10, "object_id": "134", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 698, "fields": {"action_time": "2024-07-03T09:36:03.541Z", "user": 1, "content_type": 10, "object_id": "133", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 699, "fields": {"action_time": "2024-07-03T09:36:03.541Z", "user": 1, "content_type": 10, "object_id": "132", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 700, "fields": {"action_time": "2024-07-03T09:36:03.542Z", "user": 1, "content_type": 10, "object_id": "131", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 701, "fields": {"action_time": "2024-07-03T09:36:03.543Z", "user": 1, "content_type": 10, "object_id": "130", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 702, "fields": {"action_time": "2024-07-03T09:36:03.543Z", "user": 1, "content_type": 10, "object_id": "129", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 703, "fields": {"action_time": "2024-07-03T09:36:03.544Z", "user": 1, "content_type": 10, "object_id": "128", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 704, "fields": {"action_time": "2024-07-03T09:36:03.544Z", "user": 1, "content_type": 10, "object_id": "127", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 705, "fields": {"action_time": "2024-07-03T09:36:03.545Z", "user": 1, "content_type": 10, "object_id": "126", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 706, "fields": {"action_time": "2024-07-03T09:36:03.545Z", "user": 1, "content_type": 10, "object_id": "125", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 707, "fields": {"action_time": "2024-07-03T09:36:03.546Z", "user": 1, "content_type": 10, "object_id": "124", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 708, "fields": {"action_time": "2024-07-03T11:46:18.016Z", "user": 1, "content_type": 8, "object_id": "152", "object_repr": "ef29b584-48c7-4e17-8277-b4cd271e4576", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 709, "fields": {"action_time": "2024-07-03T11:46:44.862Z", "user": 1, "content_type": 8, "object_id": "151", "object_repr": "71d7b851-78e0-4b96-9ae4-ac2743d21665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 710, "fields": {"action_time": "2024-07-03T11:46:44.864Z", "user": 1, "content_type": 8, "object_id": "150", "object_repr": "25a6b645-c06c-4e34-802a-56728561190c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 711, "fields": {"action_time": "2024-07-03T11:46:44.865Z", "user": 1, "content_type": 8, "object_id": "149", "object_repr": "3b08ff09-38ec-4a97-b07b-b3ea11882665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 712, "fields": {"action_time": "2024-07-03T11:46:44.865Z", "user": 1, "content_type": 8, "object_id": "148", "object_repr": "5c320c29-9f1f-4faa-b50d-18a78a5beb34", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 713, "fields": {"action_time": "2024-07-03T11:46:44.866Z", "user": 1, "content_type": 8, "object_id": "147", "object_repr": "12d651ad-2a8a-437d-9e2b-148292671896", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 714, "fields": {"action_time": "2024-07-03T11:46:44.866Z", "user": 1, "content_type": 8, "object_id": "146", "object_repr": "b60329b3-89a0-47aa-a825-eefafaa7f25d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 715, "fields": {"action_time": "2024-07-03T11:46:44.867Z", "user": 1, "content_type": 8, "object_id": "145", "object_repr": "ced1522d-aafb-45da-9fe3-ed8f3f818255", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 716, "fields": {"action_time": "2024-07-03T11:46:44.868Z", "user": 1, "content_type": 8, "object_id": "144", "object_repr": "6719aca3-76fe-46fc-91f2-4b8de7d65215", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 717, "fields": {"action_time": "2024-07-03T11:46:44.868Z", "user": 1, "content_type": 8, "object_id": "143", "object_repr": "07edb507-06c9-42ec-a8ac-318dc6cd5376", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 718, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "142", "object_repr": "8f8dc8bb-d0c0-4063-80bc-9ca0aceee305", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 719, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "141", "object_repr": "8f8dc8bb-d0c0-4063-80bc-9ca0aceee305", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 720, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "140", "object_repr": "4d20302a-1afb-465c-ba76-786d6d4604f2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 721, "fields": {"action_time": "2024-07-03T11:46:44.870Z", "user": 1, "content_type": 8, "object_id": "139", "object_repr": "674c3910-68f9-4c37-b54e-0fa57737a984", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 722, "fields": {"action_time": "2024-07-03T11:46:44.870Z", "user": 1, "content_type": 8, "object_id": "138", "object_repr": "68a3a40a-bd79-4238-ae65-03107a6d66fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 723, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "137", "object_repr": "91631be4-e8a8-44b4-942a-e53bfd7a09db", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 724, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "136", "object_repr": "cea6e606-d791-4043-88b9-f75349affba2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 725, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "135", "object_repr": "22de1d85-04ad-4bb8-b9b3-d500f3f1fd3f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 726, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "134", "object_repr": "117761ce-2ffa-44a1-ad4a-d700f963f8ae", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 727, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "133", "object_repr": "041996ec-b470-4dd5-ab5e-59fbfa00a367", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 728, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "132", "object_repr": "7f509b29-5a40-484b-83a1-48f2c57b0f95", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 729, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "131", "object_repr": "b511404b-67c8-4d92-85af-bf4757417e4a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 730, "fields": {"action_time": "2024-07-03T11:46:44.873Z", "user": 1, "content_type": 8, "object_id": "130", "object_repr": "3b185bd5-cffc-4e66-a51e-6228944f0e03", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 731, "fields": {"action_time": "2024-07-03T11:46:44.873Z", "user": 1, "content_type": 8, "object_id": "129", "object_repr": "584e688d-975a-4000-a897-6656c03f2c55", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 732, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "128", "object_repr": "f4a20631-7927-4dab-86c7-bf004d11e7e7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 733, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "127", "object_repr": "b414b7ae-bf47-4b7d-afa1-abfb1657c6c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 734, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "126", "object_repr": "4e28e48c-80e5-4430-a768-738bd14e0ffe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 735, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "125", "object_repr": "b34b07bb-3b2a-4a74-9d3b-41ed7e103216", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 736, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "124", "object_repr": "d26f1fbd-af2a-4f6b-8e21-eb5cac2cf823", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 737, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "123", "object_repr": "aaf22939-95b2-4208-a56a-1f9feade9510", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 738, "fields": {"action_time": "2024-07-03T11:49:48.507Z", "user": 1, "content_type": 11, "object_id": "147", "object_repr": "PointFeature object (147)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 739, "fields": {"action_time": "2024-12-08T20:04:06.600Z", "user": 2, "content_type": 14, "object_id": "feb668d2-7ce2-47aa-85ee-265a99744ebc", "object_repr": "Response feb668d2-7ce2-47aa-85ee-265a99744ebc (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 740, "fields": {"action_time": "2024-12-08T20:04:06.609Z", "user": 2, "content_type": 14, "object_id": "f21e8c29-98cc-4fbd-aed7-b534d2f6b13b", "object_repr": "Response f21e8c29-98cc-4fbd-aed7-b534d2f6b13b (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 741, "fields": {"action_time": "2024-12-08T20:04:06.611Z", "user": 2, "content_type": 14, "object_id": "eed6eed5-f58a-4dd0-a632-5a3c3e6d2488", "object_repr": "Response eed6eed5-f58a-4dd0-a632-5a3c3e6d2488 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 742, "fields": {"action_time": "2024-12-08T20:04:06.613Z", "user": 2, "content_type": 14, "object_id": "ec0b0e54-64d7-4b67-89f3-126e4e7b86b0", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 743, "fields": {"action_time": "2024-12-08T20:04:06.614Z", "user": 2, "content_type": 14, "object_id": "ebf52133-f4b4-47e7-98a2-80c481512e70", "object_repr": "Response ebf52133-f4b4-47e7-98a2-80c481512e70 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 744, "fields": {"action_time": "2024-12-08T20:04:06.615Z", "user": 2, "content_type": 14, "object_id": "e7f811a3-eae7-4cdf-9cf5-b69c43f4eec1", "object_repr": "Response e7f811a3-eae7-4cdf-9cf5-b69c43f4eec1 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 745, "fields": {"action_time": "2024-12-08T20:04:06.617Z", "user": 2, "content_type": 14, "object_id": "e47597b5-595f-415a-bd6c-38498b18b978", "object_repr": "Response e47597b5-595f-415a-bd6c-38498b18b978 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2024-12-08T20:04:06.618Z", "user": 2, "content_type": 14, "object_id": "e0ff48f8-507b-4f2b-bf17-1392400f1f9f", "object_repr": "Response e0ff48f8-507b-4f2b-bf17-1392400f1f9f (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2024-12-08T20:04:06.619Z", "user": 2, "content_type": 14, "object_id": "ddc716b8-563d-4113-b191-1a28a8d228b8", "object_repr": "Response ddc716b8-563d-4113-b191-1a28a8d228b8 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 748, "fields": {"action_time": "2024-12-08T20:04:06.619Z", "user": 2, "content_type": 14, "object_id": "d15f5fdc-fa9e-4020-a13f-c3551a0984d1", "object_repr": "Response d15f5fdc-fa9e-4020-a13f-c3551a0984d1 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 749, "fields": {"action_time": "2024-12-08T20:04:06.620Z", "user": 2, "content_type": 14, "object_id": "c846e4e0-9ce0-44a6-a609-a84ab1e0d4aa", "object_repr": "Response c846e4e0-9ce0-44a6-a609-a84ab1e0d4aa (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 750, "fields": {"action_time": "2024-12-08T20:04:06.621Z", "user": 2, "content_type": 14, "object_id": "c5363320-8105-4077-91bf-a23044f976bd", "object_repr": "Response c5363320-8105-4077-91bf-a23044f976bd (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 751, "fields": {"action_time": "2024-12-08T20:04:06.622Z", "user": 2, "content_type": 14, "object_id": "c2811236-c611-41d5-977d-014cb8d6c778", "object_repr": "Response c2811236-c611-41d5-977d-014cb8d6c778 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 752, "fields": {"action_time": "2024-12-08T20:04:06.623Z", "user": 2, "content_type": 14, "object_id": "c00518d9-fc96-4c8a-932f-3f16ca8cfa55", "object_repr": "Response c00518d9-fc96-4c8a-932f-3f16ca8cfa55 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 753, "fields": {"action_time": "2024-12-08T20:04:06.625Z", "user": 2, "content_type": 14, "object_id": "b20b93f1-b899-41de-a0fa-fe1b0b923845", "object_repr": "Response b20b93f1-b899-41de-a0fa-fe1b0b923845 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 754, "fields": {"action_time": "2024-12-08T20:04:06.626Z", "user": 2, "content_type": 14, "object_id": "ad22bc91-5a7d-4874-8bfb-3b40d1b9d304", "object_repr": "Response ad22bc91-5a7d-4874-8bfb-3b40d1b9d304 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 755, "fields": {"action_time": "2024-12-08T20:04:06.627Z", "user": 2, "content_type": 14, "object_id": "a76c15a5-0e7f-4b0c-aec8-6c4a5e5b3420", "object_repr": "Response a76c15a5-0e7f-4b0c-aec8-6c4a5e5b3420 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 756, "fields": {"action_time": "2024-12-08T20:04:06.628Z", "user": 2, "content_type": 14, "object_id": "a079c78d-ed77-4e63-bf84-66e686959e69", "object_repr": "Response a079c78d-ed77-4e63-bf84-66e686959e69 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 757, "fields": {"action_time": "2024-12-08T20:04:06.629Z", "user": 2, "content_type": 14, "object_id": "9cf103bd-dd51-4d2f-9cb1-df0ec044f3a0", "object_repr": "Response 9cf103bd-dd51-4d2f-9cb1-df0ec044f3a0 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 758, "fields": {"action_time": "2024-12-08T20:04:06.630Z", "user": 2, "content_type": 14, "object_id": "99a01ce5-0406-4fe5-bd0a-91df8220c9a2", "object_repr": "Response 99a01ce5-0406-4fe5-bd0a-91df8220c9a2 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 759, "fields": {"action_time": "2024-12-08T20:04:06.631Z", "user": 2, "content_type": 14, "object_id": "96583227-7267-4423-b633-b614af5f0343", "object_repr": "Response 96583227-7267-4423-b633-b614af5f0343 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 760, "fields": {"action_time": "2024-12-08T20:04:06.632Z", "user": 2, "content_type": 14, "object_id": "93084634-cebb-48a6-a5b7-89edaefdcefa", "object_repr": "Response 93084634-cebb-48a6-a5b7-89edaefdcefa (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 761, "fields": {"action_time": "2024-12-08T20:04:06.633Z", "user": 2, "content_type": 14, "object_id": "915c3633-d00a-453f-9166-7a6f9de0f900", "object_repr": "Response 915c3633-d00a-453f-9166-7a6f9de0f900 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 762, "fields": {"action_time": "2024-12-08T20:04:06.634Z", "user": 2, "content_type": 14, "object_id": "844dc135-8295-47b9-8a19-611411a7af63", "object_repr": "Response 844dc135-8295-47b9-8a19-611411a7af63 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 763, "fields": {"action_time": "2024-12-08T20:04:06.635Z", "user": 2, "content_type": 14, "object_id": "6cfa395d-0782-45ec-9611-7e2559b3c2fc", "object_repr": "Response 6cfa395d-0782-45ec-9611-7e2559b3c2fc (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 764, "fields": {"action_time": "2024-12-08T20:04:06.635Z", "user": 2, "content_type": 14, "object_id": "6ab60eaa-2476-45f2-be82-466a482fe5ee", "object_repr": "Response 6ab60eaa-2476-45f2-be82-466a482fe5ee (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 765, "fields": {"action_time": "2024-12-08T20:04:06.636Z", "user": 2, "content_type": 14, "object_id": "66b16109-a168-4217-9aaf-7437aad2e131", "object_repr": "Response 66b16109-a168-4217-9aaf-7437aad2e131 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 766, "fields": {"action_time": "2024-12-08T20:04:06.637Z", "user": 2, "content_type": 14, "object_id": "649a6a35-45f3-4a63-8b4e-5d4bd7e6e402", "object_repr": "Response 649a6a35-45f3-4a63-8b4e-5d4bd7e6e402 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 767, "fields": {"action_time": "2024-12-08T20:04:06.638Z", "user": 2, "content_type": 14, "object_id": "5f6c1c3f-81eb-4eb2-a967-d41938cdc094", "object_repr": "Response 5f6c1c3f-81eb-4eb2-a967-d41938cdc094 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 768, "fields": {"action_time": "2024-12-08T20:04:06.638Z", "user": 2, "content_type": 14, "object_id": "56ef6ca1-477a-4df5-b987-b8b1bad3acca", "object_repr": "Response 56ef6ca1-477a-4df5-b987-b8b1bad3acca (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 769, "fields": {"action_time": "2024-12-08T20:04:06.639Z", "user": 2, "content_type": 14, "object_id": "504c64ed-25d4-440b-8eac-0a862f241fd3", "object_repr": "Response 504c64ed-25d4-440b-8eac-0a862f241fd3 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 770, "fields": {"action_time": "2024-12-08T20:04:06.640Z", "user": 2, "content_type": 14, "object_id": "4d88a62f-b800-4c9d-bf85-ebd8ca9df808", "object_repr": "Response 4d88a62f-b800-4c9d-bf85-ebd8ca9df808 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 771, "fields": {"action_time": "2024-12-08T20:04:06.641Z", "user": 2, "content_type": 14, "object_id": "3f8fe52e-4abb-4567-859b-5b91049a0131", "object_repr": "Response 3f8fe52e-4abb-4567-859b-5b91049a0131 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 772, "fields": {"action_time": "2024-12-08T20:04:06.642Z", "user": 2, "content_type": 14, "object_id": "3df99669-2c29-47aa-9594-56cd83135ad2", "object_repr": "Response 3df99669-2c29-47aa-9594-56cd83135ad2 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 773, "fields": {"action_time": "2024-12-08T20:04:06.643Z", "user": 2, "content_type": 14, "object_id": "3ddae1c1-97d2-4e3d-8dad-38799a29d3df", "object_repr": "Response 3ddae1c1-97d2-4e3d-8dad-38799a29d3df (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 774, "fields": {"action_time": "2024-12-08T20:04:06.644Z", "user": 2, "content_type": 14, "object_id": "2798a477-965a-4b0c-a4fb-db69cc54686d", "object_repr": "Response 2798a477-965a-4b0c-a4fb-db69cc54686d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 775, "fields": {"action_time": "2024-12-08T20:04:06.647Z", "user": 2, "content_type": 14, "object_id": "269de054-c25c-4657-8f0a-8259cfa6cc5a", "object_repr": "Response 269de054-c25c-4657-8f0a-8259cfa6cc5a (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 776, "fields": {"action_time": "2024-12-08T20:04:06.648Z", "user": 2, "content_type": 14, "object_id": "25e70682-b9aa-4371-8b6d-a1db26de8d8f", "object_repr": "Response 25e70682-b9aa-4371-8b6d-a1db26de8d8f (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2024-12-08T20:04:06.649Z", "user": 2, "content_type": 14, "object_id": "19ad3d9b-68ae-49e4-a1b5-4bedc423ed07", "object_repr": "Response 19ad3d9b-68ae-49e4-a1b5-4bedc423ed07 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2024-12-08T20:04:06.650Z", "user": 2, "content_type": 14, "object_id": "11d6e2a1-b759-41f7-b12c-082232d4e30e", "object_repr": "Response 11d6e2a1-b759-41f7-b12c-082232d4e30e (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2024-12-08T20:04:06.651Z", "user": 2, "content_type": 14, "object_id": "102a0ee7-aba7-4843-8901-e6ee8a6d53c4", "object_repr": "Response 102a0ee7-aba7-4843-8901-e6ee8a6d53c4 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 780, "fields": {"action_time": "2024-12-08T20:04:06.651Z", "user": 2, "content_type": 14, "object_id": "0d535802-a049-4681-bc12-9455c640d66e", "object_repr": "Response 0d535802-a049-4681-bc12-9455c640d66e (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 781, "fields": {"action_time": "2024-12-08T20:04:06.652Z", "user": 2, "content_type": 14, "object_id": "03042da2-d858-491b-a17f-855c0dba82b3", "object_repr": "Response 03042da2-d858-491b-a17f-855c0dba82b3 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2024-12-08T20:04:06.653Z", "user": 2, "content_type": 14, "object_id": "01e7b630-6619-4bb3-a282-b94013b69e70", "object_repr": "Response 01e7b630-6619-4bb3-a282-b94013b69e70 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2024-12-08T20:04:31.893Z", "user": 2, "content_type": 16, "object_id": "1", "object_repr": "Popular Places", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2024-12-08T20:05:11.471Z", "user": 2, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN Survey", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Date that survey was made available\", \"Expiry date of survey\"]}}]"}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$720000$Exp83Sdgv7q1aAbosN5x58$47ZEPhOVaJMI8j0B2XxNwsb4mij+N60SKvXjlOMt3co=", "last_login": "2024-08-01T08:10:54.872Z", "is_superuser": true, "username": "admin", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2024-05-08T15:59:42.246Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$720000$RwMzwDLqopn2gN95rQMgY4$Rf2SYQoNx4fH6q2cqiJRzdqQ8BCcxsXc32Bc42jhsuA=", "last_login": "2024-12-08T20:03:09.506Z", "is_superuser": true, "username": "citizen", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2024-12-08T19:57:25.346Z", "groups": [], "user_permissions": []}}, {"model": "sessions.session", "pk": "3pwfefa6q4cgri1n16ubzd8vzlcymgd2", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sZQti:2bW_Jw2tr0XXEbAEXxl0NCaFxc7Np78LY7Nieix840Q", "expire_date": "2024-08-15T08:10:54.876Z"}}, {"model": "sessions.session", "pk": "e8ttvirbefbkepu27u0b72f3crzmw5rg", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sHK3q:yDyx3GFH7jpSgwOTuLzY-8tl_9tbwsNZ6wTvu46e5wM", "expire_date": "2024-06-26T09:14:30.480Z"}}, {"model": "sessions.session", "pk": "gjxv0ji2639fbk0v7ke7f584zufn79wt", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1s4jhz:TjbrwX-MoA359g6M_GXcC3MddBYo-lsWavlWWNM1c8k", "expire_date": "2024-05-22T15:59:55.830Z"}}, {"model": "sessions.session", "pk": "i0nertwtk70gn9fd762zjc487lf7a3q2", "fields": {"session_data": ".eJxVjEEOwiAQRe_C2hA6DKW4dO8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3EWIE6_W6D44LqDdKd6azK2ui5zkLsiD9rltSV-Xg7376BQL9_aUaSEFlkP2Sqj7TACY8QJlXFxdOA4GMoIOSBPYFXWgFmRsgETZRDvD9PvN58:1tKNUj:vgs6c7LOIszmQnoNQZKIOtQnk8IWdafUI1eRj3R6j9M", "expire_date": "2024-12-22T20:03:09.509Z"}}, {"model": "sessions.session", "pk": "kqdse8b2rquf07ntkv0jh8koz0mvhmya", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sMQT0:HyoeZoOQ6Rh2pdplnmGmrYiQ4rLO5ukpvuJCqnjry9c", "expire_date": "2024-07-10T11:05:34.809Z"}}, {"model": "sites.site", "pk": 1, "fields": {"domain": "example.com", "name": "example.com"}}, {"model": "apiapp.survey", "pk": 3, "fields": {"name": "CIVILIAN Survey", "description": "You are invited to participate in a research survey to understand how residents perceive their neighbourhood. As a resident, there is no better person than you to indicate and describe the positive and negative aspects of your neighbourhood. You are the expert, and your answers are very valuable to us in understanding what residents find important to make a neighbourhood a nice place to live.\r\n\r\nIn the survey, you will be asked questions about the neighbourhood where you live, places you like or dislike, places to be improved, and places where you identify an issue (such as noise or pollution). No personal data will be collected or published.\r\nAs researchers, we aim to collect and analyse your data and make recommendations for decision-makers. We will also make your voices heard by making your answers public on a dashboard that is available to all.\r\n\r\nThe survey is completely anonymous. Your participation in this study is entirely voluntary, and you can withdraw at any time. You are free to skip questions. Since it is anonymous, removing data once the form is completed is not possible. As with any online activity, the risk of a breach is always possible, but to the best of our ability, your answers will remain confidential.\r\n\r\nThis study is part of the Citizen Voice initiative at the Delft University of Technology. In case you have questions or would like to be updated on the outcomes of this study, you can contact Juliana Goncalves (Assistant Professor in the Department of Urbanism, TU Delft) J.E.Goncalves@tudelft.nl.\r\n\r\nBy proceeding with the survey, you agree to this Opening Statement and provide informed consent to participate.", "is_published": true, "need_logged_user": false, "editable_answers": true, "submit_message": "Thank you for your participation!", "publish_date": "2024-12-08T08:23:56Z", "expire_date": "2025-04-01T08:24:07Z", "public_url": "", "designer": 1}}, {"model": "apiapp.pointfeature", "pk": 148, "fields": {"geom": "SRID=4326;POINT (7.207031 52.597709)", "annotation": null, "location": 154}}, {"model": "apiapp.pointfeature", "pk": 149, "fields": {"geom": "SRID=4326;POINT (4.943848 51.782795)", "annotation": null, "location": 154}}, {"model": "apiapp.pointfeature", "pk": 150, "fields": {"geom": "SRID=4326;POINT (5.328369 51.068096)", "annotation": null, "location": 154}}, {"model": "apiapp.pointfeature", "pk": 151, "fields": {"geom": "SRID=4326;POINT (5.157715 51.60005)", "annotation": null, "location": 155}}, {"model": "apiapp.pointfeature", "pk": 152, "fields": {"geom": "SRID=4326;POINT (4.773193 51.934331)", "annotation": null, "location": 156}}, {"model": "apiapp.pointfeature", "pk": 153, "fields": {"geom": "SRID=4326;POINT (5.102783 51.345139)", "annotation": null, "location": 157}}, {"model": "apiapp.pointfeature", "pk": 154, "fields": {"geom": "SRID=4326;POINT (4.300781 51.853538)", "annotation": null, "location": 158}}, {"model": "apiapp.pointfeature", "pk": 155, "fields": {"geom": "SRID=4326;POINT (5.564209 52.171349)", "annotation": null, "location": 158}}, {"model": "apiapp.pointfeature", "pk": 156, "fields": {"geom": "SRID=4326;POINT (5.361328 51.638135)", "annotation": null, "location": 159}}, {"model": "apiapp.pointfeature", "pk": 157, "fields": {"geom": "SRID=4326;POINT (5.138855 51.879861)", "annotation": null, "location": 160}}, {"model": "apiapp.pointfeature", "pk": 158, "fields": {"geom": "SRID=4326;POINT (4.888916 52.025121)", "annotation": null, "location": 161}}, {"model": "apiapp.pointfeature", "pk": 159, "fields": {"geom": "SRID=4326;POINT (5.097656 52.079168)", "annotation": null, "location": 162}}, {"model": "apiapp.pointfeature", "pk": 160, "fields": {"geom": "SRID=4326;POINT (4.350586 51.781096)", "annotation": null, "location": 163}}, {"model": "apiapp.pointfeature", "pk": 161, "fields": {"geom": "SRID=4326;POINT (5.339355 51.977775)", "annotation": null, "location": 164}}, {"model": "apiapp.pointfeature", "pk": 162, "fields": {"geom": "SRID=4326;POINT (5.548096 51.93038)", "annotation": null, "location": 165}}, {"model": "apiapp.polygonfeature", "pk": 13, "fields": {"geom": "SRID=4326;POLYGON ((4.053955 50.944815, 5.482178 50.68799, 5.866699 51.213995, 4.053955 50.944815))", "annotation": null, "location": 153}}, {"model": "apiapp.linefeature", "pk": 9, "fields": {"geom": "SRID=4326;LINESTRING (5.482178 52.789697, 6.053467 53.087646, 6.49292 53.008394, 7.207031 52.636619, 6.888428 52.167418)", "annotation": null, "location": 153}}, {"model": "apiapp.locationcollection", "pk": 153, "fields": {"name": "95c8fd01-1f2e-45e4-89f6-eeb584d7c859", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 154, "fields": {"name": "5e1e2da4-ba9a-4ea8-bf99-8875bbb0bcc2", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 155, "fields": {"name": "3511ae68-27c6-4bb9-b5d5-72f25a16736e", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 156, "fields": {"name": "8167ad96-6028-4fad-b4a4-0816bfb39b34", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 157, "fields": {"name": "4744c2ef-7db4-400d-b97e-bec2fd3657c2", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 158, "fields": {"name": "b331ce8c-e5d1-44ed-bce3-884b28eba4d0", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 159, "fields": {"name": "ef244194-61be-41ab-86d2-4f6043144978", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 160, "fields": {"name": "191fecd9-b0eb-43ee-b9e4-5f92a53e51b9", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 161, "fields": {"name": "fbcd1a19-7f4c-4cf6-9594-9a0ad8380631", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 162, "fields": {"name": "e04e755d-6f7e-4041-b333-87e831c9c351", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 163, "fields": {"name": "5cccba20-329d-4769-a159-5017db14ffa3", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 164, "fields": {"name": "717bfa63-6726-405f-a792-2031a82a5b71", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 165, "fields": {"name": "57bceb8c-a3c2-4737-a8d6-c6044187dc94", "description": ""}}, {"model": "apiapp.mapview", "pk": 18, "fields": {"name": "Civilian NL", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": null}}, {"model": "apiapp.mapview", "pk": 121, "fields": {"name": "Delft", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 15, "center": [51.9999518, 4.3641589]}, "location": null}}, {"model": "apiapp.mapview", "pk": 161, "fields": {"name": "ef29b584-48c7-4e17-8277-b4cd271e4576", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 5, "center": [51.781435604431195, 6.5478515625]}, "location": null}}, {"model": "apiapp.mapview", "pk": 162, "fields": {"name": "95c8fd01-1f2e-45e4-89f6-eeb584d7c859", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 153}}, {"model": "apiapp.mapview", "pk": 163, "fields": {"name": "5e1e2da4-ba9a-4ea8-bf99-8875bbb0bcc2", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 154}}, {"model": "apiapp.mapview", "pk": 164, "fields": {"name": "3511ae68-27c6-4bb9-b5d5-72f25a16736e", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 155}}, {"model": "apiapp.mapview", "pk": 165, "fields": {"name": "8167ad96-6028-4fad-b4a4-0816bfb39b34", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 156}}, {"model": "apiapp.mapview", "pk": 166, "fields": {"name": "4744c2ef-7db4-400d-b97e-bec2fd3657c2", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.58389660297626, 5.559082031250001]}, "location": 157}}, {"model": "apiapp.mapview", "pk": 167, "fields": {"name": "b331ce8c-e5d1-44ed-bce3-884b28eba4d0", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 158}}, {"model": "apiapp.mapview", "pk": 168, "fields": {"name": "ef244194-61be-41ab-86d2-4f6043144978", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.69299021149185, 4.603271484375001]}, "location": 159}}, {"model": "apiapp.mapview", "pk": 169, "fields": {"name": "1818c63e-42e6-4787-9225-7259b1a8fd82", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": null}}, {"model": "apiapp.mapview", "pk": 170, "fields": {"name": "163c23b3-c16a-48c8-89f3-292714010c2f", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.86292391360244, 5.053710937500001]}, "location": null}}, {"model": "apiapp.mapview", "pk": 171, "fields": {"name": "e04e755d-6f7e-4041-b333-87e831c9c351", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 8, "center": [52.08288179572668, 6.333618164062501]}, "location": 162}}, {"model": "apiapp.mapview", "pk": 172, "fields": {"name": "5cccba20-329d-4769-a159-5017db14ffa3", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 163}}, {"model": "apiapp.mapview", "pk": 173, "fields": {"name": "717bfa63-6726-405f-a792-2031a82a5b71", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.82219818336938, 6.498413085937501]}, "location": 164}}, {"model": "apiapp.mapview", "pk": 174, "fields": {"name": "57bceb8c-a3c2-4737-a8d6-c6044187dc94", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.70660846336452, 5.7733154296875]}, "location": 165}}, {"model": "apiapp.question", "pk": 5, "fields": {"text": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "explanation": null, "order": 1, "required": true, "has_text_input": true, "question_type": "radio", "choices": "I like to live in my neighbourhood and intend to stay here for many years., \r\nI like to live in my neighbourhood but would like to move elsewhere in the city., \r\nI do not like to live in my neighbourhood and I would like to move elsewhere in the city.,\r\nI do not like to live in my neighbourhood but would like to see it improve.,\r\nI like to live in my neighbourhood but I am living here temporarily and plan to move to another city.,\r\nOther.", "survey": 3, "is_geospatial": false, "mapview": null}}, {"model": "apiapp.question", "pk": 6, "fields": {"text": "What is your favourite area in the neighbourhood and why?", "explanation": "Please mark it on the map.", "order": 2, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 7, "fields": {"text": "What is your least favourite area in the neighbourhood and why?", "explanation": "Please mark it on the map.", "order": 3, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 8, "fields": {"text": "What is the closest green area to your house?", "explanation": "Please mark it on the map.", "order": 4, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 9, "fields": {"text": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "explanation": "Please mark it on the map, and click on the symbol to type the kind of green you would like.", "order": 5, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 10, "fields": {"text": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "explanation": "Please mark it on the map, and click on the symbol to type what have you seen.", "order": 6, "required": true, "has_text_input": false, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 11, "fields": {"text": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "explanation": "Please mark it on the map, and click on the symbol to type how they can be improved.", "order": 7, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 13, "fields": {"text": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "explanation": "Please mark these on the map.", "order": 8, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 14, "fields": {"text": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "explanation": "Please mark these on the map.", "order": 9, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 15, "fields": {"text": "Could you identify the places in your neighbourhood where you feel unsafe?", "explanation": "Please mark it on the map.", "order": 10, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 16, "fields": {"text": "In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "explanation": "Please mark it on the map.", "order": 11, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 17, "fields": {"text": "In your neighbourhood, where do you see water on the ground after a heavy rain?", "explanation": "Please mark it on the map.", "order": 12, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 18, "fields": {"text": "Could you identify the places in your neighbourhood where waste/trash is a problem?", "explanation": "Please mark these on the map.", "order": 13, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 19, "fields": {"text": "Is there anything else you would like to say about your neighbourhood?", "explanation": null, "order": 14, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": false, "mapview": null}}] \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml index b17f1ad8..df0d15d6 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -29,6 +29,7 @@ services: context: ./citizenvoice command: > sh -c "python manage.py migrate && + python manage.py loaddata civilian-db.json && python manage.py runserver 0.0.0.0:8000" container_name: django-app environment: From 4cb1a0eabea4f8d391a0e2c47d40d4f4079236d2 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 8 Dec 2024 23:52:46 +0100 Subject: [PATCH 52/58] Update ESLint code action setting to 'explicit' in VSCode configuration --- frontend/.vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/.vscode/settings.json b/frontend/.vscode/settings.json index c0a6a4e8..f940eb21 100644 --- a/frontend/.vscode/settings.json +++ b/frontend/.vscode/settings.json @@ -3,7 +3,7 @@ "prettier.requireConfig": true, // "editor.formatOnSave": false, "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "[vue]": { "editor.formatOnSave": true, From 3c261b521b1896490efa2ac816a1c27ad81f90e8 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 8 Dec 2024 23:52:55 +0100 Subject: [PATCH 53/58] Comment out unused 'pages:extend' hook in nuxt.config.js --- frontend/nuxt.config.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/nuxt.config.js b/frontend/nuxt.config.js index b2b07395..770736e4 100644 --- a/frontend/nuxt.config.js +++ b/frontend/nuxt.config.js @@ -129,14 +129,14 @@ export default defineNuxtConfig({ }, hooks: { - 'pages:extend'(routes) { - routes.push({ - name: "survey-design", - path: "/design/surveys/create", - file: path.resolve(__dirname, './pages/design/surveys/[_id]/index.vue') - }); - return routes - } + // 'pages:extend'(routes) { + // routes.push({ + // name: "survey-design", + // path: "/design/surveys/create", + // file: path.resolve(__dirname, './pages/design/surveys/[_id]/index.vue') + // }); + // return routes + // } }, routeRules: { From 35b3451743e239177ca4ecf00e5c095ea4c07f7c Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Sun, 8 Dec 2024 23:53:02 +0100 Subject: [PATCH 54/58] Refactor docker-compose.yaml to improve service naming and organization --- frontend/yarn.lock | 1594 ++++++++++++++++++++++++-------------------- 1 file changed, 864 insertions(+), 730 deletions(-) diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 80b53eda..d89c335e 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -20,7 +20,7 @@ resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.10.tgz#ae829f170158e297a9b6a28f161a8e487d00814d" integrity sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww== -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.24.2", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.24.2", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== @@ -30,9 +30,9 @@ picocolors "^1.0.0" "@babel/compat-data@^7.25.9": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" - integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.3.tgz#99488264a56b2aded63983abd6a417f03b92ed02" + integrity sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g== "@babel/core@^7.23.0", "@babel/core@^7.25.7", "@babel/core@^7.26.0": version "7.26.0" @@ -55,13 +55,13 @@ json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.25.9", "@babel/generator@^7.26.0": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" - integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== +"@babel/generator@^7.26.0", "@babel/generator@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.3.tgz#ab8d4360544a425c90c248df7059881f4b2ce019" + integrity sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ== dependencies: - "@babel/parser" "^7.26.2" - "@babel/types" "^7.26.0" + "@babel/parser" "^7.26.3" + "@babel/types" "^7.26.3" "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" jsesc "^3.0.2" @@ -174,12 +174,12 @@ "@babel/template" "^7.25.9" "@babel/types" "^7.26.0" -"@babel/parser@^7.25.3", "@babel/parser@^7.25.4", "@babel/parser@^7.25.6", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" - integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== +"@babel/parser@^7.25.3", "@babel/parser@^7.25.4", "@babel/parser@^7.25.6", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2", "@babel/parser@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.3.tgz#8c51c5db6ddf08134af1ddbacf16aaab48bac234" + integrity sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA== dependencies: - "@babel/types" "^7.26.0" + "@babel/types" "^7.26.3" "@babel/plugin-proposal-decorators@^7.23.0": version "7.25.9" @@ -226,9 +226,9 @@ "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.9.tgz#69267905c2b33c2ac6d8fe765e9dc2ddc9df3849" - integrity sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ== + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz#3d6add9c78735623317387ee26d5ada540eee3fd" + integrity sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" "@babel/helper-create-class-features-plugin" "^7.25.9" @@ -237,9 +237,9 @@ "@babel/plugin-syntax-typescript" "^7.25.9" "@babel/standalone@^7.25.7": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.26.2.tgz#a1fdf2d477a1f3d2828f0551b5dc14c44d4e127f" - integrity sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w== + version "7.26.4" + resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.26.4.tgz#440d8046929174b463e2c6294fc8f6d49fdea550" + integrity sha512-SF+g7S2mhTT1b7CHyfNjDkPU1corxg4LPYsyP0x5KuCl+EbtBQHRLqr9N3q7e7+x7NQ5LYxQf8mJ2PmzebLr0A== "@babel/template@^7.25.0", "@babel/template@^7.25.9": version "7.25.9" @@ -251,22 +251,22 @@ "@babel/types" "^7.25.9" "@babel/traverse@^7.25.6", "@babel/traverse@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" - integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== + version "7.26.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd" + integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== dependencies: - "@babel/code-frame" "^7.25.9" - "@babel/generator" "^7.25.9" - "@babel/parser" "^7.25.9" + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.3" + "@babel/parser" "^7.26.3" "@babel/template" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/types" "^7.26.3" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.25.4", "@babel/types@^7.25.6", "@babel/types@^7.25.7", "@babel/types@^7.25.8", "@babel/types@^7.25.9", "@babel/types@^7.26.0": - version "7.26.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff" - integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== +"@babel/types@^7.25.4", "@babel/types@^7.25.6", "@babel/types@^7.25.7", "@babel/types@^7.25.8", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0" + integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA== dependencies: "@babel/helper-string-parser" "^7.25.9" "@babel/helper-validator-identifier" "^7.25.9" @@ -877,19 +877,19 @@ resolved "https://registry.yarnpkg.com/@nuxt/devalue/-/devalue-2.0.2.tgz#5749f04df13bda4c863338d8dabaf370f45ef7c7" integrity sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA== -"@nuxt/devtools-kit@1.6.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.6.0.tgz#dca1bbb85dbe839d40ec7ac602eed786ed2fcba4" - integrity sha512-kJ8mVKwTSN3tdEVNy7mxKCiQk9wsG5t3oOrRMWk6IEbTSov+5sOULqQSM/+OWxWsEDmDfA7QlS5sM3Ti9uMRqQ== +"@nuxt/devtools-kit@1.6.3": + version "1.6.3" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.6.3.tgz#630710065f46bb0e32ae019eb19060eac84d912a" + integrity sha512-rcWpsGUnaDyGtmA667A4FDrVWdjuAturHV+Lkt3Xmedu5G4wC4sOzoA0+/Yco3/kWZ6fLVUTKwI2mvfzaQIugA== dependencies: - "@nuxt/kit" "^3.13.2" - "@nuxt/schema" "^3.13.2" + "@nuxt/kit" "^3.14.1592" + "@nuxt/schema" "^3.14.1592" execa "^7.2.0" -"@nuxt/devtools-wizard@1.6.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.6.0.tgz#10223064114eacd875bdbed58174a5ffa91d26fd" - integrity sha512-n+mzz5NwnKZim0tq1oBi+x1nNXb21fp7QeBl7bYKyDT1eJ0XCxFkVTr/kB/ddkkLYZ+o8TykpeNPa74cN+xAyQ== +"@nuxt/devtools-wizard@1.6.3": + version "1.6.3" + resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.6.3.tgz#37faf4b921b22eb1e35f5793efaf9a7f1fdd4ef3" + integrity sha512-CvrnHTzEwfyCh06Z9I9F10MMqdhMCqpDGJaLsjzGyUoRAcFps9PRb1gyvSE/mwXBM6xsNltyUTccYwzdRCj0pA== dependencies: consola "^3.2.3" diff "^7.0.0" @@ -897,60 +897,60 @@ global-directory "^4.0.1" magicast "^0.3.5" pathe "^1.1.2" - pkg-types "^1.2.0" + pkg-types "^1.2.1" prompts "^2.4.2" rc9 "^2.1.2" semver "^7.6.3" "@nuxt/devtools@^1.6.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.6.0.tgz#333a055bd4038db4b72d217738392e42758c9380" - integrity sha512-xNorMapzpM8HaW7NnAsEEO38OrmrYBzGvkkqfBU5nNh5XEymmIfCbQc7IA/GIOH9pXOV4gRutCjHCWXHYbOl3A== + version "1.6.3" + resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.6.3.tgz#25e37f747d1001377b5037bcd6d106579c6f69ab" + integrity sha512-+pwNrOrpWYMUpVDo7VtBBcYGA2QCXc+RjLP2lPpPFfXHQrStlFT2/7bi+byzwzn7ZtcMRbOMVV6Lbf7oma4HIw== dependencies: "@antfu/utils" "^0.7.10" - "@nuxt/devtools-kit" "1.6.0" - "@nuxt/devtools-wizard" "1.6.0" - "@nuxt/kit" "^3.13.2" - "@vue/devtools-core" "7.4.4" - "@vue/devtools-kit" "7.4.4" - birpc "^0.2.17" + "@nuxt/devtools-kit" "1.6.3" + "@nuxt/devtools-wizard" "1.6.3" + "@nuxt/kit" "^3.14.1592" + "@vue/devtools-core" "7.6.4" + "@vue/devtools-kit" "7.6.4" + birpc "^0.2.19" consola "^3.2.3" - cronstrue "^2.50.0" + cronstrue "^2.52.0" destr "^2.0.3" error-stack-parser-es "^0.1.5" execa "^7.2.0" fast-npm-meta "^0.2.2" - flatted "^3.3.1" + flatted "^3.3.2" get-port-please "^3.1.2" hookable "^5.5.3" image-meta "^0.2.1" is-installed-globally "^1.0.0" launch-editor "^2.9.1" - local-pkg "^0.5.0" + local-pkg "^0.5.1" magicast "^0.3.5" - nypm "^0.3.11" + nypm "^0.4.1" ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" - pkg-types "^1.2.0" + pkg-types "^1.2.1" rc9 "^2.1.2" scule "^1.3.0" semver "^7.6.3" simple-git "^3.27.0" - sirv "^2.0.4" - tinyglobby "^0.2.6" - unimport "^3.12.0" - vite-plugin-inspect "^0.8.7" + sirv "^3.0.0" + tinyglobby "^0.2.10" + unimport "^3.14.2" + vite-plugin-inspect "~0.8.8" vite-plugin-vue-inspector "5.1.3" which "^3.0.1" ws "^8.18.0" -"@nuxt/kit@3.14.159", "@nuxt/kit@^3.12.2", "@nuxt/kit@^3.13.1", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159", "@nuxt/kit@^3.9.0", "@nuxt/kit@^3.9.3": - version "3.14.159" - resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.14.159.tgz#1b856bd5ed75c97e425a0b57dacfe476990a6863" - integrity sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g== +"@nuxt/kit@3.14.1592", "@nuxt/kit@^3.12.2", "@nuxt/kit@^3.13.1", "@nuxt/kit@^3.13.2", "@nuxt/kit@^3.14.159", "@nuxt/kit@^3.14.1592", "@nuxt/kit@^3.9.0", "@nuxt/kit@^3.9.3": + version "3.14.1592" + resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.14.1592.tgz#f959a269424c1ee313585a46112e474b6ccab3bc" + integrity sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w== dependencies: - "@nuxt/schema" "3.14.159" + "@nuxt/schema" "3.14.1592" c12 "^2.0.1" consola "^3.2.3" defu "^6.1.4" @@ -961,14 +961,14 @@ jiti "^2.4.0" klona "^2.0.6" knitwork "^1.1.0" - mlly "^1.7.2" + mlly "^1.7.3" pathe "^1.1.2" pkg-types "^1.2.1" scule "^1.3.0" semver "^7.6.3" ufo "^1.5.4" unctx "^2.3.1" - unimport "^3.13.1" + unimport "^3.13.2" untyped "^1.5.1" "@nuxt/module-builder@^0.5.4": @@ -982,10 +982,10 @@ pathe "^1.1.1" unbuild "^2.0.0" -"@nuxt/schema@3.14.159", "@nuxt/schema@^3.13.2": - version "3.14.159" - resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.159.tgz#c9e9a18f090fe44281d4b9f567474610d60ec1f9" - integrity sha512-ggXA3F2f9udQoEy5WwrY6bTMvpDaErUYRLSEzdMqqCqjOQ5manfFgfuScGj3ooZiXLIX2TGLVTzcll4nnpDlnQ== +"@nuxt/schema@3.14.1592", "@nuxt/schema@^3.14.1592": + version "3.14.1592" + resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.14.1592.tgz#38c5c0af51d0b95e011db6c332f578aac97c8c82" + integrity sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ== dependencies: c12 "^2.0.1" compatx "^0.1.8" @@ -995,10 +995,10 @@ pathe "^1.1.2" pkg-types "^1.2.1" scule "^1.3.0" - std-env "^3.7.0" + std-env "^3.8.0" ufo "^1.5.4" uncrypto "^0.1.3" - unimport "^3.13.1" + unimport "^3.13.2" untyped "^1.5.1" "@nuxt/telemetry@^2.6.0": @@ -1025,15 +1025,15 @@ rc9 "^2.1.2" std-env "^3.7.0" -"@nuxt/vite-builder@3.14.159": - version "3.14.159" - resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.14.159.tgz#85d5d3e2768e315c2c1a484df78f1ff03d35eced" - integrity sha512-V3FJnDNR3tCAYeYmxxPsAWuMq6z5mZi8KPWO+lrO/Z8LqfD3+uYpluzUtzj0S1IIhCERmHe4rUNzr67RqSTL2Q== +"@nuxt/vite-builder@3.14.1592": + version "3.14.1592" + resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.14.1592.tgz#ed143efaf267920f0f1cda5584b811bb017c0e82" + integrity sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ== dependencies: - "@nuxt/kit" "3.14.159" + "@nuxt/kit" "3.14.1592" "@rollup/plugin-replace" "^6.0.1" - "@vitejs/plugin-vue" "^5.1.4" - "@vitejs/plugin-vue-jsx" "^4.0.1" + "@vitejs/plugin-vue" "^5.2.0" + "@vitejs/plugin-vue-jsx" "^4.1.0" autoprefixer "^10.4.20" clear "^0.1.0" consola "^3.2.3" @@ -1047,21 +1047,21 @@ h3 "^1.13.0" jiti "^2.4.0" knitwork "^1.1.0" - magic-string "^0.30.12" - mlly "^1.7.2" + magic-string "^0.30.13" + mlly "^1.7.3" ohash "^1.1.4" pathe "^1.1.2" perfect-debounce "^1.0.0" pkg-types "^1.2.1" - postcss "^8.4.47" + postcss "^8.4.49" rollup-plugin-visualizer "^5.12.0" - std-env "^3.7.0" + std-env "^3.8.0" strip-literal "^2.1.0" ufo "^1.5.4" unenv "^1.10.0" - unplugin "^1.15.0" - vite "^5.4.10" - vite-node "^2.1.4" + unplugin "^1.16.0" + vite "^5.4.11" + vite-node "^2.1.5" vite-plugin-checker "^0.8.0" vue-bundle-renderer "^2.1.1" @@ -1236,18 +1236,18 @@ require-from-string "^2.0.2" uri-js-replace "^1.0.1" -"@redocly/config@^0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@redocly/config/-/config-0.16.0.tgz#4b7700a5cb6e04bc6d6fdb94b871c9e260a1fba6" - integrity sha512-t9jnODbUcuANRSl/K4L9nb12V+U5acIHnVSl26NWrtSdDZVtoqUXk2yGFPZzohYf62cCfEQUT8ouJ3bhPfpnJg== +"@redocly/config@^0.17.0": + version "0.17.1" + resolved "https://registry.yarnpkg.com/@redocly/config/-/config-0.17.1.tgz#2def04cecf440dd78c0f102f53f3444fac050768" + integrity sha512-CEmvaJuG7pm2ylQg53emPmtgm4nW2nxBgwXzbVEHpGas/lGnMyN8Zlkgiz6rPw0unASg6VW3wlz27SOL5XFHYQ== "@redocly/openapi-core@^1.25.9": - version "1.25.11" - resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.25.11.tgz#93f168284986da6809363b001e9aa7c2104c2fc0" - integrity sha512-bH+a8izQz4fnKROKoX3bEU8sQ9rjvEIZOqU6qTmxlhOJ0NsKa5e+LmU18SV0oFeg5YhWQhhEDihXkvKJ1wMMNQ== + version "1.25.15" + resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.25.15.tgz#61d82b054340e080998efc3f701ca55c20f7fdb8" + integrity sha512-/dpr5zpGj2t1Bf7EIXEboRZm1hsJZBQfv3Q1pkivtdAEg3if2khv+b9gY68aquC6cM/2aQY2kMLy8LlY2tn+Og== dependencies: "@redocly/ajv" "^8.11.2" - "@redocly/config" "^0.16.0" + "@redocly/config" "^0.17.0" colorette "^1.2.0" https-proxy-agent "^7.0.4" js-levenshtein "^1.1.6" @@ -1355,14 +1355,6 @@ smob "^1.0.0" terser "^5.17.4" -"@rollup/pluginutils@^4.0.0": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" - integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== - dependencies: - estree-walker "^2.0.1" - picomatch "^2.2.2" - "@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.3", "@rollup/pluginutils@^5.1.0", "@rollup/pluginutils@^5.1.2", "@rollup/pluginutils@^5.1.3": version "5.1.3" resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.3.tgz#3001bf1a03f3ad24457591f2c259c8e514e0dbdf" @@ -1372,95 +1364,100 @@ estree-walker "^2.0.2" picomatch "^4.0.2" -"@rollup/rollup-android-arm-eabi@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.25.0.tgz#3e7eda4c0c1de6d2415343002d742ff95e38dca7" - integrity sha512-CC/ZqFZwlAIbU1wUPisHyV/XRc5RydFrNLtgl3dGYskdwPZdt4HERtKm50a/+DtTlKeCq9IXFEWR+P6blwjqBA== - -"@rollup/rollup-android-arm64@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.25.0.tgz#04f679231acf7284f1f8a1f7250d0e0944865ba8" - integrity sha512-/Y76tmLGUJqVBXXCfVS8Q8FJqYGhgH4wl4qTA24E9v/IJM0XvJCGQVSW1QZ4J+VURO9h8YCa28sTFacZXwK7Rg== - -"@rollup/rollup-darwin-arm64@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.25.0.tgz#ecea723041621747d0772af93b54752edf26467a" - integrity sha512-YVT6L3UrKTlC0FpCZd0MGA7NVdp7YNaEqkENbWQ7AOVOqd/7VzyHpgIpc1mIaxRAo1ZsJRH45fq8j4N63I/vvg== - -"@rollup/rollup-darwin-x64@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.25.0.tgz#28e6e0687092f31e20982fc104779d48c643fc21" - integrity sha512-ZRL+gexs3+ZmmWmGKEU43Bdn67kWnMeWXLFhcVv5Un8FQcx38yulHBA7XR2+KQdYIOtD0yZDWBCudmfj6lQJoA== - -"@rollup/rollup-freebsd-arm64@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.25.0.tgz#99e9173b8aef3d1ef086983da70413988206e530" - integrity sha512-xpEIXhiP27EAylEpreCozozsxWQ2TJbOLSivGfXhU4G1TBVEYtUPi2pOZBnvGXHyOdLAUUhPnJzH3ah5cqF01g== - -"@rollup/rollup-freebsd-x64@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.25.0.tgz#f3a1ef941f8d3c6b2b036484c69a7b2d3d9ebbd7" - integrity sha512-sC5FsmZGlJv5dOcURrsnIK7ngc3Kirnx3as2XU9uER+zjfyqIjdcMVgzy4cOawhsssqzoAX19qmxgJ8a14Qrqw== - -"@rollup/rollup-linux-arm-gnueabihf@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.25.0.tgz#9ba6adcc33f26f2a0c6ee658f0bbda4de8da2f75" - integrity sha512-uD/dbLSs1BEPzg564TpRAQ/YvTnCds2XxyOndAO8nJhaQcqQGFgv/DAVko/ZHap3boCvxnzYMa3mTkV/B/3SWA== - -"@rollup/rollup-linux-arm-musleabihf@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.25.0.tgz#62f2426fa9016ec884f4fa779d7b62d5ba02a41a" - integrity sha512-ZVt/XkrDlQWegDWrwyC3l0OfAF7yeJUF4fq5RMS07YM72BlSfn2fQQ6lPyBNjt+YbczMguPiJoCfaQC2dnflpQ== - -"@rollup/rollup-linux-arm64-gnu@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.25.0.tgz#f98ec111a231d35e0c6d3404e3d80f67f9d5b9f8" - integrity sha512-qboZ+T0gHAW2kkSDPHxu7quaFaaBlynODXpBVnPxUgvWYaE84xgCKAPEYE+fSMd3Zv5PyFZR+L0tCdYCMAtG0A== - -"@rollup/rollup-linux-arm64-musl@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.25.0.tgz#4b36ffb8359f959f2c29afd187603c53368b6723" - integrity sha512-ndWTSEmAaKr88dBuogGH2NZaxe7u2rDoArsejNslugHZ+r44NfWiwjzizVS1nUOHo+n1Z6qV3X60rqE/HlISgw== - -"@rollup/rollup-linux-powerpc64le-gnu@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.25.0.tgz#52f4b39e6783505d168a745b79d86474fde71680" - integrity sha512-BVSQvVa2v5hKwJSy6X7W1fjDex6yZnNKy3Kx1JGimccHft6HV0THTwNtC2zawtNXKUu+S5CjXslilYdKBAadzA== - -"@rollup/rollup-linux-riscv64-gnu@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.25.0.tgz#49195be7e6a7d68d482b12461e2ea914e31ff977" - integrity sha512-G4hTREQrIdeV0PE2JruzI+vXdRnaK1pg64hemHq2v5fhv8C7WjVaeXc9P5i4Q5UC06d/L+zA0mszYIKl+wY8oA== - -"@rollup/rollup-linux-s390x-gnu@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.25.0.tgz#4b8d50a205eac7b46cdcb9c50d4a6ae5994c02e0" - integrity sha512-9T/w0kQ+upxdkFL9zPVB6zy9vWW1deA3g8IauJxojN4bnz5FwSsUAD034KpXIVX5j5p/rn6XqumBMxfRkcHapQ== - -"@rollup/rollup-linux-x64-gnu@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.25.0.tgz#dfcceebc5ccac7fc2db19471996026258c81b55f" - integrity sha512-ThcnU0EcMDn+J4B9LD++OgBYxZusuA7iemIIiz5yzEcFg04VZFzdFjuwPdlURmYPZw+fgVrFzj4CA64jSTG4Ig== - -"@rollup/rollup-linux-x64-musl@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.25.0.tgz#192f78bad8429711d63a31dc0a7d3312e2df850e" - integrity sha512-zx71aY2oQxGxAT1JShfhNG79PnjYhMC6voAjzpu/xmMjDnKNf6Nl/xv7YaB/9SIa9jDYf8RBPWEnjcdlhlv1rQ== - -"@rollup/rollup-win32-arm64-msvc@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.25.0.tgz#f4ec076579634f780b4e5896ae7f59f3e38e0c60" - integrity sha512-JT8tcjNocMs4CylWY/CxVLnv8e1lE7ff1fi6kbGocWwxDq9pj30IJ28Peb+Y8yiPNSF28oad42ApJB8oUkwGww== - -"@rollup/rollup-win32-ia32-msvc@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.25.0.tgz#5458eab1929827e4f805cefb90bd09ecf7eeed2b" - integrity sha512-dRLjLsO3dNOfSN6tjyVlG+Msm4IiZnGkuZ7G5NmpzwF9oOc582FZG05+UdfTbz5Jd4buK/wMb6UeHFhG18+OEg== - -"@rollup/rollup-win32-x64-msvc@4.25.0": - version "4.25.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.25.0.tgz#93415e7e707e4b156d77c5950b983b58f4bc33f3" - integrity sha512-/RqrIFtLB926frMhZD0a5oDa4eFIbyNEwLLloMTEjmqfwZWXywwVVOVmwTsuyhC9HKkVEZcOOi+KV4U9wmOdlg== +"@rollup/rollup-android-arm-eabi@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.1.tgz#7f4c4d8cd5ccab6e95d6750dbe00321c1f30791e" + integrity sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ== + +"@rollup/rollup-android-arm64@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.1.tgz#17ea71695fb1518c2c324badbe431a0bd1879f2d" + integrity sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA== + +"@rollup/rollup-darwin-arm64@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.1.tgz#dac0f0d0cfa73e7d5225ae6d303c13c8979e7999" + integrity sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ== + +"@rollup/rollup-darwin-x64@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.1.tgz#8f63baa1d31784904a380d2e293fa1ddf53dd4a2" + integrity sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ== + +"@rollup/rollup-freebsd-arm64@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.1.tgz#30ed247e0df6e8858cdc6ae4090e12dbeb8ce946" + integrity sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA== + +"@rollup/rollup-freebsd-x64@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.1.tgz#57846f382fddbb508412ae07855b8a04c8f56282" + integrity sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ== + +"@rollup/rollup-linux-arm-gnueabihf@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.1.tgz#378ca666c9dae5e6f94d1d351e7497c176e9b6df" + integrity sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA== + +"@rollup/rollup-linux-arm-musleabihf@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.1.tgz#a692eff3bab330d5c33a5d5813a090c15374cddb" + integrity sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg== + +"@rollup/rollup-linux-arm64-gnu@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.1.tgz#6b1719b76088da5ac1ae1feccf48c5926b9e3db9" + integrity sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA== + +"@rollup/rollup-linux-arm64-musl@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.1.tgz#865baf5b6f5ff67acb32e5a359508828e8dc5788" + integrity sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A== + +"@rollup/rollup-linux-loongarch64-gnu@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.28.1.tgz#23c6609ba0f7fa7a7f2038b6b6a08555a5055a87" + integrity sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.1.tgz#652ef0d9334a9f25b9daf85731242801cb0fc41c" + integrity sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A== + +"@rollup/rollup-linux-riscv64-gnu@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.1.tgz#1eb6651839ee6ebca64d6cc64febbd299e95e6bd" + integrity sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA== + +"@rollup/rollup-linux-s390x-gnu@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.1.tgz#015c52293afb3ff2a293cf0936b1d43975c1e9cd" + integrity sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg== + +"@rollup/rollup-linux-x64-gnu@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.1.tgz#b83001b5abed2bcb5e2dbeec6a7e69b194235c1e" + integrity sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw== + +"@rollup/rollup-linux-x64-musl@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.1.tgz#6cc7c84cd4563737f8593e66f33b57d8e228805b" + integrity sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g== + +"@rollup/rollup-win32-arm64-msvc@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.1.tgz#631ffeee094d71279fcd1fe8072bdcf25311bc11" + integrity sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A== + +"@rollup/rollup-win32-ia32-msvc@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.1.tgz#06d1d60d5b9f718e8a6c4a43f82e3f9e3254587f" + integrity sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA== + +"@rollup/rollup-win32-x64-msvc@4.28.1": + version "4.28.1" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.1.tgz#4dff5c4259ebe6c5b4a8f2c5bc3829b7a8447ff0" + integrity sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA== "@rtsao/scc@^1.1.0": version "1.1.0" @@ -1500,11 +1497,11 @@ integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== "@types/node@*": - version "22.9.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.9.0.tgz#b7f16e5c3384788542c72dc3d561a7ceae2c0365" - integrity sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ== + version "22.10.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.1.tgz#41ffeee127b8975a05f8c4f83fb89bcb2987d766" + integrity sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ== dependencies: - undici-types "~6.19.8" + undici-types "~6.20.0" "@types/normalize-package-data@^2.4.0": version "2.4.4" @@ -1613,59 +1610,59 @@ eslint-visitor-keys "^3.4.1" "@ungap/structured-clone@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" - integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + version "1.2.1" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.1.tgz#28fa185f67daaf7b7a1a8c1d445132c5d979f8bd" + integrity sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA== -"@unhead/dom@1.11.11", "@unhead/dom@^1.11.11": - version "1.11.11" - resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.11.11.tgz#74569a280d7b9f013813aef8dee4705cb011e58a" - integrity sha512-4YwziCH5CmjvUzSGdZ4Klj6BqhLSTNZooA9kt47yDxj4Qw9uHqVnXwWWupYsVdIYPNsw1tR2AkHveg82y1Fn3A== +"@unhead/dom@1.11.13", "@unhead/dom@^1.11.11": + version "1.11.13" + resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.11.13.tgz#7dbf4bb233220a25854938d73dbac16d6697e074" + integrity sha512-8Bpo3e50i49/z0TMiskQk3OqUVJpWOO0cnEEydJeFnjsPczDH76H3mWLvB11cv1B/rjLdBiPgui7yetFta5LCw== dependencies: - "@unhead/schema" "1.11.11" - "@unhead/shared" "1.11.11" + "@unhead/schema" "1.11.13" + "@unhead/shared" "1.11.13" -"@unhead/schema@1.11.11": - version "1.11.11" - resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.11.11.tgz#28c5dbe923fce0948badca998934c322f5a1c096" - integrity sha512-xSGsWHPBYcMV/ckQeImbrVu6ddeRnrdDCgXUKv3xIjGBY+ob/96V80lGX8FKWh8GwdFSwhblISObKlDAt5K9ZQ== +"@unhead/schema@1.11.13": + version "1.11.13" + resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.11.13.tgz#475f1b93d761b75beef6ba0e9387b771e0f25ed9" + integrity sha512-fIpQx6GCpl99l4qJXsPqkXxO7suMccuLADbhaMSkeXnVEi4ZIle+l+Ri0z+GHAEpJj17FMaQdO5n9FMSOMUxkw== dependencies: hookable "^5.5.3" zhead "^2.2.4" -"@unhead/shared@1.11.11", "@unhead/shared@^1.11.11": - version "1.11.11" - resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.11.11.tgz#1ec0ec744edce31808256801ce13efd369fa6d62" - integrity sha512-RfdvUskPn90ipO+PmR98jKZ8Lsx1uuzscOenO5xcrMrtWGhlLWaEBIrbvFOvX5PZ/u8/VNMJChTXGDUjEtHmlg== +"@unhead/shared@1.11.13", "@unhead/shared@^1.11.11": + version "1.11.13" + resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.11.13.tgz#0294f2faccbd6ec81418279cbb64d518891e8724" + integrity sha512-EiJ3nsEtf6dvZ6OwVYrrrrCUl4ZE/9GTjpexEMti8EJXweSuL7SifNNXtIFk7UMoM0ULYxb7K/AKQV/odwoZyQ== dependencies: - "@unhead/schema" "1.11.11" + "@unhead/schema" "1.11.13" "@unhead/ssr@^1.11.11": - version "1.11.11" - resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.11.11.tgz#2af7d9a8042082c301976878021b14335d2fbe86" - integrity sha512-NQC8y+4ldwkMr3x8WFwv3+OR6g+Sj7dwL6J/3ST25KnvlwDSub2KGbnm2hF1x8vTpTmXTVxMA3GDRL9MRfLvMg== + version "1.11.13" + resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.11.13.tgz#5e313bac6f6f69d49ec11c08b1510df42ba1028b" + integrity sha512-LjomDIH8vXbnQQ8UVItmJ52BZBOyK12i1Q4W658X/f0VGtm0z3AulGQIvYla0rFcxAynDygfvWSC7xrlqDtRUw== dependencies: - "@unhead/schema" "1.11.11" - "@unhead/shared" "1.11.11" + "@unhead/schema" "1.11.13" + "@unhead/shared" "1.11.13" "@unhead/vue@^1.11.11": - version "1.11.11" - resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.11.11.tgz#226ee5dda055c005ff2569fb5c2cbc91cf76acdc" - integrity sha512-AxsHHauZ+w0m2irwDHqkc3GdNChMLBtolk8CN3IAZM6vTwH0EbPXlFCFcIk4WwkH0opG+R2GlKTThr5H0HLm7g== + version "1.11.13" + resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.11.13.tgz#758321e0c50cc7904fd76b9edcf765a6dd632238" + integrity sha512-s5++LqsNM01rkMQwtc4W19cP1fXC81o4YMyL+Kaqh9X0OPLeWnjONAh0U/Z2CIXBqhJHI+DoNXmDACXyuWPPxg== dependencies: - "@unhead/schema" "1.11.11" - "@unhead/shared" "1.11.11" + "@unhead/schema" "1.11.13" + "@unhead/shared" "1.11.13" defu "^6.1.4" hookable "^5.5.3" - unhead "1.11.11" + unhead "1.11.13" "@vercel/nft@^0.27.5": - version "0.27.6" - resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.27.6.tgz#4fffb7ad4ffdb70698213cfd67596be5e9cdfb6c" - integrity sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg== + version "0.27.7" + resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.27.7.tgz#92e27ef1860f1a1d1838b76098996aae165d9b98" + integrity sha512-FG6H5YkP4bdw9Ll1qhmbxuE8KwW2E/g8fJpM183fWQLeVDGqzeywMIeJ9h2txdWZ03psgWMn6QymTxaDLmdwUg== dependencies: "@mapbox/node-pre-gyp" "^1.0.11" - "@rollup/pluginutils" "^4.0.0" + "@rollup/pluginutils" "^5.1.3" acorn "^8.6.0" acorn-import-attributes "^1.9.5" async-sema "^3.1.1" @@ -1677,26 +1674,26 @@ node-gyp-build "^4.2.2" resolve-from "^5.0.0" -"@vitejs/plugin-vue-jsx@^4.0.1": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.1.0.tgz#16e048d1eebf74c2d431033d9ca82a74bbd73e5d" - integrity sha512-KuRejz7KAFvhXDzOudlaS2IyygAwoAEEMtHAdcRSy/8cA5iKH043Qudcz48zsC0M0vvN5iKwIwNMuWbBYn6/Yg== +"@vitejs/plugin-vue-jsx@^4.1.0": + version "4.1.1" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.1.1.tgz#180eef4d4ca42e9b46a2150caa605c9ae2272be7" + integrity sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA== dependencies: "@babel/core" "^7.26.0" "@babel/plugin-transform-typescript" "^7.25.9" "@vue/babel-plugin-jsx" "^1.2.5" -"@vitejs/plugin-vue@^5.1.4": - version "5.1.5" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.1.5.tgz#ef1d7e19f8cecb0d1301c987dc0bdf8b778e3c82" - integrity sha512-dlnib73G05CDBAUR/YpuZcQQ47fpjihnnNouAAqN62z+oqSsWJ+kh52GRzIxpkgFG3q11eXK7Di7RMmoCwISZA== +"@vitejs/plugin-vue@^5.2.0": + version "5.2.1" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz#d1491f678ee3af899f7ae57d9c21dc52a65c7133" + integrity sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ== "@vue-leaflet/vue-leaflet@^0.8.4": version "0.8.4" resolved "https://registry.yarnpkg.com/@vue-leaflet/vue-leaflet/-/vue-leaflet-0.8.4.tgz#8a26606fd1c28e1ca8717aebd4c5c147057c6b29" integrity sha512-FyD75jMKzBQCW4TrzRMrIBa8OwaUXaSeaDWJvp7FIjpZzk8niHBfpP+QirA/BT9536FJXviRkmwac3Z7YOQHKQ== -"@vue-macros/common@^1.12.2": +"@vue-macros/common@^1.15.0": version "1.15.0" resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.15.0.tgz#42a97458698beca552a08c89e9680c3b6c5bb71b" integrity sha512-yg5VqW7+HRfJGimdKvFYzx8zorHUYo0hzPwuraoC1DWa7HHazbTMoVsHDvk3JHa1SGfSL87fRnzmlvgjEHhszA== @@ -1740,47 +1737,47 @@ "@babel/parser" "^7.25.6" "@vue/compiler-sfc" "^3.5.3" -"@vue/compiler-core@3.5.12": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.12.tgz#bd70b7dabd12b0b6f31bc53418ba3da77994c437" - integrity sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw== +"@vue/compiler-core@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz#b0ae6c4347f60c03e849a05d34e5bf747c9bda05" + integrity sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q== dependencies: "@babel/parser" "^7.25.3" - "@vue/shared" "3.5.12" + "@vue/shared" "3.5.13" entities "^4.5.0" estree-walker "^2.0.2" source-map-js "^1.2.0" -"@vue/compiler-dom@3.5.12", "@vue/compiler-dom@^3.3.4": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.12.tgz#456d631d11102535b7ee6fd954cf2c93158d0354" - integrity sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg== +"@vue/compiler-dom@3.5.13", "@vue/compiler-dom@^3.3.4": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz#bb1b8758dbc542b3658dda973b98a1c9311a8a58" + integrity sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA== dependencies: - "@vue/compiler-core" "3.5.12" - "@vue/shared" "3.5.12" + "@vue/compiler-core" "3.5.13" + "@vue/shared" "3.5.13" -"@vue/compiler-sfc@3.5.12", "@vue/compiler-sfc@^3.5.12", "@vue/compiler-sfc@^3.5.3": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.12.tgz#6688120d905fcf22f7e44d3cb90f8dabc4dd3cc8" - integrity sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw== +"@vue/compiler-sfc@3.5.13", "@vue/compiler-sfc@^3.5.12", "@vue/compiler-sfc@^3.5.3": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz#461f8bd343b5c06fac4189c4fef8af32dea82b46" + integrity sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ== dependencies: "@babel/parser" "^7.25.3" - "@vue/compiler-core" "3.5.12" - "@vue/compiler-dom" "3.5.12" - "@vue/compiler-ssr" "3.5.12" - "@vue/shared" "3.5.12" + "@vue/compiler-core" "3.5.13" + "@vue/compiler-dom" "3.5.13" + "@vue/compiler-ssr" "3.5.13" + "@vue/shared" "3.5.13" estree-walker "^2.0.2" magic-string "^0.30.11" - postcss "^8.4.47" + postcss "^8.4.48" source-map-js "^1.2.0" -"@vue/compiler-ssr@3.5.12": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.12.tgz#5f1a3fbd5c44b79a6dbe88729f7801d9c9218bde" - integrity sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA== +"@vue/compiler-ssr@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz#e771adcca6d3d000f91a4277c972a996d07f43ba" + integrity sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA== dependencies: - "@vue/compiler-dom" "3.5.12" - "@vue/shared" "3.5.12" + "@vue/compiler-dom" "3.5.13" + "@vue/shared" "3.5.13" "@vue/devtools-api@^6.6.3", "@vue/devtools-api@^6.6.4": version "6.6.4" @@ -1788,43 +1785,43 @@ integrity sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g== "@vue/devtools-api@^7.5.2": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-7.6.4.tgz#024bf0ecf543395844f4d97cff0a84f8f759b29d" - integrity sha512-5AaJ5ELBIuevmFMZYYLuOO9HUuY/6OlkOELHE7oeDhy4XD/hSODIzktlsvBOsn+bto3aD0psj36LGzwVu5Ip8w== + version "7.6.7" + resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-7.6.7.tgz#2e5a8ae02df8a6c5518d15192e5964cbd40a2aa1" + integrity sha512-PV4I31WaV2rfA8RGauM+69uFEzWkqtP561RiLU2wK+Ce85u3zyKW3aoESlLCNzkc4y0JaJyskH6zAE3xWOP8+Q== dependencies: - "@vue/devtools-kit" "^7.6.4" + "@vue/devtools-kit" "^7.6.7" -"@vue/devtools-core@7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.4.4.tgz#20fdef8e846fce25ed98008011942505cf23bcd5" - integrity sha512-DLxgA3DfeADkRzhAfm3G2Rw/cWxub64SdP5b+s5dwL30+whOGj+QNhmyFpwZ8ZTrHDFRIPj0RqNzJ8IRR1pz7w== +"@vue/devtools-core@7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.6.4.tgz#592549458a3281728643f94cec42242d1147b158" + integrity sha512-blSwGVYpb7b5TALMjjoBiAl5imuBF7WEOAtaJaBMNikR8SQkm6mkUt4YlIKh9874/qoimwmpDOm+GHBZ4Y5m+g== dependencies: - "@vue/devtools-kit" "^7.4.4" - "@vue/devtools-shared" "^7.4.4" + "@vue/devtools-kit" "^7.6.4" + "@vue/devtools-shared" "^7.6.4" mitt "^3.0.1" nanoid "^3.3.4" pathe "^1.1.2" vite-hot-client "^0.2.3" -"@vue/devtools-kit@7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.4.4.tgz#f05e775e6e80636362a25c955c7c1291f990e456" - integrity sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw== +"@vue/devtools-kit@7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.6.4.tgz#2a74750d5604b6b3c2fe3388a454c9eac2c6c1f4" + integrity sha512-Zs86qIXXM9icU0PiGY09PQCle4TI750IPLmAJzW5Kf9n9t5HzSYf6Rz6fyzSwmfMPiR51SUKJh9sXVZu78h2QA== dependencies: - "@vue/devtools-shared" "^7.4.4" - birpc "^0.2.17" + "@vue/devtools-shared" "^7.6.4" + birpc "^0.2.19" hookable "^5.5.3" mitt "^3.0.1" perfect-debounce "^1.0.0" speakingurl "^14.0.1" superjson "^2.2.1" -"@vue/devtools-kit@^7.4.4", "@vue/devtools-kit@^7.6.4": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.6.4.tgz#2a74750d5604b6b3c2fe3388a454c9eac2c6c1f4" - integrity sha512-Zs86qIXXM9icU0PiGY09PQCle4TI750IPLmAJzW5Kf9n9t5HzSYf6Rz6fyzSwmfMPiR51SUKJh9sXVZu78h2QA== +"@vue/devtools-kit@^7.6.4", "@vue/devtools-kit@^7.6.7": + version "7.6.7" + resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.6.7.tgz#a6192526e6a5d292235eea0dcf205af924ce81ee" + integrity sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw== dependencies: - "@vue/devtools-shared" "^7.6.4" + "@vue/devtools-shared" "^7.6.7" birpc "^0.2.19" hookable "^5.5.3" mitt "^3.0.1" @@ -1832,50 +1829,50 @@ speakingurl "^14.0.1" superjson "^2.2.1" -"@vue/devtools-shared@^7.4.4", "@vue/devtools-shared@^7.6.4": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.6.4.tgz#110044c88bafee3b2daa992fd90730546dec7b11" - integrity sha512-nD6CUvBEel+y7zpyorjiUocy0nh77DThZJ0k1GRnJeOmY3ATq2fWijEp7wk37gb023Cb0R396uYh5qMSBQ5WFg== +"@vue/devtools-shared@^7.6.4", "@vue/devtools-shared@^7.6.7": + version "7.6.7" + resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.6.7.tgz#71a85b1c1484ffe1bc68240cfec5e0878a0f7b6b" + integrity sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw== dependencies: rfdc "^1.4.1" -"@vue/reactivity@3.5.12": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.12.tgz#a2815d91842ed7b9e7e7936c851923caf6b6e603" - integrity sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg== +"@vue/reactivity@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.13.tgz#b41ff2bb865e093899a22219f5b25f97b6fe155f" + integrity sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg== dependencies: - "@vue/shared" "3.5.12" + "@vue/shared" "3.5.13" -"@vue/runtime-core@3.5.12": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.12.tgz#849207f203d0fd82971f19574d30dbe7134c78c7" - integrity sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw== +"@vue/runtime-core@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz#1fafa4bf0b97af0ebdd9dbfe98cd630da363a455" + integrity sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw== dependencies: - "@vue/reactivity" "3.5.12" - "@vue/shared" "3.5.12" + "@vue/reactivity" "3.5.13" + "@vue/shared" "3.5.13" -"@vue/runtime-dom@3.5.12": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.12.tgz#6d4de3df49a90a460b311b1100baa5e2d0d1c8c9" - integrity sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA== +"@vue/runtime-dom@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz#610fc795de9246300e8ae8865930d534e1246215" + integrity sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog== dependencies: - "@vue/reactivity" "3.5.12" - "@vue/runtime-core" "3.5.12" - "@vue/shared" "3.5.12" + "@vue/reactivity" "3.5.13" + "@vue/runtime-core" "3.5.13" + "@vue/shared" "3.5.13" csstype "^3.1.3" -"@vue/server-renderer@3.5.12": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.12.tgz#79c6bc3860e4e4ef80d85653c5d03fd94b26574e" - integrity sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg== +"@vue/server-renderer@3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz#429ead62ee51de789646c22efe908e489aad46f7" + integrity sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA== dependencies: - "@vue/compiler-ssr" "3.5.12" - "@vue/shared" "3.5.12" + "@vue/compiler-ssr" "3.5.13" + "@vue/shared" "3.5.13" -"@vue/shared@3.5.12", "@vue/shared@^3.5.12": - version "3.5.12" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.12.tgz#f9e45b7f63f2c3f40d84237b1194b7f67de192e3" - integrity sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg== +"@vue/shared@3.5.13", "@vue/shared@^3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f" + integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== "@vuetify/loader-shared@^2.0.3": version "2.0.3" @@ -1884,36 +1881,36 @@ dependencies: upath "^2.0.1" -"@vueuse/core@11.2.0": - version "11.2.0" - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-11.2.0.tgz#3fc6c0963051bb154dc4c08061889405e3fc745d" - integrity sha512-JIUwRcOqOWzcdu1dGlfW04kaJhW3EXnnjJJfLTtddJanymTL7lF1C0+dVVZ/siLfc73mWn+cGP1PE1PKPruRSA== +"@vueuse/core@11.3.0": + version "11.3.0" + resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-11.3.0.tgz#bb0bd1f0edd5435d20694dbe51091cf548653a4d" + integrity sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA== dependencies: "@types/web-bluetooth" "^0.0.20" - "@vueuse/metadata" "11.2.0" - "@vueuse/shared" "11.2.0" + "@vueuse/metadata" "11.3.0" + "@vueuse/shared" "11.3.0" vue-demi ">=0.14.10" -"@vueuse/metadata@11.2.0": - version "11.2.0" - resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-11.2.0.tgz#fd02cbbc7d08cb4592fceea0486559b89ae38643" - integrity sha512-L0ZmtRmNx+ZW95DmrgD6vn484gSpVeRbgpWevFKXwqqQxW9hnSi2Ppuh2BzMjnbv4aJRiIw8tQatXT9uOB23dQ== +"@vueuse/metadata@11.3.0": + version "11.3.0" + resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-11.3.0.tgz#be7ac12e3016c0353a3667b372a73aeeee59194e" + integrity sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g== "@vueuse/nuxt@^11.1.0": - version "11.2.0" - resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-11.2.0.tgz#f0d2441004efccf5e80e3e16c196b6aad25966eb" - integrity sha512-4Mp1SXpXy8KRKY7lJqN4AuiMkun9IUVGt02t2SBk1hf/RVe4U6AIR2ukmHws0uYvjIGIhlGNv4o6ayTK/7ELWQ== - dependencies: - "@nuxt/kit" "^3.13.2" - "@vueuse/core" "11.2.0" - "@vueuse/metadata" "11.2.0" - local-pkg "^0.5.0" + version "11.3.0" + resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-11.3.0.tgz#832ed704b3e330939c9be2c6dcbaa4c4aac19c48" + integrity sha512-FxtRTgFmsoASamR3lOftv/r11o1BojF9zir8obbTnKamVZdlQ5rgJ0hHgVbrgA6dlMuEx/PzwqAmiKNFdU4oCQ== + dependencies: + "@nuxt/kit" "^3.14.1592" + "@vueuse/core" "11.3.0" + "@vueuse/metadata" "11.3.0" + local-pkg "^0.5.1" vue-demi ">=0.14.10" -"@vueuse/shared@11.2.0": - version "11.2.0" - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-11.2.0.tgz#7fb2f3cade6b6c00ef97e613f187ee9bdcfb9a3a" - integrity sha512-VxFjie0EanOudYSgMErxXfq6fo8vhr5ICI+BuE3I9FnX7ePllEsVrRQ7O6Q1TLgApeLuPKcHQxAXpP+KnlrJsg== +"@vueuse/shared@11.3.0": + version "11.3.0" + resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-11.3.0.tgz#086a4f35bf5bcec5655a03b80eae582605a4b21d" + integrity sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA== dependencies: vue-demi ">=0.14.10" @@ -1947,7 +1944,7 @@ acorn-jsx@^5.3.2: resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn@8.14.0, acorn@^8.12.1, acorn@^8.14.0, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: +acorn@8.14.0, acorn@^8.14.0, acorn@^8.6.0, acorn@^8.8.2, acorn@^8.9.0: version "8.14.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== @@ -1959,12 +1956,10 @@ agent-base@6: dependencies: debug "4" -agent-base@^7.0.2: - version "7.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" - integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== - dependencies: - debug "^4.3.4" +agent-base@^7.1.2: + version "7.1.3" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.3.tgz#29435eb821bc4194633a5b89e5bc4703bafc25a1" + integrity sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw== ajv@^6.12.4: version "6.12.6" @@ -2144,9 +2139,9 @@ arraybuffer.prototype.slice@^1.0.3: is-shared-array-buffer "^1.0.2" ast-kit@^1.0.1, ast-kit@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-1.3.1.tgz#ef2d490224f46224c4bd8550e5add03f57202463" - integrity sha512-3bIRV4s/cNAee2rKjuvYdoG+0CMqtOIgCvWrJL6zG8R0fDyMwYzStspX5JqXPbdMzM+qxHZ6g2rMHKhr3HkPlQ== + version "1.3.2" + resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-1.3.2.tgz#181f90e4f95e02cb013d3ac516230deef553cd2e" + integrity sha512-gdvX700WVC6sHCJQ7bJGfDvtuKAh6Sa6weIZROxfzUZKP7BjvB8y0SMlM/o4omSQ3L60PQSJROBJsb0vEViVnA== dependencies: "@babel/parser" "^7.26.2" pathe "^1.1.2" @@ -2232,7 +2227,7 @@ bindings@^1.4.0: dependencies: file-uri-to-path "1.0.0" -birpc@^0.2.17, birpc@^0.2.19: +birpc@^0.2.19: version "0.2.19" resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.19.tgz#cdd183a4a70ba103127d49765b4a71349da5a0ca" integrity sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ== @@ -2342,16 +2337,23 @@ cache-content-type@^1.0.0: mime-types "^2.1.18" ylru "^1.2.0" -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== +call-bind-apply-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.0.tgz#33127b42608972f76812a501d69db5d8ce404979" + integrity sha512-CCKAP2tkPau7D3GE8+V8R6sQubA9R5foIzGp+85EXCVSCivuxBNAWqcpn72PKYiIcqoViv/kcUDpaEIMBVi1lQ== dependencies: - es-define-property "^1.0.0" es-errors "^1.3.0" function-bind "^1.1.2" + +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7, call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" get-intrinsic "^1.2.4" - set-function-length "^1.2.1" + set-function-length "^1.2.2" callsites@^3.0.0: version "3.1.0" @@ -2374,9 +2376,9 @@ caniuse-api@^3.0.0: lodash.uniq "^4.5.0" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: - version "1.0.30001680" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" - integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== + version "1.0.30001687" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz#d0ac634d043648498eedf7a3932836beba90ebae" + integrity sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ== chalk@^4.0.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" @@ -2396,7 +2398,7 @@ change-case@^5.4.4: resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.4.4.tgz#0d52b507d8fb8f204343432381d1a6d7bff97a02" integrity sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w== -chokidar@^3.5.1, chokidar@^3.5.3, chokidar@^3.6.0: +chokidar@^3.5.1, chokidar@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== @@ -2429,9 +2431,9 @@ ci-info@^3.4.0: integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== ci-info@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.0.0.tgz#65466f8b280fc019b9f50a5388115d17a63a44f2" - integrity sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg== + version "4.1.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.1.0.tgz#92319d2fa29d2620180ea5afed31f589bc98cf83" + integrity sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A== citty@^0.1.2, citty@^0.1.5, citty@^0.1.6: version "0.1.6" @@ -2638,15 +2640,15 @@ croner@^9.0.0: resolved "https://registry.yarnpkg.com/croner/-/croner-9.0.0.tgz#1db62160142cf32eb22622e9ae27ba29156883f7" integrity sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA== -cronstrue@^2.50.0: - version "2.51.0" - resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.51.0.tgz#0d37c506eab088ab5d3b68589203b79d78df488e" - integrity sha512-7EG9VaZZ5SRbZ7m25dmP6xaS0qe9ay6wywMskFOU/lMDKa+3gZr2oeT5OUfXwRP/Bcj8wxdYJ65AHU70CI3tsw== +cronstrue@^2.52.0: + version "2.52.0" + resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.52.0.tgz#00af1a8dcf76a1dece149e4416db823105b28cdb" + integrity sha512-NKgHbWkSZXJUcaBHSsyzC8eegD6bBd4O0oCI6XMIJ+y4Bq3v4w7sY3wfWoKPuVlq9pQHRB6od0lmKpIqi8TlKA== cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.5.tgz#910aac880ff5243da96b728bc6521a5f6c2f2f82" - integrity sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug== + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -2806,10 +2808,10 @@ debug@2.6.9: dependencies: ms "2.0.0" -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6, debug@^4.3.7: - version "4.3.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.7: + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: ms "^2.1.3" @@ -3000,9 +3002,18 @@ dot-prop@^9.0.0: type-fest "^4.18.2" dotenv@^16.4.5: - version "16.4.5" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" - integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== + version "16.4.7" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz#0e20c5b82950140aa99be360a8a5f52335f53c26" + integrity sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ== + +dunder-proto@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.0.tgz#c2fce098b3c8f8899554905f4377b6d85dabaa80" + integrity sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-errors "^1.3.0" + gopd "^1.2.0" duplexer@^0.1.2: version "0.1.2" @@ -3020,9 +3031,9 @@ ee-first@1.1.1: integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== electron-to-chromium@^1.5.41: - version "1.5.56" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.56.tgz#3213f369efc3a41091c3b2c05bc0f406108ac1df" - integrity sha512-7lXb9dAvimCFdvUMTyucD4mnIndt/xhRKFAlky0CyFogdnNmdPQNoHI23msF/2V4mpTxMzgMdjK4+YRlFlRQZw== + version "1.5.71" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.71.tgz#d8b5dba1e55b320f2f4e9b1ca80738f53fcfec2b" + integrity sha512-dB68l59BI75W1BUGVTAEJy45CEVuEGy9qPVVQ8pnHyHMn36PLPPoE1mjLH+lo9rKulO3HC2OhbACI/8tCqJBcA== emoji-regex@^8.0.0: version "8.0.0" @@ -3074,10 +3085,10 @@ errx@^0.1.0: resolved "https://registry.yarnpkg.com/errx/-/errx-0.1.0.tgz#4881e411d90a3b1e1620a07604f50081dd59f3aa" integrity sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q== -es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: - version "1.23.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" - integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2, es-abstract@^1.23.5: + version "1.23.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.5.tgz#f4599a4946d57ed467515ed10e4f157289cd52fb" + integrity sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ== dependencies: array-buffer-byte-length "^1.0.1" arraybuffer.prototype.slice "^1.0.3" @@ -3094,7 +3105,7 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23 function.prototype.name "^1.1.6" get-intrinsic "^1.2.4" get-symbol-description "^1.0.2" - globalthis "^1.0.3" + globalthis "^1.0.4" gopd "^1.0.1" has-property-descriptors "^1.0.2" has-proto "^1.0.3" @@ -3110,10 +3121,10 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23 is-string "^1.0.7" is-typed-array "^1.1.13" is-weakref "^1.0.2" - object-inspect "^1.13.1" + object-inspect "^1.13.3" object-keys "^1.1.1" object.assign "^4.1.5" - regexp.prototype.flags "^1.5.2" + regexp.prototype.flags "^1.5.3" safe-array-concat "^1.1.2" safe-regex-test "^1.0.3" string.prototype.trim "^1.2.9" @@ -3126,18 +3137,21 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23 unbox-primitive "^1.0.2" which-typed-array "^1.1.15" -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== +es-module-lexer@^1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78" + integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== + es-object-atoms@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" @@ -3162,13 +3176,13 @@ es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: hasown "^2.0.0" es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18" + integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" + is-callable "^1.2.7" + is-date-object "^1.0.5" + is-symbol "^1.0.4" esbuild@^0.19.2: version "0.19.12" @@ -3298,20 +3312,20 @@ eslint-import-resolver-node@^0.3.9: resolve "^1.22.4" eslint-import-resolver-typescript@^3.6.0: - version "3.6.3" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.3.tgz#bb8e388f6afc0f940ce5d2c5fd4a3d147f038d9e" - integrity sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA== + version "3.7.0" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.7.0.tgz#e69925936a771a9cb2de418ccebc4cdf6c0818aa" + integrity sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow== dependencies: "@nolyfill/is-core-module" "1.0.39" - debug "^4.3.5" + debug "^4.3.7" enhanced-resolve "^5.15.0" - eslint-module-utils "^2.8.1" fast-glob "^3.3.2" get-tsconfig "^4.7.5" is-bun-module "^1.0.2" is-glob "^4.0.3" + stable-hash "^0.0.4" -eslint-module-utils@^2.12.0, eslint-module-utils@^2.8.1: +eslint-module-utils@^2.12.0: version "2.12.0" resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz#fe4cfb948d61f49203d7b08871982b65b9af0b0b" integrity sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg== @@ -3420,9 +3434,9 @@ eslint-plugin-unicorn@^44.0.2: strip-indent "^3.0.0" eslint-plugin-vue@^9.17.0, eslint-plugin-vue@^9.4.0, eslint-plugin-vue@^9.7.0: - version "9.31.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.31.0.tgz#5da53c2826f8efd8a62835aad596826053b1085e" - integrity sha512-aYMUCgivhz1o4tLkRHj5oq9YgYPM4/EJc0M7TAKRLCUA5OYxRLAhYEVD2nLtTwLyixEFI+/QXSvKU9ESZFgqjQ== + version "9.32.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.32.0.tgz#2b558e827886b567dfaa156cc1cad0f596461fab" + integrity sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug== dependencies: "@eslint-community/eslint-utils" "^4.4.0" globals "^13.24.0" @@ -3542,7 +3556,7 @@ estraverse@^5.1.0, estraverse@^5.2.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== -estree-walker@2.0.2, estree-walker@^2.0.1, estree-walker@^2.0.2: +estree-walker@2.0.2, estree-walker@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== @@ -3706,10 +3720,10 @@ flat-cache@^3.0.4: keyv "^4.5.3" rimraf "^3.0.2" -flatted@^3.2.9, flatted@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" - integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== +flatted@^3.2.9, flatted@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27" + integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA== for-each@^0.3.3: version "0.3.3" @@ -3817,16 +3831,19 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== +get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.5" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.5.tgz#dfe7dd1b30761b464fe51bf4bb00ac7c37b681e7" + integrity sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg== dependencies: + call-bind-apply-helpers "^1.0.0" + dunder-proto "^1.0.0" + es-define-property "^1.0.1" es-errors "^1.3.0" function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" get-port-please@^3.1.2: version "3.1.2" @@ -3961,7 +3978,7 @@ globals@^13.19.0, globals@^13.24.0: dependencies: type-fest "^0.20.2" -globalthis@^1.0.3: +globalthis@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== @@ -4004,12 +4021,10 @@ globby@^14.0.2: slash "^5.1.0" unicorn-magic "^0.1.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" +gopd@^1.0.1, gopd@^1.1.0, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" @@ -4044,7 +4059,7 @@ h3@^1.12.0, h3@^1.13.0: uncrypto "^0.1.3" unenv "^1.10.0" -has-bigints@^1.0.1, has-bigints@^1.0.2: +has-bigints@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== @@ -4061,15 +4076,17 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== +has-proto@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5" + integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== + dependencies: + dunder-proto "^1.0.0" -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" @@ -4164,11 +4181,11 @@ https-proxy-agent@^5.0.0: debug "4" https-proxy-agent@^7.0.4: - version "7.0.5" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" - integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== + version "7.0.6" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" + integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== dependencies: - agent-base "^7.0.2" + agent-base "^7.1.2" debug "4" httpxy@^0.1.5: @@ -4206,10 +4223,10 @@ image-meta@^0.2.1: resolved "https://registry.yarnpkg.com/image-meta/-/image-meta-0.2.1.tgz#3a9eb9f0bfd2f767ca2b0720623c2e03742aa29f" integrity sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw== -immutable@^4.0.0: - version "4.3.7" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.7.tgz#c70145fc90d89fb02021e65c84eb0226e4e5a381" - integrity sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw== +immutable@^5.0.2: + version "5.0.3" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-5.0.3.tgz#aa037e2313ea7b5d400cd9298fa14e404c933db1" + integrity sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw== import-fresh@^3.2.1: version "3.3.0" @@ -4315,12 +4332,19 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + +is-bigint@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672" + integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ== dependencies: - has-bigints "^1.0.1" + has-bigints "^1.0.2" is-binary-path@~2.1.0: version "2.1.0" @@ -4329,13 +4353,13 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== +is-boolean-object@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.0.tgz#9743641e80a62c094b5941c5bb791d66a88e497a" + integrity sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + has-tostringtag "^1.0.2" is-builtin-module@^3.2.0: version "3.2.1" @@ -4345,13 +4369,13 @@ is-builtin-module@^3.2.0: builtin-modules "^3.3.0" is-bun-module@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-1.2.1.tgz#495e706f42e29f086fd5fe1ac3c51f106062b9fc" - integrity sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q== + version "1.3.0" + resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-1.3.0.tgz#ea4d24fdebfcecc98e81bcbcb506827fee288760" + integrity sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA== dependencies: semver "^7.6.3" -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: +is-callable@^1.1.3, is-callable@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== @@ -4370,7 +4394,7 @@ is-data-view@^1.0.1: dependencies: is-typed-array "^1.1.13" -is-date-object@^1.0.1: +is-date-object@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== @@ -4392,12 +4416,19 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-finalizationregistry@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz#d74a7d0c5f3578e34a20729e69202e578d495dc2" + integrity sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA== + dependencies: + call-bind "^1.0.7" + is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-generator-function@^1.0.7: +is-generator-function@^1.0.10, is-generator-function@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== @@ -4426,6 +4457,11 @@ is-installed-globally@^1.0.0: global-directory "^4.0.1" is-path-inside "^4.0.0" +is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + is-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" @@ -4436,12 +4472,13 @@ is-negative-zero@^2.0.3: resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== +is-number-object@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.0.tgz#5a867e9ecc3d294dda740d9f127835857af7eb05" + integrity sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw== dependencies: - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + has-tostringtag "^1.0.2" is-number@^7.0.0: version "7.0.0" @@ -4466,12 +4503,19 @@ is-reference@1.2.1: "@types/estree" "*" is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.0.tgz#41b9d266e7eb7451312c64efc37e8a7d453077cf" + integrity sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + gopd "^1.1.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: version "1.0.3" @@ -4497,19 +4541,22 @@ is-stream@^3.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== +is-string@^1.0.7, is-string@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.0.tgz#8cb83c5d57311bf8058bc6c8db294711641da45d" + integrity sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g== dependencies: - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + has-tostringtag "^1.0.2" -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== +is-symbol@^1.0.4, is-symbol@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.0.tgz#ae993830a56d4781886d39f9f0a46b3e89b7b60b" + integrity sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A== dependencies: - has-symbols "^1.0.2" + call-bind "^1.0.7" + has-symbols "^1.0.3" + safe-regex-test "^1.0.3" is-typed-array@^1.1.13: version "1.1.13" @@ -4518,6 +4565,11 @@ is-typed-array@^1.1.13: dependencies: which-typed-array "^1.1.14" +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + is-weakref@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" @@ -4525,6 +4577,14 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" +is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + is-what@^4.1.8: version "4.1.16" resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.16.tgz#1ad860a19da8b4895ad5495da3182ce2acdd7a6f" @@ -4575,15 +4635,15 @@ jackspeak@^3.1.2: optionalDependencies: "@pkgjs/parseargs" "^0.11.0" -jiti@^1.19.3, jiti@^1.21.0, jiti@^1.21.6: +jiti@^1.19.3, jiti@^1.21.6: version "1.21.6" resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== jiti@^2.1.2, jiti@^2.3.0, jiti@^2.3.1, jiti@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.4.0.tgz#393d595fb6031a11d11171b5e4fc0b989ba3e053" - integrity sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g== + version "2.4.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.4.1.tgz#4de9766ccbfa941d9b6390d2b159a4b295a52e6b" + integrity sha512-yPBThwecp1wS9DmoA4x4KR2h3QoslacnDR8ypuFM962kI4/456Iy1oHx2RAgh4jfZNdn0bctsdadceiBUgpU1g== js-levenshtein@^1.1.6: version "1.1.6" @@ -4595,10 +4655,10 @@ js-tokens@^4.0.0: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-tokens@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-9.0.0.tgz#0f893996d6f3ed46df7f0a3b12a03f5fd84223c1" - integrity sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ== +js-tokens@^9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-9.0.1.tgz#2ec43964658435296f6761b34e10671c2d9527f4" + integrity sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ== js-yaml@^4.1.0: version "4.1.0" @@ -4799,15 +4859,10 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -lilconfig@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" - integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== - -lilconfig@^3.0.0, lilconfig@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" - integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== +lilconfig@^3.0.0, lilconfig@^3.1.2, lilconfig@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.3.tgz#a1bcfd6257f9585bf5ae14ceeebb7b559025e4c4" + integrity sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw== lines-and-columns@^1.1.6: version "1.2.4" @@ -4843,13 +4898,13 @@ local-pkg@^0.4.2: resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== -local-pkg@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.0.tgz#093d25a346bae59a99f80e75f6e9d36d7e8c925c" - integrity sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg== +local-pkg@^0.5.0, local-pkg@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.1.tgz#69658638d2a95287534d4c2fff757980100dbb6d" + integrity sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ== dependencies: - mlly "^1.4.2" - pkg-types "^1.0.3" + mlly "^1.7.3" + pkg-types "^1.2.1" locate-path@^5.0.0: version "5.0.0" @@ -4913,16 +4968,16 @@ lru-cache@^5.1.1: yallist "^3.0.2" magic-string-ast@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/magic-string-ast/-/magic-string-ast-0.6.2.tgz#180679c584bdea9de1dbb6c755fd3e4bf1b0b509" - integrity sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA== + version "0.6.3" + resolved "https://registry.yarnpkg.com/magic-string-ast/-/magic-string-ast-0.6.3.tgz#99684592d00b382fafcc47d290dd79fa4a688925" + integrity sha512-C9sgUzVZtUtzCBoMdYtwrIRQ4IucGRFGgdhkjL7PXsVfPYmTuWtewqzk7dlipaCMWH/gOYehW9rgMoa4Oebtpw== dependencies: - magic-string "^0.30.10" + magic-string "^0.30.13" -magic-string@^0.30.0, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.12, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.8: - version "0.30.12" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.12.tgz#9eb11c9d072b9bcb4940a5b2c2e1a217e4ee1a60" - integrity sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw== +magic-string@^0.30.0, magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.12, magic-string@^0.30.13, magic-string@^0.30.14, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.8: + version "0.30.14" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.14.tgz#e9bb29870b81cfc1ec3cc656552f5a7fcbf19077" + integrity sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw== dependencies: "@jridgewell/sourcemap-codec" "^1.5.0" @@ -5111,7 +5166,7 @@ mkdist@^1.3.0: semver "^7.6.3" tinyglobby "^0.2.9" -mlly@^1.3.0, mlly@^1.4.0, mlly@^1.4.2, mlly@^1.6.1, mlly@^1.7.1, mlly@^1.7.2: +mlly@^1.3.0, mlly@^1.4.0, mlly@^1.4.2, mlly@^1.6.1, mlly@^1.7.1, mlly@^1.7.2, mlly@^1.7.3: version "1.7.3" resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.3.tgz#d86c0fcd8ad8e16395eb764a5f4b831590cee48c" integrity sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A== @@ -5151,14 +5206,14 @@ mz@^2.7.0: thenify-all "^1.0.0" nanoid@^3.3.4, nanoid@^3.3.7: - version "3.3.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" - integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== nanoid@^5.0.7: - version "5.0.8" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.8.tgz#7610003f6b3b761b5c244bb342c112c5312512bf" - integrity sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ== + version "5.0.9" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.9.tgz#977dcbaac055430ce7b1e19cf0130cea91a20e50" + integrity sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q== nanotar@^0.1.1: version "0.1.1" @@ -5180,7 +5235,7 @@ negotiator@0.6.3: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== -nitropack@^2.10.3: +nitropack@^2.10.4: version "2.10.4" resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.10.4.tgz#f7eb092bf7296257bf2426c45134fba61373e026" integrity sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g== @@ -5277,9 +5332,9 @@ node-forge@^1.3.1: integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== node-gyp-build@^4.2.2: - version "4.8.2" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.2.tgz#4f802b71c1ab2ca16af830e6c1ea7dd1ad9496fa" - integrity sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw== + version "4.8.4" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.4.tgz#8a70ee85464ae52327772a90d66c6077a900cfc8" + integrity sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ== node-releases@^2.0.18: version "2.0.18" @@ -5345,9 +5400,9 @@ nth-check@^2.0.1, nth-check@^2.1.1: boolbase "^1.0.0" nuxi@^3.15.0: - version "3.15.0" - resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.15.0.tgz#ed54923ca46727c6e7df10495143db340d9791c9" - integrity sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg== + version "3.16.0" + resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.16.0.tgz#6773ee9b3f128ed8ec46596a84bf64f2d7fc4889" + integrity sha512-t9m4zTq44R0/icuzQXJHEyPRM3YbgTPMpytyb6YW2LOL/3mwZ3Bmte1FIlCoigzDvxBJRbcchZGc689+Syyu8w== nuxt-api-party@^2.0.10: version "2.1.0" @@ -5365,21 +5420,21 @@ nuxt-api-party@^2.0.10: ufo "^1.5.4" nuxt@^3.13.2: - version "3.14.159" - resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.14.159.tgz#3c1c70ded8bd302457c86f3250af3ccc3389ad03" - integrity sha512-1xz6AfFkun+byUIkBNX3/CTOTShPRFJe0y9HqWZX2aV9xdoz5ByeaHZfktokhOOSbvabjDyzkTbbHh3V673qHw== + version "3.14.1592" + resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.14.1592.tgz#0f94132b7e0ffe9087b37392f295e2c7d5d05ee3" + integrity sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g== dependencies: "@nuxt/devalue" "^2.0.2" "@nuxt/devtools" "^1.6.0" - "@nuxt/kit" "3.14.159" - "@nuxt/schema" "3.14.159" + "@nuxt/kit" "3.14.1592" + "@nuxt/schema" "3.14.1592" "@nuxt/telemetry" "^2.6.0" - "@nuxt/vite-builder" "3.14.159" + "@nuxt/vite-builder" "3.14.1592" "@unhead/dom" "^1.11.11" "@unhead/shared" "^1.11.11" "@unhead/ssr" "^1.11.11" "@unhead/vue" "^1.11.11" - "@vue/shared" "^3.5.12" + "@vue/shared" "^3.5.13" acorn "8.14.0" c12 "^2.0.1" chokidar "^4.0.1" @@ -5401,10 +5456,10 @@ nuxt@^3.13.2: jiti "^2.4.0" klona "^2.0.6" knitwork "^1.1.0" - magic-string "^0.30.12" - mlly "^1.7.2" + magic-string "^0.30.13" + mlly "^1.7.3" nanotar "^0.1.1" - nitropack "^2.10.3" + nitropack "^2.10.4" nuxi "^3.15.0" nypm "^0.3.12" ofetch "^1.4.1" @@ -5415,7 +5470,7 @@ nuxt@^3.13.2: radix3 "^1.1.2" scule "^1.3.0" semver "^7.6.3" - std-env "^3.7.0" + std-env "^3.8.0" strip-literal "^2.1.0" tinyglobby "0.2.10" ufo "^1.5.4" @@ -5424,17 +5479,17 @@ nuxt@^3.13.2: unctx "^2.3.1" unenv "^1.10.0" unhead "^1.11.11" - unimport "^3.13.1" - unplugin "^1.15.0" + unimport "^3.13.2" + unplugin "^1.16.0" unplugin-vue-router "^0.10.8" unstorage "^1.13.1" untyped "^1.5.1" - vue "^3.5.12" + vue "^3.5.13" vue-bundle-renderer "^2.1.1" vue-devtools-stub "^0.1.0" vue-router "^4.4.5" -nypm@^0.3.11, nypm@^0.3.12, nypm@^0.3.8: +nypm@^0.3.12, nypm@^0.3.8: version "0.3.12" resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.12.tgz#37541bec0af3a37d3acd81d6662c6666e650b22e" integrity sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA== @@ -5446,6 +5501,18 @@ nypm@^0.3.11, nypm@^0.3.12, nypm@^0.3.8: pkg-types "^1.2.0" ufo "^1.5.4" +nypm@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.4.1.tgz#b7059afbddd20373a5d64ba1c05d569607387a67" + integrity sha512-1b9mihliBh8UCcKtcGRu//G50iHpjxIQVUqkdhPT/SDVE7KdJKoHXLS0heuYTQCx95dFqiyUbXZB9r8ikn+93g== + dependencies: + citty "^0.1.6" + consola "^3.2.3" + pathe "^1.1.2" + pkg-types "^1.2.1" + tinyexec "^0.3.1" + ufo "^1.5.4" + object-assign@^4.0.1, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" @@ -5456,7 +5523,7 @@ object-hash@^3.0.0: resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== -object-inspect@^1.13.1: +object-inspect@^1.13.1, object-inspect@^1.13.3: version "1.13.3" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== @@ -5589,9 +5656,9 @@ openapi-typescript@^6.7.5: yargs-parser "^21.1.1" openapi-typescript@^7.4.2: - version "7.4.3" - resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-7.4.3.tgz#269c367929e8580dae2f7ef2d68bb39ffa30fa47" - integrity sha512-xTIjMIIOv9kNhsr8JxaC00ucbIY/6ZwuJPJBZMSh5FA2dicZN5uM805DWVJojXdom8YI4AQTavPDPHMx/3g0vQ== + version "7.4.4" + resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-7.4.4.tgz#77fd70c275d40cf98fb4a68a96e09dc38859cbb9" + integrity sha512-7j3nktnRzlQdlHnHsrcr6Gqz8f80/RhfA2I8s1clPI+jkY0hLNmnYVKBfuUEli5EEgK1B6M+ibdS5REasPlsUw== dependencies: "@redocly/openapi-core" "^1.25.9" ansi-colors "^4.1.3" @@ -5651,9 +5718,9 @@ package-json-from-dist@^1.0.0: integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== package-manager-detector@^0.2.0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-0.2.2.tgz#fbbc8afe87cdaee471ca9b89c3700236c6d2d9e5" - integrity sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg== + version "0.2.7" + resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-0.2.7.tgz#6c3e47d7794fdd513512d02e2160c24ba559e39b" + integrity sha512-g4+387DXDKlZzHkP+9FLt8yKj8+/3tOkPv7DVTJGGRm00RkEWgqbFstX1mXJ4M0VDYhUqsTOiISqNOJnhAu3PQ== parent-module@^1.0.0: version "1.0.1" @@ -5771,7 +5838,7 @@ picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0, picocolors@^1.1.1: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -5787,9 +5854,9 @@ pify@^2.3.0: integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== pinia@^2.1.7, pinia@^2.2.0, pinia@^2.2.3: - version "2.2.6" - resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.2.6.tgz#ff93f35b8c02033eaedc8c92ad5f10f215d6c804" - integrity sha512-vIsR8JkDN5Ga2vAxqOE2cJj4VtsHnzpR1Fz30kClxlh0yCHfec6uoMeM3e/ddqmwFUejK3NlrcQa/shnpyT4hA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/pinia/-/pinia-2.3.0.tgz#b81f4ac7da1031af8d8f7007686c4b2799a55b9f" + integrity sha512-ohZj3jla0LL0OH5PlLTDMzqKiVw2XARmC1XYLdLWIPBMdhDW/123ZWr4zVAhtJm+aoSkFa13pYXskAvAscIkhQ== dependencies: "@vue/devtools-api" "^6.6.3" vue-demi "^0.14.10" @@ -5891,7 +5958,7 @@ postcss-js@^4.0.1: dependencies: camelcase-css "^2.0.1" -postcss-load-config@^4.0.1: +postcss-load-config@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== @@ -5950,7 +6017,7 @@ postcss-minify-selectors@^7.0.4: cssesc "^3.0.0" postcss-selector-parser "^6.1.2" -postcss-nested@^6.0.1, postcss-nested@^6.2.0: +postcss-nested@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131" integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ== @@ -6051,7 +6118,7 @@ postcss-reduce-transforms@^7.0.0: dependencies: postcss-value-parser "^4.2.0" -postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2: +postcss-selector-parser@^6.0.15, postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2: version "6.1.2" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== @@ -6087,7 +6154,7 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.43, postcss@^8.4.45, postcss@^8.4.47: +postcss@^8.4.21, postcss@^8.4.43, postcss@^8.4.45, postcss@^8.4.47, postcss@^8.4.48, postcss@^8.4.49: version "8.4.49" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== @@ -6269,12 +6336,26 @@ redis-parser@^3.0.0: dependencies: redis-errors "^1.0.0" +reflect.getprototypeof@^1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz#c58afb17a4007b4d1118c07b92c23fca422c5d82" + integrity sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ== + dependencies: + call-bind "^1.0.8" + define-properties "^1.2.1" + dunder-proto "^1.0.0" + es-abstract "^1.23.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + gopd "^1.2.0" + which-builtin-type "^1.2.0" + regexp-tree@^0.1.24, regexp-tree@~0.1.1: version "0.1.27" resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz#2198f0ef54518ffa743fe74d983b56ffd631b6cd" integrity sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA== -regexp.prototype.flags@^1.5.2: +regexp.prototype.flags@^1.5.3: version "1.5.3" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== @@ -6336,7 +6417,7 @@ resolve-pkg-maps@^1.0.0: resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== -resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.22.1, resolve@^1.22.2, resolve@^1.22.4: +resolve@^1.1.7, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.22.1, resolve@^1.22.4, resolve@^1.22.8: version "1.22.8" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== @@ -6389,30 +6470,31 @@ rollup@^3.28.1: fsevents "~2.3.2" rollup@^4.20.0, rollup@^4.24.3: - version "4.25.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.25.0.tgz#74dff4b5c2777dfc490f9711393925da50171787" - integrity sha512-uVbClXmR6wvx5R1M3Od4utyLUxrmOcEm3pAtMphn73Apq19PDtHpgZoEvqH2YnnaNUuvKmg2DgRd2Sqv+odyqg== + version "4.28.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.28.1.tgz#7718ba34d62b449dfc49adbfd2f312b4fe0df4de" + integrity sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg== dependencies: "@types/estree" "1.0.6" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.25.0" - "@rollup/rollup-android-arm64" "4.25.0" - "@rollup/rollup-darwin-arm64" "4.25.0" - "@rollup/rollup-darwin-x64" "4.25.0" - "@rollup/rollup-freebsd-arm64" "4.25.0" - "@rollup/rollup-freebsd-x64" "4.25.0" - "@rollup/rollup-linux-arm-gnueabihf" "4.25.0" - "@rollup/rollup-linux-arm-musleabihf" "4.25.0" - "@rollup/rollup-linux-arm64-gnu" "4.25.0" - "@rollup/rollup-linux-arm64-musl" "4.25.0" - "@rollup/rollup-linux-powerpc64le-gnu" "4.25.0" - "@rollup/rollup-linux-riscv64-gnu" "4.25.0" - "@rollup/rollup-linux-s390x-gnu" "4.25.0" - "@rollup/rollup-linux-x64-gnu" "4.25.0" - "@rollup/rollup-linux-x64-musl" "4.25.0" - "@rollup/rollup-win32-arm64-msvc" "4.25.0" - "@rollup/rollup-win32-ia32-msvc" "4.25.0" - "@rollup/rollup-win32-x64-msvc" "4.25.0" + "@rollup/rollup-android-arm-eabi" "4.28.1" + "@rollup/rollup-android-arm64" "4.28.1" + "@rollup/rollup-darwin-arm64" "4.28.1" + "@rollup/rollup-darwin-x64" "4.28.1" + "@rollup/rollup-freebsd-arm64" "4.28.1" + "@rollup/rollup-freebsd-x64" "4.28.1" + "@rollup/rollup-linux-arm-gnueabihf" "4.28.1" + "@rollup/rollup-linux-arm-musleabihf" "4.28.1" + "@rollup/rollup-linux-arm64-gnu" "4.28.1" + "@rollup/rollup-linux-arm64-musl" "4.28.1" + "@rollup/rollup-linux-loongarch64-gnu" "4.28.1" + "@rollup/rollup-linux-powerpc64le-gnu" "4.28.1" + "@rollup/rollup-linux-riscv64-gnu" "4.28.1" + "@rollup/rollup-linux-s390x-gnu" "4.28.1" + "@rollup/rollup-linux-x64-gnu" "4.28.1" + "@rollup/rollup-linux-x64-musl" "4.28.1" + "@rollup/rollup-win32-arm64-msvc" "4.28.1" + "@rollup/rollup-win32-ia32-msvc" "4.28.1" + "@rollup/rollup-win32-x64-msvc" "4.28.1" fsevents "~2.3.2" run-applescript@^7.0.0: @@ -6464,12 +6546,12 @@ safe-regex@^2.1.1: regexp-tree "~0.1.1" sass@^1.58.0: - version "1.80.6" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.80.6.tgz#5d0aa55763984effe41e40019c9571ab73e6851f" - integrity sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg== + version "1.82.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.82.0.tgz#30da277af3d0fa6042e9ceabd0d984ed6d07df70" + integrity sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q== dependencies: chokidar "^4.0.0" - immutable "^4.0.0" + immutable "^5.0.2" source-map-js ">=0.6.2 <2.0.0" optionalDependencies: "@parcel/watcher" "^2.4.1" @@ -6542,7 +6624,7 @@ set-blocking@^2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-function-length@^1.2.1: +set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -6587,9 +6669,9 @@ shebang-regex@^3.0.0: integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + version "1.8.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.2.tgz#d2d83e057959d53ec261311e9e9b8f51dcb2934a" + integrity sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA== side-channel@^1.0.4: version "1.0.6" @@ -6620,10 +6702,10 @@ simple-git@^3.27.0: "@kwsites/promise-deferred" "^1.1.1" debug "^4.3.5" -sirv@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/sirv/-/sirv-2.0.4.tgz#5dd9a725c578e34e449f332703eb2a74e46a29b0" - integrity sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ== +sirv@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/sirv/-/sirv-3.0.0.tgz#f8d90fc528f65dff04cb597a88609d4e8a4361ce" + integrity sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg== dependencies: "@polka/url" "^1.0.0-next.24" mrmime "^2.0.0" @@ -6713,6 +6795,11 @@ speakingurl@^14.0.1: resolved "https://registry.yarnpkg.com/speakingurl/-/speakingurl-14.0.1.tgz#f37ec8ddc4ab98e9600c1c9ec324a8c48d772a53" integrity sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ== +stable-hash@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/stable-hash/-/stable-hash-0.0.4.tgz#55ae7dadc13e4b3faed13601587cec41859b42f7" + integrity sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g== + standard-as-callback@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/standard-as-callback/-/standard-as-callback-2.1.0.tgz#8953fc05359868a77b5b9739a665c5977bb7df45" @@ -6728,15 +6815,15 @@ statuses@2.0.1: resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== -std-env@^3.7.0: +std-env@^3.7.0, std-env@^3.8.0: version "3.8.0" resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.8.0.tgz#b56ffc1baf1a29dcc80a3bdf11d7fca7c315e7d5" integrity sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w== streamx@^2.15.0: - version "2.20.1" - resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.20.1.tgz#471c4f8b860f7b696feb83d5b125caab2fdbb93c" - integrity sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA== + version "2.21.0" + resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.21.0.tgz#ef42a3b3fada6887ba06964443adbbbec60c5851" + integrity sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg== dependencies: fast-fifo "^1.3.2" queue-tick "^1.0.1" @@ -6856,12 +6943,12 @@ strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-literal@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-2.1.0.tgz#6d82ade5e2e74f5c7e8739b6c84692bd65f0bd2a" - integrity sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw== +strip-literal@^2.1.0, strip-literal@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-2.1.1.tgz#26906e65f606d49f748454a08084e94190c2e5ad" + integrity sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q== dependencies: - js-tokens "^9.0.0" + js-tokens "^9.0.1" stylehacks@^7.0.4: version "7.0.4" @@ -6871,7 +6958,7 @@ stylehacks@^7.0.4: browserslist "^4.23.3" postcss-selector-parser "^6.1.2" -sucrase@^3.32.0: +sucrase@^3.35.0: version "3.35.0" resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== @@ -6885,9 +6972,9 @@ sucrase@^3.32.0: ts-interface-checker "^0.1.9" superjson@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/superjson/-/superjson-2.2.1.tgz#9377a7fa80fedb10c851c9dbffd942d4bcf79733" - integrity sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA== + version "2.2.2" + resolved "https://registry.yarnpkg.com/superjson/-/superjson-2.2.2.tgz#9d52bf0bf6b5751a3c3472f1292e714782ba3173" + integrity sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q== dependencies: copy-anything "^3.0.2" @@ -6946,32 +7033,32 @@ tailwind-config-viewer@^2.0.4: replace-in-file "^6.1.0" tailwindcss@^3.2.7, tailwindcss@~3.4.13: - version "3.4.14" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.14.tgz#6dd23a7f54ec197b19159e91e3bb1e55e7aa73ac" - integrity sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA== + version "3.4.16" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.16.tgz#35a7c3030844d6000fc271878db4096b6a8d2ec9" + integrity sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw== dependencies: "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" - chokidar "^3.5.3" + chokidar "^3.6.0" didyoumean "^1.2.2" dlv "^1.1.3" - fast-glob "^3.3.0" + fast-glob "^3.3.2" glob-parent "^6.0.2" is-glob "^4.0.3" - jiti "^1.21.0" - lilconfig "^2.1.0" - micromatch "^4.0.5" + jiti "^1.21.6" + lilconfig "^3.1.3" + micromatch "^4.0.8" normalize-path "^3.0.0" object-hash "^3.0.0" - picocolors "^1.0.0" - postcss "^8.4.23" + picocolors "^1.1.1" + postcss "^8.4.47" postcss-import "^15.1.0" postcss-js "^4.0.1" - postcss-load-config "^4.0.1" - postcss-nested "^6.0.1" - postcss-selector-parser "^6.0.11" - resolve "^1.22.2" - sucrase "^3.32.0" + postcss-load-config "^4.0.2" + postcss-nested "^6.2.0" + postcss-selector-parser "^6.1.2" + resolve "^1.22.8" + sucrase "^3.35.0" tapable@^2.2.0: version "2.2.1" @@ -7000,9 +7087,9 @@ tar@^6.1.11, tar@^6.2.0: yallist "^4.0.0" terser@^5.17.4: - version "5.36.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e" - integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w== + version "5.37.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.37.0.tgz#38aa66d1cfc43d0638fab54e43ff8a4f72a21ba3" + integrity sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -7010,9 +7097,11 @@ terser@^5.17.4: source-map-support "~0.5.20" text-decoder@^1.1.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.1.tgz#e173f5121d97bfa3ff8723429ad5ba92e1ead67e" - integrity sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ== + version "1.2.2" + resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.2.tgz#63dd2401c43895cecb292e2407db184b50ad60ac" + integrity sha512-/MDslo7ZyWTA2vnk1j7XoDVfXsGk3tp+zFEJHJGm0UjIlQifonVFwlVbQDFh8KJzTBnT8ie115TYqir6bclddA== + dependencies: + b4a "^1.6.4" text-table@^0.2.0: version "0.2.0" @@ -7043,7 +7132,12 @@ tiny-invariant@^1.1.0: resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== -tinyglobby@0.2.10, tinyglobby@^0.2.6, tinyglobby@^0.2.9: +tinyexec@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.1.tgz#0ab0daf93b43e2c211212396bdb836b468c97c98" + integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ== + +tinyglobby@0.2.10, tinyglobby@^0.2.10, tinyglobby@^0.2.9: version "0.2.10" resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.10.tgz#e712cf2dc9b95a1f5c5bbd159720e15833977a0f" integrity sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew== @@ -7079,9 +7173,9 @@ tr46@~0.0.3: integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== ts-api-utils@^1.0.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.0.tgz#709c6f2076e511a81557f3d07a0cbd566ae8195c" - integrity sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ== + version "1.4.3" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.3.tgz#bfc2215fe6528fecab2b0fba570a2e8a4263b064" + integrity sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw== ts-interface-checker@^0.1.9: version "0.1.13" @@ -7136,9 +7230,9 @@ type-fest@^2.19.0: integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== type-fest@^4.18.2, type-fest@^4.7.1, type-fest@^4.8.3: - version "4.26.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.26.1.tgz#a4a17fa314f976dd3e6d6675ef6c775c16d7955e" - integrity sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg== + version "4.30.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.30.0.tgz#cf411e7630578ad9e9884951dfaeef6588f970fe" + integrity sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA== type-is@^1.6.16: version "1.6.18" @@ -7169,9 +7263,9 @@ typed-array-byte-length@^1.0.1: is-typed-array "^1.1.13" typed-array-byte-offset@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" - integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + version "1.0.3" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz#3fa9f22567700cc86aaf86a1e7176f74b59600f2" + integrity sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.7" @@ -7179,23 +7273,24 @@ typed-array-byte-offset@^1.0.2: gopd "^1.0.1" has-proto "^1.0.3" is-typed-array "^1.1.13" + reflect.getprototypeof "^1.0.6" typed-array-length@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" - integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + version "1.0.7" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d" + integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg== dependencies: call-bind "^1.0.7" for-each "^0.3.3" gopd "^1.0.1" - has-proto "^1.0.3" is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" + reflect.getprototypeof "^1.0.6" typescript@^5.6.3: - version "5.6.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b" - integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== + version "5.7.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.2.tgz#3169cf8c4c8a828cde53ba9ecb3d2b1d5dd67be6" + integrity sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg== ufo@^1.1.2, ufo@^1.3.2, ufo@^1.5.4: version "1.5.4" @@ -7262,10 +7357,10 @@ unctx@^2.3.1: magic-string "^0.30.0" unplugin "^1.3.1" -undici-types@~6.19.8: - version "6.19.8" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" - integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== +undici-types@~6.20.0: + version "6.20.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433" + integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== undici@^5.28.4: version "5.28.4" @@ -7285,14 +7380,14 @@ unenv@^1.10.0: node-fetch-native "^1.6.4" pathe "^1.1.2" -unhead@1.11.11, unhead@^1.11.11: - version "1.11.11" - resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.11.11.tgz#5115d42ccb4c76fa6053b5b83831a1e14de901a1" - integrity sha512-98tM2R8OWJhvS6uqTewkfIrsPqFU/VwnKpU2tVZ+jPXSWgWSLmM3K2Y2v5AEM4bZjmC/XH8pLVGzbqB7xzFI/Q== +unhead@1.11.13, unhead@^1.11.11: + version "1.11.13" + resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.11.13.tgz#be8fc9034559dfdefaa9827e12da46d8fe7aa7b9" + integrity sha512-I7yyvqRfpPPzXuCG7HKZkgAWJDbzXDDEVyib4C/78HREqhNGHVSyo4TqX1h1xB5cx7WYc21HHDRT2/8YkqOy2w== dependencies: - "@unhead/dom" "1.11.11" - "@unhead/schema" "1.11.11" - "@unhead/shared" "1.11.11" + "@unhead/dom" "1.11.13" + "@unhead/schema" "1.11.13" + "@unhead/shared" "1.11.13" hookable "^5.5.3" unicorn-magic@^0.1.0: @@ -7300,24 +7395,25 @@ unicorn-magic@^0.1.0: resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4" integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== -unimport@^3.12.0, unimport@^3.13.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.13.1.tgz#4362340e2df7edad212c693d33808189e058dded" - integrity sha512-nNrVzcs93yrZQOW77qnyOVHtb68LegvhYFwxFMfuuWScmwQmyVCG/NBuN8tYsaGzgQUVYv34E/af+Cc9u4og4A== +unimport@^3.13.1, unimport@^3.13.2, unimport@^3.14.2: + version "3.14.4" + resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.14.4.tgz#5e9ad35be88518eee990d5fc8e9e9afdd18a7757" + integrity sha512-90jQsiS2D0vIrWg4U58do7B5Hr4q0qt9o/rS0TrDMzrvNuAQ7XF1sQ47Pe2zjVlvFWNkoPBb/2l2GJFy5XjqDg== dependencies: - "@rollup/pluginutils" "^5.1.2" - acorn "^8.12.1" + "@rollup/pluginutils" "^5.1.3" + acorn "^8.14.0" escape-string-regexp "^5.0.0" estree-walker "^3.0.3" - fast-glob "^3.3.2" - local-pkg "^0.5.0" - magic-string "^0.30.11" - mlly "^1.7.1" + local-pkg "^0.5.1" + magic-string "^0.30.14" + mlly "^1.7.3" pathe "^1.1.2" - pkg-types "^1.2.0" + picomatch "^4.0.2" + pkg-types "^1.2.1" scule "^1.3.0" - strip-literal "^2.1.0" - unplugin "^1.14.1" + strip-literal "^2.1.1" + tinyglobby "^0.2.10" + unplugin "^1.16.0" universalify@^2.0.0: version "2.0.1" @@ -7325,29 +7421,37 @@ universalify@^2.0.0: integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== unplugin-vue-router@^0.10.8: - version "0.10.8" - resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.10.8.tgz#a868cb64e3c27aba98b312aa757e8cb48830b891" - integrity sha512-xi+eLweYAqolIoTRSmumbi6Yx0z5M0PLvl+NFNVWHJgmE2ByJG1SZbrn+TqyuDtIyln20KKgq8tqmL7aLoiFjw== + version "0.10.9" + resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.10.9.tgz#7a806275214993f6e67f666430fa637bb6e84181" + integrity sha512-DXmC0GMcROOnCmN56GRvi1bkkG1BnVs4xJqNvucBUeZkmB245URvtxOfbo3H6q4SOUQQbLPYWd6InzvjRh363A== dependencies: - "@babel/types" "^7.25.4" - "@rollup/pluginutils" "^5.1.0" - "@vue-macros/common" "^1.12.2" + "@babel/types" "^7.26.0" + "@rollup/pluginutils" "^5.1.3" + "@vue-macros/common" "^1.15.0" ast-walker-scope "^0.6.2" chokidar "^3.6.0" fast-glob "^3.3.2" json5 "^2.2.3" - local-pkg "^0.5.0" - magic-string "^0.30.11" - mlly "^1.7.1" + local-pkg "^0.5.1" + magic-string "^0.30.14" + mlly "^1.7.3" pathe "^1.1.2" scule "^1.3.0" - unplugin "^1.12.2" - yaml "^2.5.0" + unplugin "2.0.0-beta.1" + yaml "^2.6.1" -unplugin@^1.10.0, unplugin@^1.12.2, unplugin@^1.14.1, unplugin@^1.15.0, unplugin@^1.3.1: - version "1.15.0" - resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.15.0.tgz#cd1e92e537ab14a03354d6f83f29d536fac2e5a9" - integrity sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA== +unplugin@2.0.0-beta.1: + version "2.0.0-beta.1" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-2.0.0-beta.1.tgz#3f8c9ecfae03fc9e22d9821ba68d52aa46a13aeb" + integrity sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ== + dependencies: + acorn "^8.14.0" + webpack-virtual-modules "^0.6.2" + +unplugin@^1.10.0, unplugin@^1.14.1, unplugin@^1.16.0, unplugin@^1.3.1: + version "1.16.0" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.16.0.tgz#ca0f248bf8798cd752dd02e5b381223b737cef72" + integrity sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ== dependencies: acorn "^8.14.0" webpack-virtual-modules "^0.6.2" @@ -7469,17 +7573,18 @@ vee-validate@^4.9.5: type-fest "^4.8.3" vite-hot-client@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/vite-hot-client/-/vite-hot-client-0.2.3.tgz#db52aba46edbcfa7906dbca8255fd35b9a9270b2" - integrity sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg== + version "0.2.4" + resolved "https://registry.yarnpkg.com/vite-hot-client/-/vite-hot-client-0.2.4.tgz#c88789f1615cf4e95690cd5fca98b2e449a29637" + integrity sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA== -vite-node@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.4.tgz#97ffb6de913fd8d42253afe441f9512e9dbdfd5c" - integrity sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg== +vite-node@^2.1.5: + version "2.1.8" + resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.8.tgz#9495ca17652f6f7f95ca7c4b568a235e0c8dbac5" + integrity sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg== dependencies: cac "^6.7.14" debug "^4.3.7" + es-module-lexer "^1.5.4" pathe "^1.1.2" vite "^5.0.0" @@ -7503,20 +7608,20 @@ vite-plugin-checker@^0.8.0: vscode-languageserver-textdocument "^1.0.1" vscode-uri "^3.0.2" -vite-plugin-inspect@^0.8.7: - version "0.8.7" - resolved "https://registry.yarnpkg.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.7.tgz#89acc829208fc1b43e2738e886304c5be0e80ab5" - integrity sha512-/XXou3MVc13A5O9/2Nd6xczjrUwt7ZyI9h8pTnUMkr5SshLcb0PJUOVq2V+XVkdeU4njsqAtmK87THZuO2coGA== +vite-plugin-inspect@~0.8.8: + version "0.8.9" + resolved "https://registry.yarnpkg.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.9.tgz#01a7e484ccbc12a8c86ee8bc90efe13aeb0fed1b" + integrity sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A== dependencies: "@antfu/utils" "^0.7.10" - "@rollup/pluginutils" "^5.1.0" - debug "^4.3.6" + "@rollup/pluginutils" "^5.1.3" + debug "^4.3.7" error-stack-parser-es "^0.1.5" fs-extra "^11.2.0" open "^10.1.0" perfect-debounce "^1.0.0" - picocolors "^1.0.1" - sirv "^2.0.4" + picocolors "^1.1.1" + sirv "^3.0.0" vite-plugin-vue-inspector@5.1.3: version "5.1.3" @@ -7542,7 +7647,7 @@ vite-plugin-vuetify@^2.0.4: debug "^4.3.3" upath "^2.0.1" -vite@^5.0.0, vite@^5.4.10, vite@^5.4.9: +vite@^5.0.0, vite@^5.4.11, vite@^5.4.9: version "5.4.11" resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.11.tgz#3b415cd4aed781a356c1de5a9ebafb837715f6e5" integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q== @@ -7628,9 +7733,9 @@ vue-eslint-parser@^9.0.3, vue-eslint-parser@^9.4.3: semver "^7.3.6" vue-router@^4.4.5: - version "4.4.5" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.4.5.tgz#bdf535e4cf32414ebdea6b4b403593efdb541388" - integrity sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q== + version "4.5.0" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.5.0.tgz#58fc5fe374e10b6018f910328f756c3dae081f14" + integrity sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w== dependencies: "@vue/devtools-api" "^6.6.4" @@ -7639,16 +7744,16 @@ vue-toastification@^2.0.0-rc.5: resolved "https://registry.yarnpkg.com/vue-toastification/-/vue-toastification-2.0.0-rc.5.tgz#92798604d806ae473cfb76ed776fae294280f8f8" integrity sha512-q73e5jy6gucEO/U+P48hqX+/qyXDozAGmaGgLFm5tXX4wJBcVsnGp4e/iJqlm9xzHETYOilUuwOUje2Qg1JdwA== -vue@^3.5.0, vue@^3.5.12: - version "3.5.12" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.12.tgz#e08421c601b3617ea2c9ef0413afcc747130b36c" - integrity sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg== +vue@^3.5.0, vue@^3.5.13: + version "3.5.13" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a" + integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ== dependencies: - "@vue/compiler-dom" "3.5.12" - "@vue/compiler-sfc" "3.5.12" - "@vue/runtime-dom" "3.5.12" - "@vue/server-renderer" "3.5.12" - "@vue/shared" "3.5.12" + "@vue/compiler-dom" "3.5.13" + "@vue/compiler-sfc" "3.5.13" + "@vue/runtime-dom" "3.5.13" + "@vue/server-renderer" "3.5.13" + "@vue/shared" "3.5.13" vuedraggable@^4.1.0: version "4.1.0" @@ -7658,9 +7763,9 @@ vuedraggable@^4.1.0: sortablejs "1.14.0" vuetify@^3.7.3: - version "3.7.4" - resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.7.4.tgz#52de97ecb4e456c92dc81c723d1e21b1ddccdbc6" - integrity sha512-Y8UU5wUDQXC3oz2uumPb8IOdvB4XMCxtxnmqdOc+LihNuPlkSgxIwf92ndRzbOtJFKHsggFUxpyLqpQp+A+5kg== + version "3.7.5" + resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.7.5.tgz#087632a0c6e32ee7114e046bcbf52a55f43e52e1" + integrity sha512-5aiSz8WJyGzYe3yfgDbzxsFATwHvKtdvFAaUJEDTx7xRv55s3YiOho/MFhs5iTbmh2VT4ToRgP0imBUP660UOw== webidl-conversions@^3.0.0: version "3.0.1" @@ -7681,20 +7786,49 @@ whatwg-url@^5.0.0: webidl-conversions "^3.0.0" which-boxed-primitive@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.0.tgz#2d850d6c4ac37b95441a67890e19f3fda8b6c6d9" + integrity sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng== + dependencies: + is-bigint "^1.1.0" + is-boolean-object "^1.2.0" + is-number-object "^1.1.0" + is-string "^1.1.0" + is-symbol "^1.1.0" + +which-builtin-type@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.0.tgz#58042ac9602d78a6d117c7e811349df1268ba63c" + integrity sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA== + dependencies: + call-bind "^1.0.7" + function.prototype.name "^1.1.6" + has-tostringtag "^1.0.2" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.1.0" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.2" + which-typed-array "^1.1.15" + +which-collection@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" which-typed-array@^1.1.14, which-typed-array@^1.1.15: - version "1.1.15" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + version "1.1.16" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.16.tgz#db4db429c4706feca2f01677a144278e4a8c216b" + integrity sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.7" @@ -7790,10 +7924,10 @@ yaml-ast-parser@0.0.43: resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== -yaml@^2.3.4, yaml@^2.5.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.0.tgz#14059ad9d0b1680d0f04d3a60fe00f3a857303c3" - integrity sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ== +yaml@^2.3.4, yaml@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.1.tgz#42f2b1ba89203f374609572d5349fb8686500773" + integrity sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg== yargs-parser@^21.1.1: version "21.1.1" @@ -7824,9 +7958,9 @@ yocto-queue@^0.1.0: integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== yup@^1.4: - version "1.4.0" - resolved "https://registry.yarnpkg.com/yup/-/yup-1.4.0.tgz#898dcd660f9fb97c41f181839d3d65c3ee15a43e" - integrity sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg== + version "1.5.0" + resolved "https://registry.yarnpkg.com/yup/-/yup-1.5.0.tgz#1aaa5e453f04424094b9c8a0e5292e0ac2d97246" + integrity sha512-NJfBIHnp1QbqZwxcgl6irnDMIsb/7d1prNhFx02f1kp8h+orpi4xs3w90szNpOh68a/iHPdMsYvhZWoDmUvXBQ== dependencies: property-expr "^2.0.5" tiny-case "^1.0.3" From 28a5c9c7de4c9f1a3ff066d2a8529ad8e4aa54c0 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Mon, 9 Dec 2024 00:10:49 +0100 Subject: [PATCH 55/58] Refactor docker-compose.yaml to improve service names and organization --- docker-compose.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index df0d15d6..38dab26e 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,8 +1,10 @@ +name: civo + services: - db_postgis: + postgis_db: image: postgis/postgis:16-3.4-alpine - container_name: db-postgis + container_name: postgis-db healthcheck: test: ["CMD-SHELL", "pg_isready -U ${DB_USER} -d ${DATABASE}"] interval: 10s @@ -31,14 +33,14 @@ services: sh -c "python manage.py migrate && python manage.py loaddata civilian-db.json && python manage.py runserver 0.0.0.0:8000" - container_name: django-app + container_name: django-api environment: - SECRET_KEY=/run/secrets/django_token - DATABASE_ENGINE=${JDANGO_DB_ENGINE} - POSTGRES_DBASE=${DATABASE} - POSTGRES_USER=${DB_USER} - POSTGRES_PWD=/run/secrets/postgres_password - - POSTGRES_HOST=db_postgis + - POSTGRES_HOST=postgis_db - POSTGRES_PORT=${DB_PORT} - DJANGO_ALLOWED_HOSTS=${DJANGO_ALLOWED_HOSTS} - DJANGO_DEBUG=${DJANGO_DEBUG} @@ -50,7 +52,7 @@ services: - django_token - postgres_password depends_on: - db_postgis: + postgis_db: condition: service_healthy restart: true networks: From 2bc8977189569bf9f1d12c3c2eeb3de878d124f1 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Mon, 9 Dec 2024 12:06:20 +0100 Subject: [PATCH 56/58] include sample answers to civilian survey --- citizenvoice/civilian-db.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citizenvoice/civilian-db.json b/citizenvoice/civilian-db.json index fecb1f09..cc4a75cb 100644 --- a/citizenvoice/civilian-db.json +++ b/citizenvoice/civilian-db.json @@ -1 +1 @@ -[{"model": "admin.logentry", "pk": 1, "fields": {"action_time": "2024-05-08T16:00:55.923Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Demo 1", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 2, "fields": {"action_time": "2024-05-08T16:01:26.787Z", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Demo 2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 3, "fields": {"action_time": "2024-05-08T16:01:59.522Z", "user": 1, "content_type": 10, "object_id": "1", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 4, "fields": {"action_time": "2024-05-08T16:03:07.121Z", "user": 1, "content_type": 8, "object_id": "1", "object_repr": "popular places", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 5, "fields": {"action_time": "2024-05-08T16:03:09.134Z", "user": 1, "content_type": 10, "object_id": "2", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 6, "fields": {"action_time": "2024-05-08T16:03:19.143Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 7, "fields": {"action_time": "2024-05-08T16:03:58.828Z", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "What do you do?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 8, "fields": {"action_time": "2024-05-08T16:04:04.880Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must be answered geospatially or not\"]}}]"}}, {"model": "admin.logentry", "pk": 9, "fields": {"action_time": "2024-05-08T16:05:53.927Z", "user": 1, "content_type": 10, "object_id": "3", "object_repr": "Enschede", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 10, "fields": {"action_time": "2024-05-08T16:05:58.873Z", "user": 1, "content_type": 13, "object_id": "3", "object_repr": "Where do you live?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 11, "fields": {"action_time": "2024-05-08T16:06:23.344Z", "user": 1, "content_type": 13, "object_id": "4", "object_repr": "Question for demo 2?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 12, "fields": {"action_time": "2024-05-08T16:06:33.535Z", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "What do you do?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 13, "fields": {"action_time": "2024-05-08T16:07:28.543Z", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "PointFeature object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 14, "fields": {"action_time": "2024-05-08T16:17:57.329Z", "user": 1, "content_type": 10, "object_id": "1", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 15, "fields": {"action_time": "2024-05-08T16:31:25.673Z", "user": 1, "content_type": 10, "object_id": "3", "object_repr": "Enschede", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 16, "fields": {"action_time": "2024-05-08T16:31:25.676Z", "user": 1, "content_type": 10, "object_id": "2", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 17, "fields": {"action_time": "2024-05-08T16:31:33.293Z", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "PointFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 18, "fields": {"action_time": "2024-05-08T16:38:18.987Z", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "PointFeature object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 19, "fields": {"action_time": "2024-05-15T10:07:17.934Z", "user": 1, "content_type": 10, "object_id": "4", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 20, "fields": {"action_time": "2024-05-15T10:07:35.637Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 21, "fields": {"action_time": "2024-06-12T09:14:53.009Z", "user": 1, "content_type": 14, "object_id": "f765df5a-c77f-4e71-b751-2c9156b6a408", "object_repr": "Response f765df5a-c77f-4e71-b751-2c9156b6a408 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 22, "fields": {"action_time": "2024-06-12T09:14:53.017Z", "user": 1, "content_type": 14, "object_id": "f41fe333-53d0-4def-9707-6341275b84dc", "object_repr": "Response f41fe333-53d0-4def-9707-6341275b84dc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 23, "fields": {"action_time": "2024-06-12T09:14:53.018Z", "user": 1, "content_type": 14, "object_id": "e94ea703-453c-4544-8178-29f6ae72a2c3", "object_repr": "Response e94ea703-453c-4544-8178-29f6ae72a2c3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 24, "fields": {"action_time": "2024-06-12T09:14:53.018Z", "user": 1, "content_type": 14, "object_id": "df113198-6181-4eb2-bf98-94de6af457e9", "object_repr": "Response df113198-6181-4eb2-bf98-94de6af457e9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 25, "fields": {"action_time": "2024-06-12T09:14:53.019Z", "user": 1, "content_type": 14, "object_id": "d391312c-9b3d-4909-82c9-83288dab6451", "object_repr": "Response d391312c-9b3d-4909-82c9-83288dab6451 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 26, "fields": {"action_time": "2024-06-12T09:14:53.020Z", "user": 1, "content_type": 14, "object_id": "c03140a7-a3fb-487d-bca4-09878caf70e3", "object_repr": "Response c03140a7-a3fb-487d-bca4-09878caf70e3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 27, "fields": {"action_time": "2024-06-12T09:14:53.020Z", "user": 1, "content_type": 14, "object_id": "be46e9d6-a73c-42b8-98b3-7be2e6e39c08", "object_repr": "Response be46e9d6-a73c-42b8-98b3-7be2e6e39c08 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 28, "fields": {"action_time": "2024-06-12T09:14:53.021Z", "user": 1, "content_type": 14, "object_id": "b6fb97e8-673d-41d3-8db4-83f0a1fec2d9", "object_repr": "Response b6fb97e8-673d-41d3-8db4-83f0a1fec2d9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 29, "fields": {"action_time": "2024-06-12T09:14:53.022Z", "user": 1, "content_type": 14, "object_id": "b543a9b5-db92-4950-9989-3f1471928d1f", "object_repr": "Response b543a9b5-db92-4950-9989-3f1471928d1f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 30, "fields": {"action_time": "2024-06-12T09:14:53.022Z", "user": 1, "content_type": 14, "object_id": "b0e7d769-73f3-4d8d-bf70-3010febd20df", "object_repr": "Response b0e7d769-73f3-4d8d-bf70-3010febd20df (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 31, "fields": {"action_time": "2024-06-12T09:14:53.023Z", "user": 1, "content_type": 14, "object_id": "add311c8-08b8-4a0f-933d-3ab116967b57", "object_repr": "Response add311c8-08b8-4a0f-933d-3ab116967b57 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 32, "fields": {"action_time": "2024-06-12T09:14:53.023Z", "user": 1, "content_type": 14, "object_id": "a15f4bb7-251f-4638-a3bb-a4babf400542", "object_repr": "Response a15f4bb7-251f-4638-a3bb-a4babf400542 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 33, "fields": {"action_time": "2024-06-12T09:14:53.024Z", "user": 1, "content_type": 14, "object_id": "9d6cd33c-f2f1-4281-b263-a40052456958", "object_repr": "Response 9d6cd33c-f2f1-4281-b263-a40052456958 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 34, "fields": {"action_time": "2024-06-12T09:14:53.024Z", "user": 1, "content_type": 14, "object_id": "984627fc-814e-4c02-b978-dd51ee64088d", "object_repr": "Response 984627fc-814e-4c02-b978-dd51ee64088d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 35, "fields": {"action_time": "2024-06-12T09:14:53.025Z", "user": 1, "content_type": 14, "object_id": "97fff2f5-eb46-4d16-bdb6-a52c5dbdc34d", "object_repr": "Response 97fff2f5-eb46-4d16-bdb6-a52c5dbdc34d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 36, "fields": {"action_time": "2024-06-12T09:14:53.025Z", "user": 1, "content_type": 14, "object_id": "9026f681-0171-42ce-8824-4b8db34becfd", "object_repr": "Response 9026f681-0171-42ce-8824-4b8db34becfd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 37, "fields": {"action_time": "2024-06-12T09:14:53.026Z", "user": 1, "content_type": 14, "object_id": "87d263b4-05bd-4e67-b970-8528d31ba39a", "object_repr": "Response 87d263b4-05bd-4e67-b970-8528d31ba39a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 38, "fields": {"action_time": "2024-06-12T09:14:53.027Z", "user": 1, "content_type": 14, "object_id": "846ef479-9c2b-420e-aec6-48e8ea58df1c", "object_repr": "Response 846ef479-9c2b-420e-aec6-48e8ea58df1c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 39, "fields": {"action_time": "2024-06-12T09:14:53.027Z", "user": 1, "content_type": 14, "object_id": "81a15f02-756b-46ae-a7f1-64a912a00720", "object_repr": "Response 81a15f02-756b-46ae-a7f1-64a912a00720 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 40, "fields": {"action_time": "2024-06-12T09:14:53.028Z", "user": 1, "content_type": 14, "object_id": "7fea840d-2e71-433b-b042-4882dc9c4821", "object_repr": "Response 7fea840d-2e71-433b-b042-4882dc9c4821 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 41, "fields": {"action_time": "2024-06-12T09:14:53.028Z", "user": 1, "content_type": 14, "object_id": "7f2eb62d-39a3-44a9-adc1-451a61556acf", "object_repr": "Response 7f2eb62d-39a3-44a9-adc1-451a61556acf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 42, "fields": {"action_time": "2024-06-12T09:14:53.029Z", "user": 1, "content_type": 14, "object_id": "7a86c417-41eb-4b0d-b98b-a24c8628d5f3", "object_repr": "Response 7a86c417-41eb-4b0d-b98b-a24c8628d5f3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 43, "fields": {"action_time": "2024-06-12T09:14:53.029Z", "user": 1, "content_type": 14, "object_id": "633e4c91-0bfc-4b55-86b0-8c78bc24e16f", "object_repr": "Response 633e4c91-0bfc-4b55-86b0-8c78bc24e16f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 44, "fields": {"action_time": "2024-06-12T09:14:53.030Z", "user": 1, "content_type": 14, "object_id": "5ede54b1-2f21-4748-9ab4-2e094e7969e0", "object_repr": "Response 5ede54b1-2f21-4748-9ab4-2e094e7969e0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 45, "fields": {"action_time": "2024-06-12T09:14:53.030Z", "user": 1, "content_type": 14, "object_id": "52358415-fe72-459a-bb7a-c48576325dec", "object_repr": "Response 52358415-fe72-459a-bb7a-c48576325dec (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 46, "fields": {"action_time": "2024-06-12T09:14:53.032Z", "user": 1, "content_type": 14, "object_id": "4d4a3cdf-3758-4f9b-8162-d079ffb1f734", "object_repr": "Response 4d4a3cdf-3758-4f9b-8162-d079ffb1f734 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 47, "fields": {"action_time": "2024-06-12T09:14:53.032Z", "user": 1, "content_type": 14, "object_id": "4bf17813-b999-448e-a6d1-ed1ac4b2767e", "object_repr": "Response 4bf17813-b999-448e-a6d1-ed1ac4b2767e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2024-06-12T09:14:53.033Z", "user": 1, "content_type": 14, "object_id": "4bd5dd2b-b3a3-4145-a302-ea8e55a25a03", "object_repr": "Response 4bd5dd2b-b3a3-4145-a302-ea8e55a25a03 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2024-06-12T09:14:53.033Z", "user": 1, "content_type": 14, "object_id": "47d0e65b-ccad-4a6e-9234-eeb535301bae", "object_repr": "Response 47d0e65b-ccad-4a6e-9234-eeb535301bae (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2024-06-12T09:14:53.034Z", "user": 1, "content_type": 14, "object_id": "466d40cd-bcd5-4329-bca0-6761ba7444dc", "object_repr": "Response 466d40cd-bcd5-4329-bca0-6761ba7444dc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2024-06-12T09:14:53.034Z", "user": 1, "content_type": 14, "object_id": "390614bb-834e-4952-ad1e-97a8ca97120e", "object_repr": "Response 390614bb-834e-4952-ad1e-97a8ca97120e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2024-06-12T09:14:53.035Z", "user": 1, "content_type": 14, "object_id": "33259f02-74a0-440e-9fe0-291b4b315ccc", "object_repr": "Response 33259f02-74a0-440e-9fe0-291b4b315ccc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 53, "fields": {"action_time": "2024-06-12T09:14:53.035Z", "user": 1, "content_type": 14, "object_id": "2d003ba7-ac80-422e-ab0b-54d306fdb581", "object_repr": "Response 2d003ba7-ac80-422e-ab0b-54d306fdb581 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 54, "fields": {"action_time": "2024-06-12T09:14:53.036Z", "user": 1, "content_type": 14, "object_id": "14bbe9d0-a473-4e09-8e64-4d8a7ff008af", "object_repr": "Response 14bbe9d0-a473-4e09-8e64-4d8a7ff008af (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 55, "fields": {"action_time": "2024-06-12T09:14:53.036Z", "user": 1, "content_type": 14, "object_id": "1477f7e5-86b9-4158-8a3a-a541f2b1567d", "object_repr": "Response 1477f7e5-86b9-4158-8a3a-a541f2b1567d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 56, "fields": {"action_time": "2024-06-12T09:14:53.037Z", "user": 1, "content_type": 14, "object_id": "10adf6d7-6ed5-461d-97c1-f88e00bf1dea", "object_repr": "Response 10adf6d7-6ed5-461d-97c1-f88e00bf1dea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 57, "fields": {"action_time": "2024-06-12T09:14:53.037Z", "user": 1, "content_type": 14, "object_id": "0d77106a-f524-471c-8cff-9e396f8644f6", "object_repr": "Response 0d77106a-f524-471c-8cff-9e396f8644f6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 58, "fields": {"action_time": "2024-06-12T09:38:08.878Z", "user": 1, "content_type": 10, "object_id": "5", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 59, "fields": {"action_time": "2024-06-12T09:38:24.620Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 60, "fields": {"action_time": "2024-06-19T07:14:50.691Z", "user": 1, "content_type": 11, "object_id": "11", "object_repr": "PointFeature object (11)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 61, "fields": {"action_time": "2024-06-19T08:24:23.942Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 62, "fields": {"action_time": "2024-06-19T08:25:21.756Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 63, "fields": {"action_time": "2024-06-19T08:26:18.491Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 64, "fields": {"action_time": "2024-06-19T08:27:02.847Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 65, "fields": {"action_time": "2024-06-19T08:38:35.400Z", "user": 1, "content_type": 13, "object_id": "5", "object_repr": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 66, "fields": {"action_time": "2024-06-19T08:42:09.618Z", "user": 1, "content_type": 13, "object_id": "5", "object_repr": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Choices for answers\"]}}]"}}, {"model": "admin.logentry", "pk": 67, "fields": {"action_time": "2024-06-19T08:43:49.115Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 68, "fields": {"action_time": "2024-06-19T08:44:11.100Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Survey\"]}}]"}}, {"model": "admin.logentry", "pk": 69, "fields": {"action_time": "2024-06-19T08:47:16.461Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Delf Civilian", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 70, "fields": {"action_time": "2024-06-19T08:47:29.242Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 71, "fields": {"action_time": "2024-06-19T08:49:58.236Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 72, "fields": {"action_time": "2024-06-19T08:51:24.027Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 73, "fields": {"action_time": "2024-06-19T08:58:01.017Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 74, "fields": {"action_time": "2024-06-19T08:58:09.325Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must be answered geospatially or not\"]}}]"}}, {"model": "admin.logentry", "pk": 75, "fields": {"action_time": "2024-06-19T08:59:21.534Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 76, "fields": {"action_time": "2024-06-19T09:00:23.973Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 77, "fields": {"action_time": "2024-06-19T09:00:54.475Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 78, "fields": {"action_time": "2024-06-19T09:02:13.700Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 79, "fields": {"action_time": "2024-06-19T09:02:45.567Z", "user": 1, "content_type": 13, "object_id": "12", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 80, "fields": {"action_time": "2024-06-19T09:04:32.182Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2024-06-19T09:05:39.526Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from? Please mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2024-06-19T09:06:41.649Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2024-06-19T09:07:43.664Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves? Please mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2024-06-19T09:09:07.072Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2024-06-19T09:09:44.119Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2024-06-19T09:11:08.749Z", "user": 1, "content_type": 13, "object_id": "19", "object_repr": "Is there anything else you would like to say about your neighbourhood?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2024-06-19T09:13:02.360Z", "user": 1, "content_type": 13, "object_id": "19", "object_repr": "Is there anything else you would like to say about your neighbourhood?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2024-06-19T09:13:22.411Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2024-06-19T09:13:47.888Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2024-06-19T09:14:06.526Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2024-06-19T09:14:43.073Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2024-06-19T09:15:15.005Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2024-06-19T09:16:01.220Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2024-06-19T09:16:25.100Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2024-06-19T09:16:33.181Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2024-06-19T09:17:41.593Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2024-06-19T09:47:23.928Z", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Demo 2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2024-06-19T10:02:15.217Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN Survey", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2024-06-19T10:32:42.007Z", "user": 1, "content_type": 10, "object_id": "17", "object_repr": "fc264be6-e71b-40db-a2d4-0650df5eb7f9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2024-06-19T10:32:42.008Z", "user": 1, "content_type": 10, "object_id": "16", "object_repr": "90d5cd5f-0c83-47e8-92f4-d652980eae19", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2024-06-19T10:32:42.009Z", "user": 1, "content_type": 10, "object_id": "15", "object_repr": "587cabf5-4c8e-4445-88aa-d4573afbc69c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2024-06-19T10:32:42.010Z", "user": 1, "content_type": 10, "object_id": "14", "object_repr": "9617c8f9-abf6-4363-9236-faba07b29711", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2024-06-19T10:32:42.011Z", "user": 1, "content_type": 10, "object_id": "13", "object_repr": "80f87882-d094-494f-9011-f981d69d9aa3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2024-06-19T10:32:42.012Z", "user": 1, "content_type": 10, "object_id": "12", "object_repr": "6f3cd79b-927d-4015-b92f-f716f92fe168", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2024-06-19T10:32:42.013Z", "user": 1, "content_type": 10, "object_id": "11", "object_repr": "e3460970-fa78-44df-8f73-55d339abb661", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2024-06-19T10:32:42.014Z", "user": 1, "content_type": 10, "object_id": "10", "object_repr": "67786278-a399-4d68-8c5a-d297945f7b4d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2024-06-19T10:32:42.015Z", "user": 1, "content_type": 10, "object_id": "9", "object_repr": "6c49461f-d802-473f-9db8-089708282c4c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2024-06-19T10:32:42.016Z", "user": 1, "content_type": 10, "object_id": "8", "object_repr": "38968a9a-a3a3-458d-a31f-018470deeebf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2024-06-19T10:32:42.018Z", "user": 1, "content_type": 10, "object_id": "7", "object_repr": "1819d919-19eb-485e-94ad-f31938356b71", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2024-06-19T10:32:42.019Z", "user": 1, "content_type": 10, "object_id": "5", "object_repr": "5ea006b5-8b2b-409b-b983-ac20916d50be", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2024-06-19T10:32:42.020Z", "user": 1, "content_type": 10, "object_id": "4", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2024-06-19T10:35:11.275Z", "user": 1, "content_type": 10, "object_id": "6", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2024-06-19T10:35:18.919Z", "user": 1, "content_type": 10, "object_id": "20", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2024-06-19T10:35:31.094Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2024-06-20T15:22:57.506Z", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Demo 2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2024-06-20T15:23:37.933Z", "user": 1, "content_type": 13, "object_id": "20", "object_repr": "Enter a text:", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2024-06-20T15:46:59.229Z", "user": 1, "content_type": 15, "object_id": "1", "object_repr": "Response 06a4468e-328a-45f5-b0aa-71fb87376e50:Enter a text:", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 118, "fields": {"action_time": "2024-06-25T17:21:29.216Z", "user": 1, "content_type": 14, "object_id": "ff5abbc0-9d2e-4af1-bd0d-80eb44fa3945", "object_repr": "Response ff5abbc0-9d2e-4af1-bd0d-80eb44fa3945 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 119, "fields": {"action_time": "2024-06-25T17:21:29.223Z", "user": 1, "content_type": 14, "object_id": "fc737c9a-6bbf-4335-beb0-d7fa3e1ed506", "object_repr": "Response fc737c9a-6bbf-4335-beb0-d7fa3e1ed506 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 120, "fields": {"action_time": "2024-06-25T17:21:29.224Z", "user": 1, "content_type": 14, "object_id": "f94abed5-e278-44c2-8992-5edb544f5122", "object_repr": "Response f94abed5-e278-44c2-8992-5edb544f5122 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 121, "fields": {"action_time": "2024-06-25T17:21:29.225Z", "user": 1, "content_type": 14, "object_id": "f84e5761-78a1-4f0c-a092-49385f9a4838", "object_repr": "Response f84e5761-78a1-4f0c-a092-49385f9a4838 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 122, "fields": {"action_time": "2024-06-25T17:21:29.226Z", "user": 1, "content_type": 14, "object_id": "f0b95ea3-85f0-4eeb-b63f-76c880121386", "object_repr": "Response f0b95ea3-85f0-4eeb-b63f-76c880121386 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 123, "fields": {"action_time": "2024-06-25T17:21:29.226Z", "user": 1, "content_type": 14, "object_id": "efe299c4-1dd0-4b09-983b-bfa5f3708a3f", "object_repr": "Response efe299c4-1dd0-4b09-983b-bfa5f3708a3f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 124, "fields": {"action_time": "2024-06-25T17:21:29.227Z", "user": 1, "content_type": 14, "object_id": "ef7c0f25-5f06-478a-87bc-81d10b3e80c5", "object_repr": "Response ef7c0f25-5f06-478a-87bc-81d10b3e80c5 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 125, "fields": {"action_time": "2024-06-25T17:21:29.227Z", "user": 1, "content_type": 14, "object_id": "eeccb756-ba69-4d83-a92b-518f2685e4f1", "object_repr": "Response eeccb756-ba69-4d83-a92b-518f2685e4f1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 126, "fields": {"action_time": "2024-06-25T17:21:29.228Z", "user": 1, "content_type": 14, "object_id": "ed5c9390-1554-4ee5-9ee3-5b00656fe5e2", "object_repr": "Response ed5c9390-1554-4ee5-9ee3-5b00656fe5e2 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 127, "fields": {"action_time": "2024-06-25T17:21:29.228Z", "user": 1, "content_type": 14, "object_id": "e2a7ec0a-5f21-4bf8-a97c-6c2c7fa3aa0e", "object_repr": "Response e2a7ec0a-5f21-4bf8-a97c-6c2c7fa3aa0e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 128, "fields": {"action_time": "2024-06-25T17:21:29.229Z", "user": 1, "content_type": 14, "object_id": "e1dc74b9-053d-4943-8b15-283da3547b1b", "object_repr": "Response e1dc74b9-053d-4943-8b15-283da3547b1b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 129, "fields": {"action_time": "2024-06-25T17:21:29.230Z", "user": 1, "content_type": 14, "object_id": "de70fe95-6b25-4502-b863-b8fa4ae0d7eb", "object_repr": "Response de70fe95-6b25-4502-b863-b8fa4ae0d7eb (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 130, "fields": {"action_time": "2024-06-25T17:21:29.230Z", "user": 1, "content_type": 14, "object_id": "de360f11-86d0-4057-acd8-1c553d4c8987", "object_repr": "Response de360f11-86d0-4057-acd8-1c553d4c8987 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 131, "fields": {"action_time": "2024-06-25T17:21:29.231Z", "user": 1, "content_type": 14, "object_id": "d91e5d1a-085a-45a9-8a5a-b1907122907c", "object_repr": "Response d91e5d1a-085a-45a9-8a5a-b1907122907c (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 132, "fields": {"action_time": "2024-06-25T17:21:29.231Z", "user": 1, "content_type": 14, "object_id": "d718f445-1584-4bd5-b009-d0f8a83292c9", "object_repr": "Response d718f445-1584-4bd5-b009-d0f8a83292c9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 133, "fields": {"action_time": "2024-06-25T17:21:29.232Z", "user": 1, "content_type": 14, "object_id": "d3dc4efe-b0dc-44d2-91e9-dca422d949ea", "object_repr": "Response d3dc4efe-b0dc-44d2-91e9-dca422d949ea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 134, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d2235f98-d44e-4031-93a0-f6ff1fd8a622", "object_repr": "Response d2235f98-d44e-4031-93a0-f6ff1fd8a622 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 135, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d1915d3c-1af9-4b70-a255-cdff8bec59ee", "object_repr": "Response d1915d3c-1af9-4b70-a255-cdff8bec59ee (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 136, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d0851610-571f-4b18-b8df-4671cf35f162", "object_repr": "Response d0851610-571f-4b18-b8df-4671cf35f162 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 137, "fields": {"action_time": "2024-06-25T17:21:29.234Z", "user": 1, "content_type": 14, "object_id": "d05b534b-f5e6-4f33-beac-9ef4f8600fe0", "object_repr": "Response d05b534b-f5e6-4f33-beac-9ef4f8600fe0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 138, "fields": {"action_time": "2024-06-25T17:21:29.234Z", "user": 1, "content_type": 14, "object_id": "cfbb343a-f842-4aee-a537-92b3bb0b27d3", "object_repr": "Response cfbb343a-f842-4aee-a537-92b3bb0b27d3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 139, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ce8b57e2-ad59-4202-b039-6fa0b2632bf8", "object_repr": "Response ce8b57e2-ad59-4202-b039-6fa0b2632bf8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 140, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ce249dbd-ba52-4844-a18a-6c688968c94b", "object_repr": "Response ce249dbd-ba52-4844-a18a-6c688968c94b (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 141, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ccb775ce-b774-456b-974a-338b742214b5", "object_repr": "Response ccb775ce-b774-456b-974a-338b742214b5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 142, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c9bb0d6b-ebc3-495c-8704-78d95831c737", "object_repr": "Response c9bb0d6b-ebc3-495c-8704-78d95831c737 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 143, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c5c2c76b-83aa-425f-9fc9-6bb22f49770a", "object_repr": "Response c5c2c76b-83aa-425f-9fc9-6bb22f49770a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 144, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c4d4196a-1843-48f0-8d6d-94c6a604307f", "object_repr": "Response c4d4196a-1843-48f0-8d6d-94c6a604307f (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 145, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c48913ed-feaa-4100-a394-0d425631a04c", "object_repr": "Response c48913ed-feaa-4100-a394-0d425631a04c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 146, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c3bc6ce7-6a4f-467f-bc92-ab30614de0a6", "object_repr": "Response c3bc6ce7-6a4f-467f-bc92-ab30614de0a6 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 147, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c0654806-882a-4592-8f89-b72c533f16bc", "object_repr": "Response c0654806-882a-4592-8f89-b72c533f16bc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 148, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "ba3cb7b4-4030-4d6b-8e9f-c2ab4c56d8d2", "object_repr": "Response ba3cb7b4-4030-4d6b-8e9f-c2ab4c56d8d2 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 149, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "b6487f8e-a2cf-4240-bb09-28efb1d2889b", "object_repr": "Response b6487f8e-a2cf-4240-bb09-28efb1d2889b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 150, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "b401a71d-f24a-42ba-8753-474450cd5971", "object_repr": "Response b401a71d-f24a-42ba-8753-474450cd5971 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 151, "fields": {"action_time": "2024-06-25T17:21:29.239Z", "user": 1, "content_type": 14, "object_id": "ace22b6e-18f3-4c97-a3f6-d54d1f17878c", "object_repr": "Response ace22b6e-18f3-4c97-a3f6-d54d1f17878c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 152, "fields": {"action_time": "2024-06-25T17:21:29.239Z", "user": 1, "content_type": 14, "object_id": "aba42297-f5ec-4fdc-8bc9-f8e8623683c4", "object_repr": "Response aba42297-f5ec-4fdc-8bc9-f8e8623683c4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 153, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "aa7f21a5-90f8-424b-9ca7-f5fbb22aeba0", "object_repr": "Response aa7f21a5-90f8-424b-9ca7-f5fbb22aeba0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 154, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a9bb5ef0-f2a5-42dc-bff0-19ab0874759f", "object_repr": "Response a9bb5ef0-f2a5-42dc-bff0-19ab0874759f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 155, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a9ad1053-3c07-4c5f-b8d9-09f686309f73", "object_repr": "Response a9ad1053-3c07-4c5f-b8d9-09f686309f73 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 156, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a64e07a9-a6dc-44f5-a75d-9fc5ee68e8e8", "object_repr": "Response a64e07a9-a6dc-44f5-a75d-9fc5ee68e8e8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 157, "fields": {"action_time": "2024-06-25T17:21:29.241Z", "user": 1, "content_type": 14, "object_id": "a53d16c9-22a2-432e-b433-6363c31f9229", "object_repr": "Response a53d16c9-22a2-432e-b433-6363c31f9229 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 158, "fields": {"action_time": "2024-06-25T17:21:29.241Z", "user": 1, "content_type": 14, "object_id": "a0c3f20c-6b0c-45b9-b704-55c6c06605f4", "object_repr": "Response a0c3f20c-6b0c-45b9-b704-55c6c06605f4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 159, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9ce722d3-cc8e-4713-b4b1-58a17f72243b", "object_repr": "Response 9ce722d3-cc8e-4713-b4b1-58a17f72243b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 160, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9b93dad4-3d35-468b-bdb6-15f49c09fd22", "object_repr": "Response 9b93dad4-3d35-468b-bdb6-15f49c09fd22 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 161, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9a7d09e8-d894-4d79-9dab-c74ba419ddf4", "object_repr": "Response 9a7d09e8-d894-4d79-9dab-c74ba419ddf4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 162, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9a091816-1e7a-402e-9bac-45de0630b615", "object_repr": "Response 9a091816-1e7a-402e-9bac-45de0630b615 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 163, "fields": {"action_time": "2024-06-25T17:21:29.243Z", "user": 1, "content_type": 14, "object_id": "991537b1-e78b-4587-b519-6bc029a675c1", "object_repr": "Response 991537b1-e78b-4587-b519-6bc029a675c1 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 164, "fields": {"action_time": "2024-06-25T17:21:29.243Z", "user": 1, "content_type": 14, "object_id": "9652689f-46b5-4366-8287-75327830ba0a", "object_repr": "Response 9652689f-46b5-4366-8287-75327830ba0a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 165, "fields": {"action_time": "2024-06-25T17:21:29.244Z", "user": 1, "content_type": 14, "object_id": "90399364-c8b6-4740-90fd-358bd01b0d03", "object_repr": "Response 90399364-c8b6-4740-90fd-358bd01b0d03 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 166, "fields": {"action_time": "2024-06-25T17:21:29.244Z", "user": 1, "content_type": 14, "object_id": "8bfaa50f-d917-4c1f-9749-13dcc80e6b60", "object_repr": "Response 8bfaa50f-d917-4c1f-9749-13dcc80e6b60 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 167, "fields": {"action_time": "2024-06-25T17:21:29.245Z", "user": 1, "content_type": 14, "object_id": "88679525-10fa-4dfc-82fd-002d43c12c9d", "object_repr": "Response 88679525-10fa-4dfc-82fd-002d43c12c9d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 168, "fields": {"action_time": "2024-06-25T17:21:29.245Z", "user": 1, "content_type": 14, "object_id": "869d8343-37b5-4474-a87c-630f3b86633d", "object_repr": "Response 869d8343-37b5-4474-a87c-630f3b86633d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 169, "fields": {"action_time": "2024-06-25T17:21:29.246Z", "user": 1, "content_type": 14, "object_id": "7ffe43f9-6813-4415-86e0-09b2624702ea", "object_repr": "Response 7ffe43f9-6813-4415-86e0-09b2624702ea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 170, "fields": {"action_time": "2024-06-25T17:21:29.246Z", "user": 1, "content_type": 14, "object_id": "7edb0eec-58a8-4f52-8314-b674d1c67ed4", "object_repr": "Response 7edb0eec-58a8-4f52-8314-b674d1c67ed4 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 171, "fields": {"action_time": "2024-06-25T17:21:29.247Z", "user": 1, "content_type": 14, "object_id": "7d0b92dc-2a3b-457f-96e1-a2b8a6be9e4d", "object_repr": "Response 7d0b92dc-2a3b-457f-96e1-a2b8a6be9e4d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 172, "fields": {"action_time": "2024-06-25T17:21:29.247Z", "user": 1, "content_type": 14, "object_id": "7a6f0ef8-9f9c-4864-9258-5e94d36a78c5", "object_repr": "Response 7a6f0ef8-9f9c-4864-9258-5e94d36a78c5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 173, "fields": {"action_time": "2024-06-25T17:21:29.248Z", "user": 1, "content_type": 14, "object_id": "778c0e9f-5896-41ad-b727-48c836c6b987", "object_repr": "Response 778c0e9f-5896-41ad-b727-48c836c6b987 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 174, "fields": {"action_time": "2024-06-25T17:21:29.248Z", "user": 1, "content_type": 14, "object_id": "73b6d6f1-acfd-4ef5-b86a-c3d2489a709c", "object_repr": "Response 73b6d6f1-acfd-4ef5-b86a-c3d2489a709c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 175, "fields": {"action_time": "2024-06-25T17:21:29.249Z", "user": 1, "content_type": 14, "object_id": "6e1a2152-3c8b-4ea3-8d6b-031e8a6503d0", "object_repr": "Response 6e1a2152-3c8b-4ea3-8d6b-031e8a6503d0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 176, "fields": {"action_time": "2024-06-25T17:21:29.249Z", "user": 1, "content_type": 14, "object_id": "687ee0e0-2666-4ef8-989e-1602024429e5", "object_repr": "Response 687ee0e0-2666-4ef8-989e-1602024429e5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 177, "fields": {"action_time": "2024-06-25T17:21:29.250Z", "user": 1, "content_type": 14, "object_id": "677e4063-bf25-47b0-bd1a-ddb4a7c8e8ca", "object_repr": "Response 677e4063-bf25-47b0-bd1a-ddb4a7c8e8ca (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 178, "fields": {"action_time": "2024-06-25T17:21:29.250Z", "user": 1, "content_type": 14, "object_id": "6774a138-95eb-4ee7-b187-6f573edd9153", "object_repr": "Response 6774a138-95eb-4ee7-b187-6f573edd9153 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 179, "fields": {"action_time": "2024-06-25T17:21:29.251Z", "user": 1, "content_type": 14, "object_id": "6710d547-7538-4de6-9c5a-ceb8c27d6a13", "object_repr": "Response 6710d547-7538-4de6-9c5a-ceb8c27d6a13 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 180, "fields": {"action_time": "2024-06-25T17:21:29.251Z", "user": 1, "content_type": 14, "object_id": "66e2032a-f64c-40b1-b649-c82e3faa3453", "object_repr": "Response 66e2032a-f64c-40b1-b649-c82e3faa3453 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 181, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "65dda732-a603-4325-ab00-5f17b4000fe7", "object_repr": "Response 65dda732-a603-4325-ab00-5f17b4000fe7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 182, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "6535d611-7b87-4131-91b9-da3500338da0", "object_repr": "Response 6535d611-7b87-4131-91b9-da3500338da0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 183, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "59db8bc6-0c43-4e6b-93ea-cd2493baafb4", "object_repr": "Response 59db8bc6-0c43-4e6b-93ea-cd2493baafb4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 184, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "566007f3-b6c3-4444-baa4-58760ebabba5", "object_repr": "Response 566007f3-b6c3-4444-baa4-58760ebabba5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 185, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "564d4b47-2f4b-487f-a8bc-bd24afac79e1", "object_repr": "Response 564d4b47-2f4b-487f-a8bc-bd24afac79e1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 186, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "4e8895af-8675-41d5-9451-d133c61bc411", "object_repr": "Response 4e8895af-8675-41d5-9451-d133c61bc411 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 187, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "4afd781b-e507-4d3c-83e1-382960227c50", "object_repr": "Response 4afd781b-e507-4d3c-83e1-382960227c50 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 188, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "4864b1e3-f3aa-4d92-b29d-63452f18a2bd", "object_repr": "Response 4864b1e3-f3aa-4d92-b29d-63452f18a2bd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 189, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "43e69429-b327-41b6-8dbb-6bc0a8892971", "object_repr": "Response 43e69429-b327-41b6-8dbb-6bc0a8892971 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 190, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "42397e66-a2b5-4002-a45b-f993cd88f2a5", "object_repr": "Response 42397e66-a2b5-4002-a45b-f993cd88f2a5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 191, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "40d61bb3-ad38-431b-a114-0674ebadf154", "object_repr": "Response 40d61bb3-ad38-431b-a114-0674ebadf154 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 192, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "3d6c1b80-5b7d-4c46-b793-058528a0cf97", "object_repr": "Response 3d6c1b80-5b7d-4c46-b793-058528a0cf97 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 193, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "370aa354-2202-4dfd-b4c6-0b9f70afe2b7", "object_repr": "Response 370aa354-2202-4dfd-b4c6-0b9f70afe2b7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 194, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "3681ab92-9b74-4c9d-adf4-2ade229e6846", "object_repr": "Response 3681ab92-9b74-4c9d-adf4-2ade229e6846 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 195, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "2daab1b8-6bb1-402a-a544-ed5f89ec95b8", "object_repr": "Response 2daab1b8-6bb1-402a-a544-ed5f89ec95b8 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 196, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "280fa79e-2647-40f0-9d8a-fc810096cf5a", "object_repr": "Response 280fa79e-2647-40f0-9d8a-fc810096cf5a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 197, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "24e576d1-7c0e-45b8-bd8a-f5923b1f2132", "object_repr": "Response 24e576d1-7c0e-45b8-bd8a-f5923b1f2132 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 198, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "2125f83a-5d48-4634-b499-02e8ed4042cf", "object_repr": "Response 2125f83a-5d48-4634-b499-02e8ed4042cf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 199, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "20ead559-7959-4ed9-83f0-09dd89bfcfe4", "object_repr": "Response 20ead559-7959-4ed9-83f0-09dd89bfcfe4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 200, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "1e339b59-a5d8-4a17-9175-82263de0a1c6", "object_repr": "Response 1e339b59-a5d8-4a17-9175-82263de0a1c6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 201, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "180b0e1f-92c8-41e1-9693-015a366c8f75", "object_repr": "Response 180b0e1f-92c8-41e1-9693-015a366c8f75 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 202, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "1267e3f9-4d0a-40f6-89ee-bd3fb2c69570", "object_repr": "Response 1267e3f9-4d0a-40f6-89ee-bd3fb2c69570 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 203, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "115a29e8-96d8-4760-bf30-85fbbaa7d5e3", "object_repr": "Response 115a29e8-96d8-4760-bf30-85fbbaa7d5e3 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 204, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "0e68f70b-e245-4617-9a31-da7a46714fc7", "object_repr": "Response 0e68f70b-e245-4617-9a31-da7a46714fc7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 205, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "0af2c42c-aad1-4ccf-bc46-794f16a13569", "object_repr": "Response 0af2c42c-aad1-4ccf-bc46-794f16a13569 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 206, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "0a6dfea5-3958-480d-ac9d-1322998a2c01", "object_repr": "Response 0a6dfea5-3958-480d-ac9d-1322998a2c01 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 207, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "095751b9-4178-4139-b3d0-6f3d7a9724ec", "object_repr": "Response 095751b9-4178-4139-b3d0-6f3d7a9724ec (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 208, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "08e2e978-4466-4fbd-ac27-a7a9a7e223e4", "object_repr": "Response 08e2e978-4466-4fbd-ac27-a7a9a7e223e4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 209, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "0893bb78-931f-47ae-9c1c-592834ba3505", "object_repr": "Response 0893bb78-931f-47ae-9c1c-592834ba3505 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 210, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "06a4468e-328a-45f5-b0aa-71fb87376e50", "object_repr": "Response 06a4468e-328a-45f5-b0aa-71fb87376e50 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 211, "fields": {"action_time": "2024-06-25T17:21:29.261Z", "user": 1, "content_type": 14, "object_id": "0561cd3a-bfad-4ffa-aacd-743c9afd25f4", "object_repr": "Response 0561cd3a-bfad-4ffa-aacd-743c9afd25f4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 212, "fields": {"action_time": "2024-06-25T17:21:29.261Z", "user": 1, "content_type": 14, "object_id": "0094628c-f5b2-4d27-8400-d255dbbee1c0", "object_repr": "Response 0094628c-f5b2-4d27-8400-d255dbbee1c0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 213, "fields": {"action_time": "2024-06-26T05:12:11.353Z", "user": 1, "content_type": 14, "object_id": "f445ad60-f3b6-44c7-bd6d-446f5c215acf", "object_repr": "Response f445ad60-f3b6-44c7-bd6d-446f5c215acf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 214, "fields": {"action_time": "2024-06-26T05:12:11.357Z", "user": 1, "content_type": 14, "object_id": "efcd9127-9a24-476a-af00-f828eb76b941", "object_repr": "Response efcd9127-9a24-476a-af00-f828eb76b941 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 215, "fields": {"action_time": "2024-06-26T05:12:11.359Z", "user": 1, "content_type": 14, "object_id": "e16d9a8b-a621-48ca-a599-906604664ebe", "object_repr": "Response e16d9a8b-a621-48ca-a599-906604664ebe (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 216, "fields": {"action_time": "2024-06-26T05:12:11.359Z", "user": 1, "content_type": 14, "object_id": "e0509355-0193-4fbd-bf4c-188dc6605025", "object_repr": "Response e0509355-0193-4fbd-bf4c-188dc6605025 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 217, "fields": {"action_time": "2024-06-26T05:12:11.360Z", "user": 1, "content_type": 14, "object_id": "d7577a6f-326b-4416-a557-e9f7df686308", "object_repr": "Response d7577a6f-326b-4416-a557-e9f7df686308 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 218, "fields": {"action_time": "2024-06-26T05:12:11.361Z", "user": 1, "content_type": 14, "object_id": "bf085e8e-a06d-4137-a9f9-2001bdcb0fa1", "object_repr": "Response bf085e8e-a06d-4137-a9f9-2001bdcb0fa1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 219, "fields": {"action_time": "2024-06-26T05:12:11.362Z", "user": 1, "content_type": 14, "object_id": "a2cfa096-0fd2-45e2-a793-bed7625c9fa6", "object_repr": "Response a2cfa096-0fd2-45e2-a793-bed7625c9fa6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 220, "fields": {"action_time": "2024-06-26T05:12:11.363Z", "user": 1, "content_type": 14, "object_id": "9a0dd6c1-cb44-4232-af99-e414a5f669b8", "object_repr": "Response 9a0dd6c1-cb44-4232-af99-e414a5f669b8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 221, "fields": {"action_time": "2024-06-26T05:12:11.364Z", "user": 1, "content_type": 14, "object_id": "9156fcba-752f-4579-8aea-afb78bae19f0", "object_repr": "Response 9156fcba-752f-4579-8aea-afb78bae19f0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 222, "fields": {"action_time": "2024-06-26T05:12:11.365Z", "user": 1, "content_type": 14, "object_id": "85cbf186-cd54-4dac-a9c4-b133ebd833fd", "object_repr": "Response 85cbf186-cd54-4dac-a9c4-b133ebd833fd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 223, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "75cf9331-c130-401d-a339-55204a3aba88", "object_repr": "Response 75cf9331-c130-401d-a339-55204a3aba88 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 224, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "708aec38-c188-497f-8a5a-47cd8978fef8", "object_repr": "Response 708aec38-c188-497f-8a5a-47cd8978fef8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 225, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "5a88dfa0-16fb-48ca-85ba-678517f0a9c3", "object_repr": "Response 5a88dfa0-16fb-48ca-85ba-678517f0a9c3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 226, "fields": {"action_time": "2024-06-26T05:12:11.367Z", "user": 1, "content_type": 14, "object_id": "401c425f-e9f5-4048-b4cd-0feb67fc1f55", "object_repr": "Response 401c425f-e9f5-4048-b4cd-0feb67fc1f55 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 227, "fields": {"action_time": "2024-06-26T05:12:11.367Z", "user": 1, "content_type": 14, "object_id": "33d98c45-0df6-442a-b993-33b9d46e12a1", "object_repr": "Response 33d98c45-0df6-442a-b993-33b9d46e12a1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 228, "fields": {"action_time": "2024-06-26T05:12:11.369Z", "user": 1, "content_type": 14, "object_id": "2f287fe1-2069-4d87-bb4d-063e5cdc24c7", "object_repr": "Response 2f287fe1-2069-4d87-bb4d-063e5cdc24c7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 229, "fields": {"action_time": "2024-06-26T05:52:33.517Z", "user": 1, "content_type": 13, "object_id": "21", "object_repr": "Does this work?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 230, "fields": {"action_time": "2024-06-26T06:08:17.343Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 231, "fields": {"action_time": "2024-06-26T06:11:05.462Z", "user": 1, "content_type": 13, "object_id": "12", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 232, "fields": {"action_time": "2024-06-26T06:11:54.049Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 233, "fields": {"action_time": "2024-06-26T06:12:27.912Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 234, "fields": {"action_time": "2024-06-26T06:12:39.377Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 235, "fields": {"action_time": "2024-06-26T06:26:41.410Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 236, "fields": {"action_time": "2024-06-26T06:26:51.889Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 237, "fields": {"action_time": "2024-06-26T06:27:05.715Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 238, "fields": {"action_time": "2024-06-26T06:27:15.620Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 239, "fields": {"action_time": "2024-06-26T06:27:27.214Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 240, "fields": {"action_time": "2024-06-26T06:27:40.706Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 241, "fields": {"action_time": "2024-06-26T06:27:51.156Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 242, "fields": {"action_time": "2024-06-26T06:28:00.838Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 243, "fields": {"action_time": "2024-06-26T06:28:09.476Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 244, "fields": {"action_time": "2024-06-26T06:28:18.219Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 245, "fields": {"action_time": "2024-06-26T06:28:29.201Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 246, "fields": {"action_time": "2024-06-26T06:32:15.982Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Civilian NL", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the MapView location\", \"Map service specific options\"]}}]"}}, {"model": "admin.logentry", "pk": 247, "fields": {"action_time": "2024-06-26T06:33:02.475Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 248, "fields": {"action_time": "2024-06-26T06:33:26.892Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 249, "fields": {"action_time": "2024-06-26T06:34:40.458Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Civilian NL", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 250, "fields": {"action_time": "2024-06-26T06:36:29.116Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 251, "fields": {"action_time": "2024-06-26T06:41:48.114Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 252, "fields": {"action_time": "2024-06-26T14:44:58.797Z", "user": 1, "content_type": 15, "object_id": "40", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 253, "fields": {"action_time": "2024-06-26T14:44:58.802Z", "user": 1, "content_type": 15, "object_id": "39", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 254, "fields": {"action_time": "2024-06-26T14:44:58.802Z", "user": 1, "content_type": 15, "object_id": "38", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 255, "fields": {"action_time": "2024-06-26T14:44:58.803Z", "user": 1, "content_type": 15, "object_id": "37", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 256, "fields": {"action_time": "2024-06-26T14:44:58.803Z", "user": 1, "content_type": 15, "object_id": "36", "object_repr": "Response 44b901bb-07b9-4bfa-b72b-554b8d2f803d:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 257, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "35", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 258, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "34", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 259, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "33", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 260, "fields": {"action_time": "2024-06-26T15:02:50.907Z", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Demo 2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 261, "fields": {"action_time": "2024-06-26T15:05:19.935Z", "user": 1, "content_type": 10, "object_id": "104", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 262, "fields": {"action_time": "2024-06-26T15:05:19.938Z", "user": 1, "content_type": 10, "object_id": "103", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 263, "fields": {"action_time": "2024-06-26T15:05:19.939Z", "user": 1, "content_type": 10, "object_id": "102", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 264, "fields": {"action_time": "2024-06-26T15:05:19.939Z", "user": 1, "content_type": 10, "object_id": "101", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 265, "fields": {"action_time": "2024-06-26T15:05:19.940Z", "user": 1, "content_type": 10, "object_id": "100", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 266, "fields": {"action_time": "2024-06-26T15:05:19.941Z", "user": 1, "content_type": 10, "object_id": "99", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 267, "fields": {"action_time": "2024-06-26T15:05:19.941Z", "user": 1, "content_type": 10, "object_id": "98", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 268, "fields": {"action_time": "2024-06-26T15:05:19.942Z", "user": 1, "content_type": 10, "object_id": "97", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 269, "fields": {"action_time": "2024-06-26T15:05:19.943Z", "user": 1, "content_type": 10, "object_id": "96", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 270, "fields": {"action_time": "2024-06-26T15:05:19.943Z", "user": 1, "content_type": 10, "object_id": "95", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 271, "fields": {"action_time": "2024-06-26T15:05:19.944Z", "user": 1, "content_type": 10, "object_id": "94", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 272, "fields": {"action_time": "2024-06-26T15:05:19.944Z", "user": 1, "content_type": 10, "object_id": "93", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 273, "fields": {"action_time": "2024-06-26T15:05:19.945Z", "user": 1, "content_type": 10, "object_id": "92", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 274, "fields": {"action_time": "2024-06-26T15:05:19.945Z", "user": 1, "content_type": 10, "object_id": "91", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 275, "fields": {"action_time": "2024-06-26T15:05:19.946Z", "user": 1, "content_type": 10, "object_id": "90", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 276, "fields": {"action_time": "2024-06-26T15:05:19.947Z", "user": 1, "content_type": 10, "object_id": "89", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 277, "fields": {"action_time": "2024-06-26T15:05:19.948Z", "user": 1, "content_type": 10, "object_id": "88", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 278, "fields": {"action_time": "2024-06-26T15:05:19.948Z", "user": 1, "content_type": 10, "object_id": "87", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 279, "fields": {"action_time": "2024-06-26T15:05:19.950Z", "user": 1, "content_type": 10, "object_id": "86", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 280, "fields": {"action_time": "2024-06-26T15:05:19.950Z", "user": 1, "content_type": 10, "object_id": "85", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 281, "fields": {"action_time": "2024-06-26T15:05:19.951Z", "user": 1, "content_type": 10, "object_id": "84", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 282, "fields": {"action_time": "2024-06-26T15:05:19.951Z", "user": 1, "content_type": 10, "object_id": "83", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 283, "fields": {"action_time": "2024-06-26T15:05:19.952Z", "user": 1, "content_type": 10, "object_id": "82", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 284, "fields": {"action_time": "2024-06-26T15:05:19.952Z", "user": 1, "content_type": 10, "object_id": "81", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 285, "fields": {"action_time": "2024-06-26T15:05:19.953Z", "user": 1, "content_type": 10, "object_id": "80", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 286, "fields": {"action_time": "2024-06-26T15:05:19.953Z", "user": 1, "content_type": 10, "object_id": "79", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 287, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "78", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 288, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "77", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 289, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "76", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 290, "fields": {"action_time": "2024-06-26T15:05:19.955Z", "user": 1, "content_type": 10, "object_id": "75", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 291, "fields": {"action_time": "2024-06-26T15:05:19.955Z", "user": 1, "content_type": 10, "object_id": "74", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2024-06-26T15:05:19.956Z", "user": 1, "content_type": 10, "object_id": "73", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2024-06-26T15:05:19.957Z", "user": 1, "content_type": 10, "object_id": "72", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 294, "fields": {"action_time": "2024-06-26T15:05:19.957Z", "user": 1, "content_type": 10, "object_id": "71", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 295, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "70", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 296, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "69", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 297, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "68", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 298, "fields": {"action_time": "2024-06-26T15:05:19.959Z", "user": 1, "content_type": 10, "object_id": "67", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 299, "fields": {"action_time": "2024-06-26T15:05:19.959Z", "user": 1, "content_type": 10, "object_id": "66", "object_repr": "bb17d6d7-1323-43e2-978c-2caa77b0e824", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 300, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "65", "object_repr": "a6218c2a-8442-4935-a0b4-fea4f1c9a63e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 301, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "64", "object_repr": "03b8955b-4e0b-4e84-a720-981929cdac5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 302, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "63", "object_repr": "c8a52d5d-4bfe-4d2b-950a-fe34b38d3ae9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 303, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "62", "object_repr": "7b5dd311-065c-44ff-9c9f-9fc91c91991f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 304, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "61", "object_repr": "e961efff-9c0a-4707-a965-0cbb6d875e81", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 305, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "60", "object_repr": "14badb36-7466-4397-95eb-cd66da8ee601", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 306, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "59", "object_repr": "a4a19d47-82aa-4401-9357-27f1171adbf2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 307, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "58", "object_repr": "7094066a-59ca-4282-8dbf-d2aedfb12563", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 308, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "57", "object_repr": "797da630-1702-4b18-9c00-eaf09a0f3311", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 309, "fields": {"action_time": "2024-06-26T15:05:19.963Z", "user": 1, "content_type": 10, "object_id": "56", "object_repr": "8f54748f-2ca9-449d-b481-c58009b42cfe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 310, "fields": {"action_time": "2024-06-26T15:05:19.964Z", "user": 1, "content_type": 10, "object_id": "55", "object_repr": "6fd27454-8847-4e90-9da5-0048bdf5ec0f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 311, "fields": {"action_time": "2024-06-26T15:05:19.964Z", "user": 1, "content_type": 10, "object_id": "54", "object_repr": "7aa9a336-35b6-4b0a-bedf-a1077f96cc1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 312, "fields": {"action_time": "2024-06-26T15:05:19.965Z", "user": 1, "content_type": 10, "object_id": "53", "object_repr": "f7c1783c-ddfc-4278-8acf-025f42284756", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 313, "fields": {"action_time": "2024-06-26T15:05:19.966Z", "user": 1, "content_type": 10, "object_id": "52", "object_repr": "eaed28c8-0fd8-4557-9efb-8c21f749945f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 314, "fields": {"action_time": "2024-06-26T15:05:19.966Z", "user": 1, "content_type": 10, "object_id": "51", "object_repr": "f4020528-a6ef-43e0-a4b9-8b2b464c892d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 315, "fields": {"action_time": "2024-06-26T15:05:19.967Z", "user": 1, "content_type": 10, "object_id": "50", "object_repr": "513684d5-65cb-4692-92a6-cfa1061bb7fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 316, "fields": {"action_time": "2024-06-26T15:05:19.967Z", "user": 1, "content_type": 10, "object_id": "49", "object_repr": "28679261-8de2-46e6-bf27-a3f0116629fd", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 317, "fields": {"action_time": "2024-06-26T15:05:19.968Z", "user": 1, "content_type": 10, "object_id": "48", "object_repr": "83c53f31-16e2-4816-b937-76bd0910d383", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 318, "fields": {"action_time": "2024-06-26T15:05:19.968Z", "user": 1, "content_type": 10, "object_id": "47", "object_repr": "f5ff020e-f627-4110-a7d9-8f83e9c7472a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 319, "fields": {"action_time": "2024-06-26T15:05:19.969Z", "user": 1, "content_type": 10, "object_id": "46", "object_repr": "2a7dc336-2612-4704-80c4-efda4776cdbb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 320, "fields": {"action_time": "2024-06-26T15:05:19.969Z", "user": 1, "content_type": 10, "object_id": "45", "object_repr": "0a951213-ff10-4563-8202-5b7576b3d056", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 321, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "44", "object_repr": "36fb92ad-16fc-4467-a1e2-67878582f8f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 322, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "43", "object_repr": "d36fcfd6-9a8a-4d73-b266-5d447f266f1c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 323, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "42", "object_repr": "4cf2db77-65fd-4973-afda-b7348b88999c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 324, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "41", "object_repr": "e18769b7-1ae0-4340-bb1a-1bbc55df227e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 325, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "40", "object_repr": "5b1304e4-c5bc-40ed-9f41-7f46c5e2a589", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 326, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "39", "object_repr": "d1f59705-dbc9-4350-8e2b-ef05fcf0d976", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 327, "fields": {"action_time": "2024-06-26T15:05:19.972Z", "user": 1, "content_type": 10, "object_id": "38", "object_repr": "48a7c304-2c14-4fd3-899b-e7e22359edc6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 328, "fields": {"action_time": "2024-06-26T15:05:19.972Z", "user": 1, "content_type": 10, "object_id": "37", "object_repr": "c4d75c41-55b3-4827-ab44-962d584c584e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 329, "fields": {"action_time": "2024-06-26T15:05:19.973Z", "user": 1, "content_type": 10, "object_id": "36", "object_repr": "401328f5-bba4-445c-b2b6-46c6c9a96ecf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 330, "fields": {"action_time": "2024-06-26T15:05:19.973Z", "user": 1, "content_type": 10, "object_id": "35", "object_repr": "a0142652-c721-408f-8a3c-9687375d6488", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 331, "fields": {"action_time": "2024-06-26T15:05:19.974Z", "user": 1, "content_type": 10, "object_id": "34", "object_repr": "02dc86e1-15d8-4800-b5b0-7f96560df549", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 332, "fields": {"action_time": "2024-06-26T15:05:19.974Z", "user": 1, "content_type": 10, "object_id": "33", "object_repr": "88c431ba-8ec7-4c57-9627-27bcec807932", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 333, "fields": {"action_time": "2024-06-26T15:05:19.975Z", "user": 1, "content_type": 10, "object_id": "32", "object_repr": "efd98c1d-6da8-4c86-938c-029250727b82", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 334, "fields": {"action_time": "2024-06-26T15:05:19.975Z", "user": 1, "content_type": 10, "object_id": "31", "object_repr": "e47f9f47-e79d-4aae-9297-9476d90b81bc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 335, "fields": {"action_time": "2024-06-26T15:05:19.976Z", "user": 1, "content_type": 10, "object_id": "30", "object_repr": "98a13e0f-191b-4961-ab4a-0cb7e1d24f6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 336, "fields": {"action_time": "2024-06-26T15:05:19.976Z", "user": 1, "content_type": 10, "object_id": "29", "object_repr": "e2b508cf-e889-45a8-90a3-6063ca1cc294", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 337, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "28", "object_repr": "f09bb4fe-02c9-42f4-b2a3-1ee2b6b526ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 338, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "27", "object_repr": "7a6b9e61-f24c-4905-8abe-6ff8c632f6fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 339, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "26", "object_repr": "3be1f8c2-d38d-45c0-99db-5ca4729f9b8a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 340, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "25", "object_repr": "94d96bbc-39cb-4bb8-b881-29edf21f5e18", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 341, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "24", "object_repr": "f754b89a-ab06-44c6-a19a-c417c33775b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 342, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "23", "object_repr": "756a3d00-3fa0-44a6-9fa9-bdc108cec508", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 343, "fields": {"action_time": "2024-06-26T15:05:19.979Z", "user": 1, "content_type": 10, "object_id": "22", "object_repr": "dd78f51e-5275-4618-a05b-245854ac60cb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 344, "fields": {"action_time": "2024-06-26T15:05:19.979Z", "user": 1, "content_type": 10, "object_id": "21", "object_repr": "b963afc4-8803-4a8c-a87b-33f9cf8104e3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 345, "fields": {"action_time": "2024-06-26T15:05:19.980Z", "user": 1, "content_type": 10, "object_id": "19", "object_repr": "d6cd9915-ce27-4ef6-8bdc-8990c7e441a3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 346, "fields": {"action_time": "2024-06-26T15:05:37.056Z", "user": 1, "content_type": 15, "object_id": "44", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 347, "fields": {"action_time": "2024-06-26T15:05:37.059Z", "user": 1, "content_type": 15, "object_id": "43", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 348, "fields": {"action_time": "2024-06-26T15:05:37.060Z", "user": 1, "content_type": 15, "object_id": "42", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 349, "fields": {"action_time": "2024-06-26T15:05:37.061Z", "user": 1, "content_type": 15, "object_id": "41", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 350, "fields": {"action_time": "2024-06-26T15:07:29.487Z", "user": 1, "content_type": 11, "object_id": "84", "object_repr": "PointFeature object (84)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 351, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "83", "object_repr": "PointFeature object (83)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 352, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "82", "object_repr": "PointFeature object (82)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 353, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "81", "object_repr": "PointFeature object (81)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 354, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "80", "object_repr": "PointFeature object (80)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 355, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "79", "object_repr": "PointFeature object (79)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 356, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "78", "object_repr": "PointFeature object (78)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 357, "fields": {"action_time": "2024-06-26T15:07:29.492Z", "user": 1, "content_type": 11, "object_id": "77", "object_repr": "PointFeature object (77)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 358, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "76", "object_repr": "PointFeature object (76)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 359, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "75", "object_repr": "PointFeature object (75)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 360, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "74", "object_repr": "PointFeature object (74)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 361, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "73", "object_repr": "PointFeature object (73)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 362, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "72", "object_repr": "PointFeature object (72)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 363, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "71", "object_repr": "PointFeature object (71)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 364, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "70", "object_repr": "PointFeature object (70)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 365, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "69", "object_repr": "PointFeature object (69)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 366, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "68", "object_repr": "PointFeature object (68)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 367, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "67", "object_repr": "PointFeature object (67)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 368, "fields": {"action_time": "2024-06-26T15:07:29.496Z", "user": 1, "content_type": 11, "object_id": "66", "object_repr": "PointFeature object (66)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 369, "fields": {"action_time": "2024-06-26T15:07:29.497Z", "user": 1, "content_type": 11, "object_id": "65", "object_repr": "PointFeature object (65)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 370, "fields": {"action_time": "2024-06-26T15:07:29.497Z", "user": 1, "content_type": 11, "object_id": "64", "object_repr": "PointFeature object (64)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 371, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "63", "object_repr": "PointFeature object (63)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 372, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "62", "object_repr": "PointFeature object (62)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 373, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "61", "object_repr": "PointFeature object (61)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 374, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "60", "object_repr": "PointFeature object (60)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 375, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "59", "object_repr": "PointFeature object (59)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 376, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "58", "object_repr": "PointFeature object (58)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 377, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "57", "object_repr": "PointFeature object (57)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 378, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "56", "object_repr": "PointFeature object (56)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 379, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "55", "object_repr": "PointFeature object (55)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 380, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "54", "object_repr": "PointFeature object (54)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 381, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "53", "object_repr": "PointFeature object (53)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 382, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "52", "object_repr": "PointFeature object (52)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 383, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "51", "object_repr": "PointFeature object (51)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 384, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "50", "object_repr": "PointFeature object (50)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 385, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "49", "object_repr": "PointFeature object (49)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 386, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "48", "object_repr": "PointFeature object (48)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 387, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "47", "object_repr": "PointFeature object (47)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 388, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "46", "object_repr": "PointFeature object (46)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 389, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "45", "object_repr": "PointFeature object (45)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 390, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "44", "object_repr": "PointFeature object (44)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 391, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "43", "object_repr": "PointFeature object (43)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 392, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "42", "object_repr": "PointFeature object (42)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 393, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "41", "object_repr": "PointFeature object (41)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 394, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "40", "object_repr": "PointFeature object (40)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 395, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "39", "object_repr": "PointFeature object (39)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 396, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "38", "object_repr": "PointFeature object (38)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 397, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "37", "object_repr": "PointFeature object (37)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 398, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "36", "object_repr": "PointFeature object (36)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 399, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "35", "object_repr": "PointFeature object (35)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 400, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "34", "object_repr": "PointFeature object (34)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 401, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "33", "object_repr": "PointFeature object (33)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 402, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "32", "object_repr": "PointFeature object (32)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 403, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "31", "object_repr": "PointFeature object (31)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 404, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "30", "object_repr": "PointFeature object (30)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 405, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "29", "object_repr": "PointFeature object (29)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 406, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "28", "object_repr": "PointFeature object (28)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 407, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "27", "object_repr": "PointFeature object (27)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 408, "fields": {"action_time": "2024-06-26T15:07:29.509Z", "user": 1, "content_type": 11, "object_id": "26", "object_repr": "PointFeature object (26)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 409, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "25", "object_repr": "PointFeature object (25)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 410, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "24", "object_repr": "PointFeature object (24)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 411, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "23", "object_repr": "PointFeature object (23)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 412, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "22", "object_repr": "PointFeature object (22)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 413, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "21", "object_repr": "PointFeature object (21)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 414, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "20", "object_repr": "PointFeature object (20)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 415, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "19", "object_repr": "PointFeature object (19)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 416, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "18", "object_repr": "PointFeature object (18)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 417, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "17", "object_repr": "PointFeature object (17)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 418, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "16", "object_repr": "PointFeature object (16)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 419, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "15", "object_repr": "PointFeature object (15)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 420, "fields": {"action_time": "2024-06-26T15:07:29.513Z", "user": 1, "content_type": 11, "object_id": "11", "object_repr": "PointFeature object (11)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2024-06-26T15:07:29.513Z", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "PointFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2024-06-26T15:07:37.570Z", "user": 1, "content_type": 12, "object_id": "2", "object_repr": "PolygonFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2024-06-26T15:07:37.571Z", "user": 1, "content_type": 12, "object_id": "1", "object_repr": "PolygonFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2024-06-26T15:08:16.112Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Ppular Places", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2024-06-26T15:08:40.582Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Popular Places", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 426, "fields": {"action_time": "2024-06-26T15:13:27.831Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 427, "fields": {"action_time": "2024-06-26T15:13:34.290Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 428, "fields": {"action_time": "2024-06-26T15:13:50.944Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 429, "fields": {"action_time": "2024-06-26T15:14:02.580Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 430, "fields": {"action_time": "2024-06-26T15:19:45.096Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 431, "fields": {"action_time": "2024-06-26T16:55:12.087Z", "user": 1, "content_type": 14, "object_id": "fd0de839-bdef-4821-9218-ccc78d1a92ef", "object_repr": "Response fd0de839-bdef-4821-9218-ccc78d1a92ef (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 432, "fields": {"action_time": "2024-06-26T16:55:12.091Z", "user": 1, "content_type": 14, "object_id": "f8a0eebf-b710-48fa-84ac-57184c96a5b8", "object_repr": "Response f8a0eebf-b710-48fa-84ac-57184c96a5b8 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 433, "fields": {"action_time": "2024-06-26T16:55:12.092Z", "user": 1, "content_type": 14, "object_id": "f277fe69-b2aa-4087-b56d-6588f14a1587", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 434, "fields": {"action_time": "2024-06-26T16:55:12.093Z", "user": 1, "content_type": 14, "object_id": "d45dfdbc-5ff1-4902-841e-301562ed0bf9", "object_repr": "Response d45dfdbc-5ff1-4902-841e-301562ed0bf9 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 435, "fields": {"action_time": "2024-06-26T16:55:12.094Z", "user": 1, "content_type": 14, "object_id": "c6b44c95-3f26-4412-8108-0a8acd50a614", "object_repr": "Response c6b44c95-3f26-4412-8108-0a8acd50a614 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 436, "fields": {"action_time": "2024-06-26T16:55:12.095Z", "user": 1, "content_type": 14, "object_id": "c39ace1f-3196-4a6e-b5e6-39d6e9b00b63", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 437, "fields": {"action_time": "2024-06-26T16:55:12.095Z", "user": 1, "content_type": 14, "object_id": "aa9a7d67-d649-41d2-9cbb-78fc08bb5e2f", "object_repr": "Response aa9a7d67-d649-41d2-9cbb-78fc08bb5e2f (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 438, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "a19528d7-393a-449b-a376-65df86f9b929", "object_repr": "Response a19528d7-393a-449b-a376-65df86f9b929 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 439, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "a1001648-f132-40b7-86d2-389109311730", "object_repr": "Response a1001648-f132-40b7-86d2-389109311730 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 440, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "9f5c503c-c147-4124-b78e-5e3590f20a20", "object_repr": "Response 9f5c503c-c147-4124-b78e-5e3590f20a20 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 441, "fields": {"action_time": "2024-06-26T16:55:12.097Z", "user": 1, "content_type": 14, "object_id": "7b9b6f7c-9453-4422-b770-a7d7ef401c59", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 442, "fields": {"action_time": "2024-06-26T16:55:12.097Z", "user": 1, "content_type": 14, "object_id": "78b13ba8-e26c-4859-8234-88603e9b5d55", "object_repr": "Response 78b13ba8-e26c-4859-8234-88603e9b5d55 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 443, "fields": {"action_time": "2024-06-26T16:55:12.098Z", "user": 1, "content_type": 14, "object_id": "759f2b03-2445-4646-9667-61e9cd575711", "object_repr": "Response 759f2b03-2445-4646-9667-61e9cd575711 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 444, "fields": {"action_time": "2024-06-26T16:55:12.098Z", "user": 1, "content_type": 14, "object_id": "65f5ef8c-468d-4913-b4c4-e10275116c59", "object_repr": "Response 65f5ef8c-468d-4913-b4c4-e10275116c59 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 445, "fields": {"action_time": "2024-06-26T16:55:12.099Z", "user": 1, "content_type": 14, "object_id": "5d22505f-a939-4de1-a003-3d980ef918ba", "object_repr": "Response 5d22505f-a939-4de1-a003-3d980ef918ba (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 446, "fields": {"action_time": "2024-06-26T16:55:12.100Z", "user": 1, "content_type": 14, "object_id": "5a115495-71ef-4b9f-b82d-afbde49430bd", "object_repr": "Response 5a115495-71ef-4b9f-b82d-afbde49430bd (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 447, "fields": {"action_time": "2024-06-26T16:55:12.100Z", "user": 1, "content_type": 14, "object_id": "4d8733c8-88a8-4368-a58c-a95518daec24", "object_repr": "Response 4d8733c8-88a8-4368-a58c-a95518daec24 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 448, "fields": {"action_time": "2024-06-26T16:55:12.101Z", "user": 1, "content_type": 14, "object_id": "44b901bb-07b9-4bfa-b72b-554b8d2f803d", "object_repr": "Response 44b901bb-07b9-4bfa-b72b-554b8d2f803d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 449, "fields": {"action_time": "2024-06-26T16:55:12.102Z", "user": 1, "content_type": 14, "object_id": "17e13e33-51ef-4d50-8c0d-683a2357e9a5", "object_repr": "Response 17e13e33-51ef-4d50-8c0d-683a2357e9a5 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 450, "fields": {"action_time": "2024-06-26T16:55:12.103Z", "user": 1, "content_type": 14, "object_id": "0dc054e4-5402-4944-a7e9-730aab902e8d", "object_repr": "Response 0dc054e4-5402-4944-a7e9-730aab902e8d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 451, "fields": {"action_time": "2024-06-26T17:00:55.263Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 452, "fields": {"action_time": "2024-06-26T17:01:52.287Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\", \"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 453, "fields": {"action_time": "2024-06-26T17:02:24.418Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\", \"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 454, "fields": {"action_time": "2024-06-26T17:03:05.996Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 455, "fields": {"action_time": "2024-06-26T17:15:18.414Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\"]}}]"}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2024-06-26T19:14:35.918Z", "user": 1, "content_type": 14, "object_id": "81ab81c0-efbc-431a-954f-32771e9d8306", "object_repr": "Response 81ab81c0-efbc-431a-954f-32771e9d8306 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2024-06-26T19:14:35.921Z", "user": 1, "content_type": 14, "object_id": "4f68cd55-de1f-462d-88e0-692b0b280a3d", "object_repr": "Response 4f68cd55-de1f-462d-88e0-692b0b280a3d (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 458, "fields": {"action_time": "2024-06-26T19:14:51.863Z", "user": 1, "content_type": 12, "object_id": "6", "object_repr": "PolygonFeature object (6)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 459, "fields": {"action_time": "2024-06-26T19:14:51.864Z", "user": 1, "content_type": 12, "object_id": "5", "object_repr": "PolygonFeature object (5)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 460, "fields": {"action_time": "2024-06-26T19:14:51.865Z", "user": 1, "content_type": 12, "object_id": "4", "object_repr": "PolygonFeature object (4)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 461, "fields": {"action_time": "2024-06-26T19:14:51.866Z", "user": 1, "content_type": 12, "object_id": "3", "object_repr": "PolygonFeature object (3)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 462, "fields": {"action_time": "2024-06-26T19:14:58.196Z", "user": 1, "content_type": 11, "object_id": "101", "object_repr": "PointFeature object (101)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 463, "fields": {"action_time": "2024-06-26T19:14:58.197Z", "user": 1, "content_type": 11, "object_id": "100", "object_repr": "PointFeature object (100)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 464, "fields": {"action_time": "2024-06-26T19:14:58.198Z", "user": 1, "content_type": 11, "object_id": "99", "object_repr": "PointFeature object (99)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 465, "fields": {"action_time": "2024-06-26T19:14:58.198Z", "user": 1, "content_type": 11, "object_id": "98", "object_repr": "PointFeature object (98)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 466, "fields": {"action_time": "2024-06-26T19:14:58.199Z", "user": 1, "content_type": 11, "object_id": "97", "object_repr": "PointFeature object (97)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 467, "fields": {"action_time": "2024-06-26T19:14:58.199Z", "user": 1, "content_type": 11, "object_id": "96", "object_repr": "PointFeature object (96)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 468, "fields": {"action_time": "2024-06-26T19:14:58.200Z", "user": 1, "content_type": 11, "object_id": "95", "object_repr": "PointFeature object (95)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 469, "fields": {"action_time": "2024-06-26T19:14:58.200Z", "user": 1, "content_type": 11, "object_id": "94", "object_repr": "PointFeature object (94)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 470, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "93", "object_repr": "PointFeature object (93)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 471, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "92", "object_repr": "PointFeature object (92)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 472, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "91", "object_repr": "PointFeature object (91)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "90", "object_repr": "PointFeature object (90)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "89", "object_repr": "PointFeature object (89)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 475, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "88", "object_repr": "PointFeature object (88)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 476, "fields": {"action_time": "2024-06-26T19:14:58.203Z", "user": 1, "content_type": 11, "object_id": "87", "object_repr": "PointFeature object (87)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 477, "fields": {"action_time": "2024-06-26T19:14:58.203Z", "user": 1, "content_type": 11, "object_id": "86", "object_repr": "PointFeature object (86)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 478, "fields": {"action_time": "2024-06-26T19:14:58.204Z", "user": 1, "content_type": 11, "object_id": "85", "object_repr": "PointFeature object (85)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 479, "fields": {"action_time": "2024-06-26T19:15:28.201Z", "user": 1, "content_type": 10, "object_id": "120", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2024-06-26T19:15:28.203Z", "user": 1, "content_type": 10, "object_id": "119", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2024-06-26T19:15:28.204Z", "user": 1, "content_type": 10, "object_id": "118", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2024-06-26T19:15:28.205Z", "user": 1, "content_type": 10, "object_id": "117", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2024-06-26T19:15:28.206Z", "user": 1, "content_type": 10, "object_id": "116", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2024-06-26T19:15:28.207Z", "user": 1, "content_type": 10, "object_id": "115", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2024-06-26T19:15:28.207Z", "user": 1, "content_type": 10, "object_id": "114", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2024-06-26T19:15:28.208Z", "user": 1, "content_type": 10, "object_id": "113", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2024-06-26T19:15:28.208Z", "user": 1, "content_type": 10, "object_id": "112", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2024-06-26T19:15:28.209Z", "user": 1, "content_type": 10, "object_id": "111", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2024-06-26T19:15:28.210Z", "user": 1, "content_type": 10, "object_id": "110", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2024-06-26T19:15:28.210Z", "user": 1, "content_type": 10, "object_id": "109", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2024-06-26T19:15:28.211Z", "user": 1, "content_type": 10, "object_id": "108", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2024-06-26T19:15:28.212Z", "user": 1, "content_type": 10, "object_id": "107", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2024-06-26T19:15:28.213Z", "user": 1, "content_type": 10, "object_id": "106", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2024-06-26T19:15:28.214Z", "user": 1, "content_type": 10, "object_id": "105", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2024-06-26T19:15:28.215Z", "user": 1, "content_type": 10, "object_id": "20", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2024-06-26T19:15:37.234Z", "user": 1, "content_type": 10, "object_id": "121", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2024-06-26T19:16:10.448Z", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "LineFeature object (6)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 498, "fields": {"action_time": "2024-06-26T19:16:10.450Z", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "LineFeature object (5)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 499, "fields": {"action_time": "2024-06-26T19:16:10.450Z", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "LineFeature object (4)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 500, "fields": {"action_time": "2024-06-26T19:16:10.451Z", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "LineFeature object (3)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 501, "fields": {"action_time": "2024-06-26T19:16:10.452Z", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "LineFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 502, "fields": {"action_time": "2024-06-26T19:16:10.452Z", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "LineFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 503, "fields": {"action_time": "2024-06-26T19:16:26.234Z", "user": 1, "content_type": 8, "object_id": "105", "object_repr": "ccc461df-0230-42e3-bbab-258e52da71b6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 504, "fields": {"action_time": "2024-06-26T19:16:26.236Z", "user": 1, "content_type": 8, "object_id": "104", "object_repr": "48ff5529-2e99-427a-ac43-817ca2792e3a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 505, "fields": {"action_time": "2024-06-26T19:16:26.236Z", "user": 1, "content_type": 8, "object_id": "103", "object_repr": "e28acf44-6d7d-4e36-878c-590f7fabc20e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 506, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "102", "object_repr": "188c84bc-6d92-4fde-b12b-792d3d57ed8e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 507, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "101", "object_repr": "1d70fefe-392d-444d-98f0-e18e7ee2af94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 508, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "100", "object_repr": "d8580041-b8a7-4dfa-be1f-31331efa063d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 509, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "99", "object_repr": "4c647157-a8d7-448d-8ec7-5891d83311bf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 510, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "98", "object_repr": "53444b0e-4229-4a66-9056-dafa410aa59f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 511, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "97", "object_repr": "383b3d97-79cf-47dd-89c5-aa02f1bf85be", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 512, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "96", "object_repr": "b3e4ec35-f11a-4ab1-8a94-64189e078c3f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 513, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "95", "object_repr": "52577855-1214-4fcc-92b1-cbb31051f574", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 514, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "94", "object_repr": "d5ac457e-5297-4574-af12-63d0031205f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 515, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "93", "object_repr": "694480d5-e78f-4f9f-aa87-d15d721fc4b9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 516, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "92", "object_repr": "fa035359-325c-4db5-a3cb-fc46102f76b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 517, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "91", "object_repr": "86d06221-b89f-41d2-aaf7-c26d96e5db78", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 518, "fields": {"action_time": "2024-06-26T19:16:26.241Z", "user": 1, "content_type": 8, "object_id": "90", "object_repr": "b5c79b96-84f9-47b7-af5f-5f4d8a1d699c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 519, "fields": {"action_time": "2024-06-26T19:16:26.241Z", "user": 1, "content_type": 8, "object_id": "89", "object_repr": "941805a2-0589-41b1-a413-903bc150ff3b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 520, "fields": {"action_time": "2024-06-26T19:16:26.242Z", "user": 1, "content_type": 8, "object_id": "88", "object_repr": "74cdcb0a-e92c-4574-bc94-38453599d813", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 521, "fields": {"action_time": "2024-06-26T19:16:26.242Z", "user": 1, "content_type": 8, "object_id": "87", "object_repr": "60b6e465-042e-4d4c-8a4b-3c0069101313", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 522, "fields": {"action_time": "2024-06-26T19:16:26.243Z", "user": 1, "content_type": 8, "object_id": "86", "object_repr": "e6df9f4d-ad2d-4fd4-93fc-18d4b1809dd6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 523, "fields": {"action_time": "2024-06-26T19:16:26.243Z", "user": 1, "content_type": 8, "object_id": "85", "object_repr": "93efc4cf-77c8-4e3c-b14a-171ab83e0741", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 524, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "84", "object_repr": "33dc9e5a-c91a-4b6a-87bd-8f3a757505b5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 525, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "83", "object_repr": "20a6d115-2064-4457-850c-4203dfa0364e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 526, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "82", "object_repr": "e4c5a29b-91d5-449f-815c-ff481a96a76e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 527, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "81", "object_repr": "5b985424-4a58-4e30-be25-6df36cdcc914", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 528, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "80", "object_repr": "e8ff4f93-8759-4647-8fd4-3be594169f5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 529, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "79", "object_repr": "0d1015d7-53f7-4105-b35a-a29be3c84171", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 530, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "78", "object_repr": "06f1c86b-dbcf-4314-93a4-1e195084009a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 531, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "77", "object_repr": "5ef11234-4ccd-4676-87de-5da1ca28d128", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 532, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "76", "object_repr": "7b48d11e-036a-49dc-86d5-18e22de15a7b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 533, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "75", "object_repr": "8d33612f-ee4e-4c1e-bd4c-5aefeab16eed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 534, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "74", "object_repr": "e7d1f6b4-a34e-4ce3-af28-aeaace993eea", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 535, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "73", "object_repr": "814a7151-1cff-4d00-b93f-9b41d9fcf5d1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 536, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "72", "object_repr": "5846fd7f-ddbd-431c-8457-e9e1313648c4", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 537, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "71", "object_repr": "17d14baf-550b-4854-ae4e-bd3a28a8b189", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 538, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "70", "object_repr": "dea17557-92f5-4ae3-86a5-2d8603ff11e5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 539, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "69", "object_repr": "cc8324d1-ad72-443b-8cc4-8d196d15e869", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 540, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "68", "object_repr": "9dc2572c-4d60-475d-b021-5507918963a1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 541, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "67", "object_repr": "9a96a80d-e919-4935-8043-3c39133091a6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 542, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "66", "object_repr": "53440af8-41fa-4b15-b95b-0bc62eacc012", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 543, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "65", "object_repr": "1b69ef9b-00da-4f76-8829-3ec214380268", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 544, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "64", "object_repr": "c63c4d9b-b370-4939-a8f5-6c262a10c2c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 545, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "63", "object_repr": "7373cec7-62a0-4901-a8e2-2d2fe05655b7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 546, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "62", "object_repr": "c036c19a-c709-45c2-aad1-ccf6c6ecf514", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 547, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "61", "object_repr": "cf1a442c-f58a-4297-964c-833b67f16bcc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 548, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "60", "object_repr": "62f0e97e-7955-49a6-9372-6feba7fadc43", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 549, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "59", "object_repr": "bcf8eb81-5db3-45c3-9624-ccbe7245c475", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 550, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "58", "object_repr": "4e1e2653-6ad8-4632-9474-00586c863e6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 551, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "57", "object_repr": "6e6bf1e0-0603-4a59-87ae-4f83b2e40d73", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 552, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "56", "object_repr": "36c517f1-8ea2-4b38-9a7b-669e58862ef6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 553, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "55", "object_repr": "dc6fc7db-8322-4f55-8b29-b9a52afd32fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 554, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "54", "object_repr": "7aab177c-1bbd-4fcd-bcb0-14fa535ee968", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 555, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "53", "object_repr": "40f5a9e0-6fcc-4e50-95be-f0ea8a502227", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 556, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "52", "object_repr": "f08d6c96-7430-4200-8635-91666f8b0295", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 557, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "51", "object_repr": "bb17d6d7-1323-43e2-978c-2caa77b0e824", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 558, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "50", "object_repr": "a6218c2a-8442-4935-a0b4-fea4f1c9a63e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 559, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "49", "object_repr": "03b8955b-4e0b-4e84-a720-981929cdac5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 560, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "48", "object_repr": "c8a52d5d-4bfe-4d2b-950a-fe34b38d3ae9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 561, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "47", "object_repr": "7b5dd311-065c-44ff-9c9f-9fc91c91991f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 562, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "46", "object_repr": "e961efff-9c0a-4707-a965-0cbb6d875e81", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 563, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "45", "object_repr": "a4a19d47-82aa-4401-9357-27f1171adbf2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 564, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "44", "object_repr": "7094066a-59ca-4282-8dbf-d2aedfb12563", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 565, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "43", "object_repr": "797da630-1702-4b18-9c00-eaf09a0f3311", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 566, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "42", "object_repr": "8f54748f-2ca9-449d-b481-c58009b42cfe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 567, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "41", "object_repr": "6fd27454-8847-4e90-9da5-0048bdf5ec0f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 568, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "40", "object_repr": "7aa9a336-35b6-4b0a-bedf-a1077f96cc1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 569, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "39", "object_repr": "f7c1783c-ddfc-4278-8acf-025f42284756", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 570, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "38", "object_repr": "eaed28c8-0fd8-4557-9efb-8c21f749945f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 571, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "37", "object_repr": "f4020528-a6ef-43e0-a4b9-8b2b464c892d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 572, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "36", "object_repr": "513684d5-65cb-4692-92a6-cfa1061bb7fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 573, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "35", "object_repr": "28679261-8de2-46e6-bf27-a3f0116629fd", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 574, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "34", "object_repr": "83c53f31-16e2-4816-b937-76bd0910d383", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 575, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "33", "object_repr": "f5ff020e-f627-4110-a7d9-8f83e9c7472a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 576, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "32", "object_repr": "2a7dc336-2612-4704-80c4-efda4776cdbb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "31", "object_repr": "0a951213-ff10-4563-8202-5b7576b3d056", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "30", "object_repr": "36fb92ad-16fc-4467-a1e2-67878582f8f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 579, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "29", "object_repr": "d36fcfd6-9a8a-4d73-b266-5d447f266f1c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 580, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "28", "object_repr": "4cf2db77-65fd-4973-afda-b7348b88999c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 581, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "27", "object_repr": "e18769b7-1ae0-4340-bb1a-1bbc55df227e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 582, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "26", "object_repr": "5b1304e4-c5bc-40ed-9f41-7f46c5e2a589", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 583, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "25", "object_repr": "d1f59705-dbc9-4350-8e2b-ef05fcf0d976", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 584, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "24", "object_repr": "48a7c304-2c14-4fd3-899b-e7e22359edc6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 585, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "23", "object_repr": "c4d75c41-55b3-4827-ab44-962d584c584e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 586, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "22", "object_repr": "401328f5-bba4-445c-b2b6-46c6c9a96ecf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 587, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "21", "object_repr": "a0142652-c721-408f-8a3c-9687375d6488", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 588, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "20", "object_repr": "02dc86e1-15d8-4800-b5b0-7f96560df549", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 589, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "19", "object_repr": "88c431ba-8ec7-4c57-9627-27bcec807932", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 590, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "18", "object_repr": "efd98c1d-6da8-4c86-938c-029250727b82", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 591, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "17", "object_repr": "e47f9f47-e79d-4aae-9297-9476d90b81bc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 592, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "16", "object_repr": "98a13e0f-191b-4961-ab4a-0cb7e1d24f6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 593, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "15", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 594, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "14", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 595, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "13", "object_repr": "f09bb4fe-02c9-42f4-b2a3-1ee2b6b526ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 596, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "12", "object_repr": "7a6b9e61-f24c-4905-8abe-6ff8c632f6fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 597, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "11", "object_repr": "3be1f8c2-d38d-45c0-99db-5ca4729f9b8a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 598, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "10", "object_repr": "94d96bbc-39cb-4bb8-b881-29edf21f5e18", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 599, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "9", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 600, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "8", "object_repr": "f754b89a-ab06-44c6-a19a-c417c33775b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 601, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "7", "object_repr": "756a3d00-3fa0-44a6-9fa9-bdc108cec508", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 602, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "6", "object_repr": "dd78f51e-5275-4618-a05b-245854ac60cb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 603, "fields": {"action_time": "2024-06-26T19:16:34.813Z", "user": 1, "content_type": 8, "object_id": "5", "object_repr": "b963afc4-8803-4a8c-a87b-33f9cf8104e3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 604, "fields": {"action_time": "2024-06-26T19:16:34.814Z", "user": 1, "content_type": 8, "object_id": "4", "object_repr": "fc264be6-e71b-40db-a2d4-0650df5eb7f9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 605, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "3", "object_repr": "90d5cd5f-0c83-47e8-92f4-d652980eae19", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 606, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "2", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 607, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "1", "object_repr": "popular places", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 608, "fields": {"action_time": "2024-06-26T19:17:48.343Z", "user": 1, "content_type": 13, "object_id": "21", "object_repr": "Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 609, "fields": {"action_time": "2024-06-26T19:36:50.659Z", "user": 1, "content_type": 14, "object_id": "21ad60df-997a-4e28-aaed-c1664751f1a9", "object_repr": "Response 21ad60df-997a-4e28-aaed-c1664751f1a9 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 610, "fields": {"action_time": "2024-06-26T19:36:58.846Z", "user": 1, "content_type": 12, "object_id": "7", "object_repr": "PolygonFeature object (7)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 611, "fields": {"action_time": "2024-06-26T19:37:08.030Z", "user": 1, "content_type": 11, "object_id": "103", "object_repr": "PointFeature object (103)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 612, "fields": {"action_time": "2024-06-26T19:37:08.031Z", "user": 1, "content_type": 11, "object_id": "102", "object_repr": "PointFeature object (102)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 613, "fields": {"action_time": "2024-06-26T19:37:20.692Z", "user": 1, "content_type": 10, "object_id": "123", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 614, "fields": {"action_time": "2024-06-26T19:37:20.694Z", "user": 1, "content_type": 10, "object_id": "122", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 615, "fields": {"action_time": "2024-06-26T19:37:36.730Z", "user": 1, "content_type": 9, "object_id": "7", "object_repr": "LineFeature object (7)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 616, "fields": {"action_time": "2024-06-26T19:37:44.659Z", "user": 1, "content_type": 8, "object_id": "107", "object_repr": "565b82ec-1394-4ed7-b9b5-9459f9ec0e1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 617, "fields": {"action_time": "2024-06-26T19:37:44.661Z", "user": 1, "content_type": 8, "object_id": "106", "object_repr": "91b00bb1-688a-45f7-aad3-b119717686ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 618, "fields": {"action_time": "2024-06-27T03:59:44.854Z", "user": 1, "content_type": 15, "object_id": "73", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 619, "fields": {"action_time": "2024-06-27T03:59:44.860Z", "user": 1, "content_type": 15, "object_id": "72", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 620, "fields": {"action_time": "2024-06-27T03:59:44.861Z", "user": 1, "content_type": 15, "object_id": "71", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 621, "fields": {"action_time": "2024-06-27T03:59:56.366Z", "user": 1, "content_type": 15, "object_id": "76", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 622, "fields": {"action_time": "2024-06-27T03:59:56.369Z", "user": 1, "content_type": 15, "object_id": "75", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 623, "fields": {"action_time": "2024-06-27T03:59:56.370Z", "user": 1, "content_type": 15, "object_id": "74", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 624, "fields": {"action_time": "2024-06-27T04:00:06.476Z", "user": 1, "content_type": 14, "object_id": "0d293642-9192-4b47-bb8f-1e388154ed52", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 625, "fields": {"action_time": "2024-06-27T04:00:19.495Z", "user": 1, "content_type": 11, "object_id": "118", "object_repr": "PointFeature object (118)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 626, "fields": {"action_time": "2024-06-27T04:00:19.496Z", "user": 1, "content_type": 11, "object_id": "117", "object_repr": "PointFeature object (117)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 627, "fields": {"action_time": "2024-06-27T04:00:19.497Z", "user": 1, "content_type": 11, "object_id": "116", "object_repr": "PointFeature object (116)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 628, "fields": {"action_time": "2024-06-27T04:00:19.498Z", "user": 1, "content_type": 11, "object_id": "115", "object_repr": "PointFeature object (115)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 629, "fields": {"action_time": "2024-06-27T04:00:19.498Z", "user": 1, "content_type": 11, "object_id": "114", "object_repr": "PointFeature object (114)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 630, "fields": {"action_time": "2024-06-27T04:00:19.499Z", "user": 1, "content_type": 11, "object_id": "113", "object_repr": "PointFeature object (113)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 631, "fields": {"action_time": "2024-06-27T04:00:19.499Z", "user": 1, "content_type": 11, "object_id": "112", "object_repr": "PointFeature object (112)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 632, "fields": {"action_time": "2024-06-27T04:00:19.500Z", "user": 1, "content_type": 11, "object_id": "111", "object_repr": "PointFeature object (111)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 633, "fields": {"action_time": "2024-06-27T04:00:19.501Z", "user": 1, "content_type": 11, "object_id": "110", "object_repr": "PointFeature object (110)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 634, "fields": {"action_time": "2024-06-27T04:00:19.501Z", "user": 1, "content_type": 11, "object_id": "109", "object_repr": "PointFeature object (109)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 635, "fields": {"action_time": "2024-06-27T04:00:19.502Z", "user": 1, "content_type": 11, "object_id": "108", "object_repr": "PointFeature object (108)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 636, "fields": {"action_time": "2024-06-27T04:00:19.502Z", "user": 1, "content_type": 11, "object_id": "107", "object_repr": "PointFeature object (107)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 637, "fields": {"action_time": "2024-06-27T04:00:19.503Z", "user": 1, "content_type": 11, "object_id": "106", "object_repr": "PointFeature object (106)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 638, "fields": {"action_time": "2024-06-27T04:00:19.503Z", "user": 1, "content_type": 11, "object_id": "105", "object_repr": "PointFeature object (105)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 639, "fields": {"action_time": "2024-06-27T04:00:19.504Z", "user": 1, "content_type": 11, "object_id": "104", "object_repr": "PointFeature object (104)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 640, "fields": {"action_time": "2024-06-27T04:00:42.396Z", "user": 1, "content_type": 9, "object_id": "8", "object_repr": "LineFeature object (8)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 641, "fields": {"action_time": "2024-06-27T04:00:56.554Z", "user": 1, "content_type": 12, "object_id": "8", "object_repr": "PolygonFeature object (8)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 642, "fields": {"action_time": "2024-06-27T04:01:07.627Z", "user": 1, "content_type": 8, "object_id": "122", "object_repr": "2a0b9175-cc5b-4910-a158-86756a5358bf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 643, "fields": {"action_time": "2024-06-27T04:01:07.628Z", "user": 1, "content_type": 8, "object_id": "121", "object_repr": "9f815455-90a2-43cf-809d-2b90c4be8836", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 644, "fields": {"action_time": "2024-06-27T04:01:07.629Z", "user": 1, "content_type": 8, "object_id": "120", "object_repr": "a300dea9-37e6-48df-a057-61f964bc7ebf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 645, "fields": {"action_time": "2024-06-27T04:01:07.630Z", "user": 1, "content_type": 8, "object_id": "119", "object_repr": "ebed8aca-63ea-4b4b-80ee-4f71fc47eab5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 646, "fields": {"action_time": "2024-06-27T04:01:07.631Z", "user": 1, "content_type": 8, "object_id": "118", "object_repr": "3d7c6c2e-831a-4543-aa63-cf03fdb6e134", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 647, "fields": {"action_time": "2024-06-27T04:01:07.632Z", "user": 1, "content_type": 8, "object_id": "117", "object_repr": "39cf4051-46c0-4a8e-b005-1d9bbab7fb39", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 648, "fields": {"action_time": "2024-06-27T04:01:07.632Z", "user": 1, "content_type": 8, "object_id": "116", "object_repr": "2565135a-29a8-40fe-85bb-719fa3ef2bde", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 649, "fields": {"action_time": "2024-06-27T04:01:07.633Z", "user": 1, "content_type": 8, "object_id": "115", "object_repr": "3d397a8b-354d-4d25-8d0a-6b3e77db5d4a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 650, "fields": {"action_time": "2024-06-27T04:01:07.634Z", "user": 1, "content_type": 8, "object_id": "114", "object_repr": "8dd6ad2b-ac67-4556-8cc1-507599fcb565", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 651, "fields": {"action_time": "2024-06-27T04:01:07.634Z", "user": 1, "content_type": 8, "object_id": "113", "object_repr": "6c3df0a2-c527-434d-a630-52482e64ec94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 652, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "112", "object_repr": "c98c8bae-45ec-4583-8aaf-25bea7ff64c8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 653, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "111", "object_repr": "a98ea240-9098-4378-ab38-afcb50825967", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 654, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "110", "object_repr": "bd9263e0-1543-4c31-9db3-e6e53dd3e798", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 655, "fields": {"action_time": "2024-06-27T04:01:07.636Z", "user": 1, "content_type": 8, "object_id": "109", "object_repr": "41a7f25b-5dd6-4433-8925-cf1a3b9bbaa1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 656, "fields": {"action_time": "2024-06-27T04:01:07.636Z", "user": 1, "content_type": 8, "object_id": "108", "object_repr": "2ff49d95-1c03-4e14-90ce-a639b8bc86ad", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 657, "fields": {"action_time": "2024-07-03T09:03:04.812Z", "user": 1, "content_type": 15, "object_id": "90", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Is there anything else you would like to say about your neighbourhood?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 658, "fields": {"action_time": "2024-07-03T09:03:04.815Z", "user": 1, "content_type": 15, "object_id": "89", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where waste/trash is a problem?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 659, "fields": {"action_time": "2024-07-03T09:03:04.816Z", "user": 1, "content_type": 15, "object_id": "88", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you see water on the ground after a heavy rain?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 660, "fields": {"action_time": "2024-07-03T09:03:04.816Z", "user": 1, "content_type": 15, "object_id": "87", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 661, "fields": {"action_time": "2024-07-03T09:03:04.817Z", "user": 1, "content_type": 15, "object_id": "86", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where you feel unsafe?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 662, "fields": {"action_time": "2024-07-03T09:03:04.818Z", "user": 1, "content_type": 15, "object_id": "85", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 663, "fields": {"action_time": "2024-07-03T09:03:04.818Z", "user": 1, "content_type": 15, "object_id": "84", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 664, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "83", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 665, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "82", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 666, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "81", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is the closest green area to your house?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 667, "fields": {"action_time": "2024-07-03T09:03:04.820Z", "user": 1, "content_type": 15, "object_id": "80", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels,", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 668, "fields": {"action_time": "2024-07-03T09:03:04.821Z", "user": 1, "content_type": 15, "object_id": "79", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is your least favourite area in the neighbourhood and why?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 669, "fields": {"action_time": "2024-07-03T09:03:04.822Z", "user": 1, "content_type": 15, "object_id": "78", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is your favourite area in the neighbourhood and why?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 670, "fields": {"action_time": "2024-07-03T09:03:04.822Z", "user": 1, "content_type": 15, "object_id": "77", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 671, "fields": {"action_time": "2024-07-03T09:36:03.523Z", "user": 1, "content_type": 10, "object_id": "160", "object_repr": "71d7b851-78e0-4b96-9ae4-ac2743d21665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 672, "fields": {"action_time": "2024-07-03T09:36:03.525Z", "user": 1, "content_type": 10, "object_id": "159", "object_repr": "25a6b645-c06c-4e34-802a-56728561190c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 673, "fields": {"action_time": "2024-07-03T09:36:03.526Z", "user": 1, "content_type": 10, "object_id": "158", "object_repr": "3b08ff09-38ec-4a97-b07b-b3ea11882665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 674, "fields": {"action_time": "2024-07-03T09:36:03.527Z", "user": 1, "content_type": 10, "object_id": "157", "object_repr": "b60329b3-89a0-47aa-a825-eefafaa7f25d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 675, "fields": {"action_time": "2024-07-03T09:36:03.527Z", "user": 1, "content_type": 10, "object_id": "156", "object_repr": "4d20302a-1afb-465c-ba76-786d6d4604f2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 676, "fields": {"action_time": "2024-07-03T09:36:03.528Z", "user": 1, "content_type": 10, "object_id": "155", "object_repr": "674c3910-68f9-4c37-b54e-0fa57737a984", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 677, "fields": {"action_time": "2024-07-03T09:36:03.529Z", "user": 1, "content_type": 10, "object_id": "154", "object_repr": "68a3a40a-bd79-4238-ae65-03107a6d66fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 678, "fields": {"action_time": "2024-07-03T09:36:03.529Z", "user": 1, "content_type": 10, "object_id": "153", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2024-07-03T09:36:03.530Z", "user": 1, "content_type": 10, "object_id": "152", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2024-07-03T09:36:03.531Z", "user": 1, "content_type": 10, "object_id": "151", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2024-07-03T09:36:03.531Z", "user": 1, "content_type": 10, "object_id": "150", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2024-07-03T09:36:03.532Z", "user": 1, "content_type": 10, "object_id": "149", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2024-07-03T09:36:03.533Z", "user": 1, "content_type": 10, "object_id": "148", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 684, "fields": {"action_time": "2024-07-03T09:36:03.533Z", "user": 1, "content_type": 10, "object_id": "147", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 685, "fields": {"action_time": "2024-07-03T09:36:03.534Z", "user": 1, "content_type": 10, "object_id": "146", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 686, "fields": {"action_time": "2024-07-03T09:36:03.534Z", "user": 1, "content_type": 10, "object_id": "145", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 687, "fields": {"action_time": "2024-07-03T09:36:03.535Z", "user": 1, "content_type": 10, "object_id": "144", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2024-07-03T09:36:03.536Z", "user": 1, "content_type": 10, "object_id": "143", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2024-07-03T09:36:03.536Z", "user": 1, "content_type": 10, "object_id": "142", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 690, "fields": {"action_time": "2024-07-03T09:36:03.537Z", "user": 1, "content_type": 10, "object_id": "141", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 691, "fields": {"action_time": "2024-07-03T09:36:03.537Z", "user": 1, "content_type": 10, "object_id": "140", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 692, "fields": {"action_time": "2024-07-03T09:36:03.538Z", "user": 1, "content_type": 10, "object_id": "139", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 693, "fields": {"action_time": "2024-07-03T09:36:03.538Z", "user": 1, "content_type": 10, "object_id": "138", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 694, "fields": {"action_time": "2024-07-03T09:36:03.539Z", "user": 1, "content_type": 10, "object_id": "137", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 695, "fields": {"action_time": "2024-07-03T09:36:03.539Z", "user": 1, "content_type": 10, "object_id": "136", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 696, "fields": {"action_time": "2024-07-03T09:36:03.540Z", "user": 1, "content_type": 10, "object_id": "135", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 697, "fields": {"action_time": "2024-07-03T09:36:03.540Z", "user": 1, "content_type": 10, "object_id": "134", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 698, "fields": {"action_time": "2024-07-03T09:36:03.541Z", "user": 1, "content_type": 10, "object_id": "133", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 699, "fields": {"action_time": "2024-07-03T09:36:03.541Z", "user": 1, "content_type": 10, "object_id": "132", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 700, "fields": {"action_time": "2024-07-03T09:36:03.542Z", "user": 1, "content_type": 10, "object_id": "131", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 701, "fields": {"action_time": "2024-07-03T09:36:03.543Z", "user": 1, "content_type": 10, "object_id": "130", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 702, "fields": {"action_time": "2024-07-03T09:36:03.543Z", "user": 1, "content_type": 10, "object_id": "129", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 703, "fields": {"action_time": "2024-07-03T09:36:03.544Z", "user": 1, "content_type": 10, "object_id": "128", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 704, "fields": {"action_time": "2024-07-03T09:36:03.544Z", "user": 1, "content_type": 10, "object_id": "127", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 705, "fields": {"action_time": "2024-07-03T09:36:03.545Z", "user": 1, "content_type": 10, "object_id": "126", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 706, "fields": {"action_time": "2024-07-03T09:36:03.545Z", "user": 1, "content_type": 10, "object_id": "125", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 707, "fields": {"action_time": "2024-07-03T09:36:03.546Z", "user": 1, "content_type": 10, "object_id": "124", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 708, "fields": {"action_time": "2024-07-03T11:46:18.016Z", "user": 1, "content_type": 8, "object_id": "152", "object_repr": "ef29b584-48c7-4e17-8277-b4cd271e4576", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 709, "fields": {"action_time": "2024-07-03T11:46:44.862Z", "user": 1, "content_type": 8, "object_id": "151", "object_repr": "71d7b851-78e0-4b96-9ae4-ac2743d21665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 710, "fields": {"action_time": "2024-07-03T11:46:44.864Z", "user": 1, "content_type": 8, "object_id": "150", "object_repr": "25a6b645-c06c-4e34-802a-56728561190c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 711, "fields": {"action_time": "2024-07-03T11:46:44.865Z", "user": 1, "content_type": 8, "object_id": "149", "object_repr": "3b08ff09-38ec-4a97-b07b-b3ea11882665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 712, "fields": {"action_time": "2024-07-03T11:46:44.865Z", "user": 1, "content_type": 8, "object_id": "148", "object_repr": "5c320c29-9f1f-4faa-b50d-18a78a5beb34", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 713, "fields": {"action_time": "2024-07-03T11:46:44.866Z", "user": 1, "content_type": 8, "object_id": "147", "object_repr": "12d651ad-2a8a-437d-9e2b-148292671896", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 714, "fields": {"action_time": "2024-07-03T11:46:44.866Z", "user": 1, "content_type": 8, "object_id": "146", "object_repr": "b60329b3-89a0-47aa-a825-eefafaa7f25d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 715, "fields": {"action_time": "2024-07-03T11:46:44.867Z", "user": 1, "content_type": 8, "object_id": "145", "object_repr": "ced1522d-aafb-45da-9fe3-ed8f3f818255", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 716, "fields": {"action_time": "2024-07-03T11:46:44.868Z", "user": 1, "content_type": 8, "object_id": "144", "object_repr": "6719aca3-76fe-46fc-91f2-4b8de7d65215", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 717, "fields": {"action_time": "2024-07-03T11:46:44.868Z", "user": 1, "content_type": 8, "object_id": "143", "object_repr": "07edb507-06c9-42ec-a8ac-318dc6cd5376", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 718, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "142", "object_repr": "8f8dc8bb-d0c0-4063-80bc-9ca0aceee305", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 719, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "141", "object_repr": "8f8dc8bb-d0c0-4063-80bc-9ca0aceee305", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 720, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "140", "object_repr": "4d20302a-1afb-465c-ba76-786d6d4604f2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 721, "fields": {"action_time": "2024-07-03T11:46:44.870Z", "user": 1, "content_type": 8, "object_id": "139", "object_repr": "674c3910-68f9-4c37-b54e-0fa57737a984", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 722, "fields": {"action_time": "2024-07-03T11:46:44.870Z", "user": 1, "content_type": 8, "object_id": "138", "object_repr": "68a3a40a-bd79-4238-ae65-03107a6d66fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 723, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "137", "object_repr": "91631be4-e8a8-44b4-942a-e53bfd7a09db", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 724, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "136", "object_repr": "cea6e606-d791-4043-88b9-f75349affba2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 725, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "135", "object_repr": "22de1d85-04ad-4bb8-b9b3-d500f3f1fd3f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 726, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "134", "object_repr": "117761ce-2ffa-44a1-ad4a-d700f963f8ae", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 727, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "133", "object_repr": "041996ec-b470-4dd5-ab5e-59fbfa00a367", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 728, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "132", "object_repr": "7f509b29-5a40-484b-83a1-48f2c57b0f95", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 729, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "131", "object_repr": "b511404b-67c8-4d92-85af-bf4757417e4a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 730, "fields": {"action_time": "2024-07-03T11:46:44.873Z", "user": 1, "content_type": 8, "object_id": "130", "object_repr": "3b185bd5-cffc-4e66-a51e-6228944f0e03", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 731, "fields": {"action_time": "2024-07-03T11:46:44.873Z", "user": 1, "content_type": 8, "object_id": "129", "object_repr": "584e688d-975a-4000-a897-6656c03f2c55", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 732, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "128", "object_repr": "f4a20631-7927-4dab-86c7-bf004d11e7e7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 733, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "127", "object_repr": "b414b7ae-bf47-4b7d-afa1-abfb1657c6c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 734, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "126", "object_repr": "4e28e48c-80e5-4430-a768-738bd14e0ffe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 735, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "125", "object_repr": "b34b07bb-3b2a-4a74-9d3b-41ed7e103216", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 736, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "124", "object_repr": "d26f1fbd-af2a-4f6b-8e21-eb5cac2cf823", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 737, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "123", "object_repr": "aaf22939-95b2-4208-a56a-1f9feade9510", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 738, "fields": {"action_time": "2024-07-03T11:49:48.507Z", "user": 1, "content_type": 11, "object_id": "147", "object_repr": "PointFeature object (147)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 739, "fields": {"action_time": "2024-12-08T20:04:06.600Z", "user": 2, "content_type": 14, "object_id": "feb668d2-7ce2-47aa-85ee-265a99744ebc", "object_repr": "Response feb668d2-7ce2-47aa-85ee-265a99744ebc (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 740, "fields": {"action_time": "2024-12-08T20:04:06.609Z", "user": 2, "content_type": 14, "object_id": "f21e8c29-98cc-4fbd-aed7-b534d2f6b13b", "object_repr": "Response f21e8c29-98cc-4fbd-aed7-b534d2f6b13b (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 741, "fields": {"action_time": "2024-12-08T20:04:06.611Z", "user": 2, "content_type": 14, "object_id": "eed6eed5-f58a-4dd0-a632-5a3c3e6d2488", "object_repr": "Response eed6eed5-f58a-4dd0-a632-5a3c3e6d2488 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 742, "fields": {"action_time": "2024-12-08T20:04:06.613Z", "user": 2, "content_type": 14, "object_id": "ec0b0e54-64d7-4b67-89f3-126e4e7b86b0", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 743, "fields": {"action_time": "2024-12-08T20:04:06.614Z", "user": 2, "content_type": 14, "object_id": "ebf52133-f4b4-47e7-98a2-80c481512e70", "object_repr": "Response ebf52133-f4b4-47e7-98a2-80c481512e70 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 744, "fields": {"action_time": "2024-12-08T20:04:06.615Z", "user": 2, "content_type": 14, "object_id": "e7f811a3-eae7-4cdf-9cf5-b69c43f4eec1", "object_repr": "Response e7f811a3-eae7-4cdf-9cf5-b69c43f4eec1 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 745, "fields": {"action_time": "2024-12-08T20:04:06.617Z", "user": 2, "content_type": 14, "object_id": "e47597b5-595f-415a-bd6c-38498b18b978", "object_repr": "Response e47597b5-595f-415a-bd6c-38498b18b978 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2024-12-08T20:04:06.618Z", "user": 2, "content_type": 14, "object_id": "e0ff48f8-507b-4f2b-bf17-1392400f1f9f", "object_repr": "Response e0ff48f8-507b-4f2b-bf17-1392400f1f9f (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2024-12-08T20:04:06.619Z", "user": 2, "content_type": 14, "object_id": "ddc716b8-563d-4113-b191-1a28a8d228b8", "object_repr": "Response ddc716b8-563d-4113-b191-1a28a8d228b8 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 748, "fields": {"action_time": "2024-12-08T20:04:06.619Z", "user": 2, "content_type": 14, "object_id": "d15f5fdc-fa9e-4020-a13f-c3551a0984d1", "object_repr": "Response d15f5fdc-fa9e-4020-a13f-c3551a0984d1 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 749, "fields": {"action_time": "2024-12-08T20:04:06.620Z", "user": 2, "content_type": 14, "object_id": "c846e4e0-9ce0-44a6-a609-a84ab1e0d4aa", "object_repr": "Response c846e4e0-9ce0-44a6-a609-a84ab1e0d4aa (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 750, "fields": {"action_time": "2024-12-08T20:04:06.621Z", "user": 2, "content_type": 14, "object_id": "c5363320-8105-4077-91bf-a23044f976bd", "object_repr": "Response c5363320-8105-4077-91bf-a23044f976bd (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 751, "fields": {"action_time": "2024-12-08T20:04:06.622Z", "user": 2, "content_type": 14, "object_id": "c2811236-c611-41d5-977d-014cb8d6c778", "object_repr": "Response c2811236-c611-41d5-977d-014cb8d6c778 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 752, "fields": {"action_time": "2024-12-08T20:04:06.623Z", "user": 2, "content_type": 14, "object_id": "c00518d9-fc96-4c8a-932f-3f16ca8cfa55", "object_repr": "Response c00518d9-fc96-4c8a-932f-3f16ca8cfa55 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 753, "fields": {"action_time": "2024-12-08T20:04:06.625Z", "user": 2, "content_type": 14, "object_id": "b20b93f1-b899-41de-a0fa-fe1b0b923845", "object_repr": "Response b20b93f1-b899-41de-a0fa-fe1b0b923845 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 754, "fields": {"action_time": "2024-12-08T20:04:06.626Z", "user": 2, "content_type": 14, "object_id": "ad22bc91-5a7d-4874-8bfb-3b40d1b9d304", "object_repr": "Response ad22bc91-5a7d-4874-8bfb-3b40d1b9d304 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 755, "fields": {"action_time": "2024-12-08T20:04:06.627Z", "user": 2, "content_type": 14, "object_id": "a76c15a5-0e7f-4b0c-aec8-6c4a5e5b3420", "object_repr": "Response a76c15a5-0e7f-4b0c-aec8-6c4a5e5b3420 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 756, "fields": {"action_time": "2024-12-08T20:04:06.628Z", "user": 2, "content_type": 14, "object_id": "a079c78d-ed77-4e63-bf84-66e686959e69", "object_repr": "Response a079c78d-ed77-4e63-bf84-66e686959e69 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 757, "fields": {"action_time": "2024-12-08T20:04:06.629Z", "user": 2, "content_type": 14, "object_id": "9cf103bd-dd51-4d2f-9cb1-df0ec044f3a0", "object_repr": "Response 9cf103bd-dd51-4d2f-9cb1-df0ec044f3a0 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 758, "fields": {"action_time": "2024-12-08T20:04:06.630Z", "user": 2, "content_type": 14, "object_id": "99a01ce5-0406-4fe5-bd0a-91df8220c9a2", "object_repr": "Response 99a01ce5-0406-4fe5-bd0a-91df8220c9a2 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 759, "fields": {"action_time": "2024-12-08T20:04:06.631Z", "user": 2, "content_type": 14, "object_id": "96583227-7267-4423-b633-b614af5f0343", "object_repr": "Response 96583227-7267-4423-b633-b614af5f0343 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 760, "fields": {"action_time": "2024-12-08T20:04:06.632Z", "user": 2, "content_type": 14, "object_id": "93084634-cebb-48a6-a5b7-89edaefdcefa", "object_repr": "Response 93084634-cebb-48a6-a5b7-89edaefdcefa (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 761, "fields": {"action_time": "2024-12-08T20:04:06.633Z", "user": 2, "content_type": 14, "object_id": "915c3633-d00a-453f-9166-7a6f9de0f900", "object_repr": "Response 915c3633-d00a-453f-9166-7a6f9de0f900 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 762, "fields": {"action_time": "2024-12-08T20:04:06.634Z", "user": 2, "content_type": 14, "object_id": "844dc135-8295-47b9-8a19-611411a7af63", "object_repr": "Response 844dc135-8295-47b9-8a19-611411a7af63 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 763, "fields": {"action_time": "2024-12-08T20:04:06.635Z", "user": 2, "content_type": 14, "object_id": "6cfa395d-0782-45ec-9611-7e2559b3c2fc", "object_repr": "Response 6cfa395d-0782-45ec-9611-7e2559b3c2fc (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 764, "fields": {"action_time": "2024-12-08T20:04:06.635Z", "user": 2, "content_type": 14, "object_id": "6ab60eaa-2476-45f2-be82-466a482fe5ee", "object_repr": "Response 6ab60eaa-2476-45f2-be82-466a482fe5ee (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 765, "fields": {"action_time": "2024-12-08T20:04:06.636Z", "user": 2, "content_type": 14, "object_id": "66b16109-a168-4217-9aaf-7437aad2e131", "object_repr": "Response 66b16109-a168-4217-9aaf-7437aad2e131 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 766, "fields": {"action_time": "2024-12-08T20:04:06.637Z", "user": 2, "content_type": 14, "object_id": "649a6a35-45f3-4a63-8b4e-5d4bd7e6e402", "object_repr": "Response 649a6a35-45f3-4a63-8b4e-5d4bd7e6e402 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 767, "fields": {"action_time": "2024-12-08T20:04:06.638Z", "user": 2, "content_type": 14, "object_id": "5f6c1c3f-81eb-4eb2-a967-d41938cdc094", "object_repr": "Response 5f6c1c3f-81eb-4eb2-a967-d41938cdc094 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 768, "fields": {"action_time": "2024-12-08T20:04:06.638Z", "user": 2, "content_type": 14, "object_id": "56ef6ca1-477a-4df5-b987-b8b1bad3acca", "object_repr": "Response 56ef6ca1-477a-4df5-b987-b8b1bad3acca (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 769, "fields": {"action_time": "2024-12-08T20:04:06.639Z", "user": 2, "content_type": 14, "object_id": "504c64ed-25d4-440b-8eac-0a862f241fd3", "object_repr": "Response 504c64ed-25d4-440b-8eac-0a862f241fd3 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 770, "fields": {"action_time": "2024-12-08T20:04:06.640Z", "user": 2, "content_type": 14, "object_id": "4d88a62f-b800-4c9d-bf85-ebd8ca9df808", "object_repr": "Response 4d88a62f-b800-4c9d-bf85-ebd8ca9df808 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 771, "fields": {"action_time": "2024-12-08T20:04:06.641Z", "user": 2, "content_type": 14, "object_id": "3f8fe52e-4abb-4567-859b-5b91049a0131", "object_repr": "Response 3f8fe52e-4abb-4567-859b-5b91049a0131 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 772, "fields": {"action_time": "2024-12-08T20:04:06.642Z", "user": 2, "content_type": 14, "object_id": "3df99669-2c29-47aa-9594-56cd83135ad2", "object_repr": "Response 3df99669-2c29-47aa-9594-56cd83135ad2 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 773, "fields": {"action_time": "2024-12-08T20:04:06.643Z", "user": 2, "content_type": 14, "object_id": "3ddae1c1-97d2-4e3d-8dad-38799a29d3df", "object_repr": "Response 3ddae1c1-97d2-4e3d-8dad-38799a29d3df (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 774, "fields": {"action_time": "2024-12-08T20:04:06.644Z", "user": 2, "content_type": 14, "object_id": "2798a477-965a-4b0c-a4fb-db69cc54686d", "object_repr": "Response 2798a477-965a-4b0c-a4fb-db69cc54686d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 775, "fields": {"action_time": "2024-12-08T20:04:06.647Z", "user": 2, "content_type": 14, "object_id": "269de054-c25c-4657-8f0a-8259cfa6cc5a", "object_repr": "Response 269de054-c25c-4657-8f0a-8259cfa6cc5a (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 776, "fields": {"action_time": "2024-12-08T20:04:06.648Z", "user": 2, "content_type": 14, "object_id": "25e70682-b9aa-4371-8b6d-a1db26de8d8f", "object_repr": "Response 25e70682-b9aa-4371-8b6d-a1db26de8d8f (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2024-12-08T20:04:06.649Z", "user": 2, "content_type": 14, "object_id": "19ad3d9b-68ae-49e4-a1b5-4bedc423ed07", "object_repr": "Response 19ad3d9b-68ae-49e4-a1b5-4bedc423ed07 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2024-12-08T20:04:06.650Z", "user": 2, "content_type": 14, "object_id": "11d6e2a1-b759-41f7-b12c-082232d4e30e", "object_repr": "Response 11d6e2a1-b759-41f7-b12c-082232d4e30e (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2024-12-08T20:04:06.651Z", "user": 2, "content_type": 14, "object_id": "102a0ee7-aba7-4843-8901-e6ee8a6d53c4", "object_repr": "Response 102a0ee7-aba7-4843-8901-e6ee8a6d53c4 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 780, "fields": {"action_time": "2024-12-08T20:04:06.651Z", "user": 2, "content_type": 14, "object_id": "0d535802-a049-4681-bc12-9455c640d66e", "object_repr": "Response 0d535802-a049-4681-bc12-9455c640d66e (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 781, "fields": {"action_time": "2024-12-08T20:04:06.652Z", "user": 2, "content_type": 14, "object_id": "03042da2-d858-491b-a17f-855c0dba82b3", "object_repr": "Response 03042da2-d858-491b-a17f-855c0dba82b3 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2024-12-08T20:04:06.653Z", "user": 2, "content_type": 14, "object_id": "01e7b630-6619-4bb3-a282-b94013b69e70", "object_repr": "Response 01e7b630-6619-4bb3-a282-b94013b69e70 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2024-12-08T20:04:31.893Z", "user": 2, "content_type": 16, "object_id": "1", "object_repr": "Popular Places", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2024-12-08T20:05:11.471Z", "user": 2, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN Survey", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Date that survey was made available\", \"Expiry date of survey\"]}}]"}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$720000$Exp83Sdgv7q1aAbosN5x58$47ZEPhOVaJMI8j0B2XxNwsb4mij+N60SKvXjlOMt3co=", "last_login": "2024-08-01T08:10:54.872Z", "is_superuser": true, "username": "admin", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2024-05-08T15:59:42.246Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$720000$RwMzwDLqopn2gN95rQMgY4$Rf2SYQoNx4fH6q2cqiJRzdqQ8BCcxsXc32Bc42jhsuA=", "last_login": "2024-12-08T20:03:09.506Z", "is_superuser": true, "username": "citizen", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2024-12-08T19:57:25.346Z", "groups": [], "user_permissions": []}}, {"model": "sessions.session", "pk": "3pwfefa6q4cgri1n16ubzd8vzlcymgd2", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sZQti:2bW_Jw2tr0XXEbAEXxl0NCaFxc7Np78LY7Nieix840Q", "expire_date": "2024-08-15T08:10:54.876Z"}}, {"model": "sessions.session", "pk": "e8ttvirbefbkepu27u0b72f3crzmw5rg", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sHK3q:yDyx3GFH7jpSgwOTuLzY-8tl_9tbwsNZ6wTvu46e5wM", "expire_date": "2024-06-26T09:14:30.480Z"}}, {"model": "sessions.session", "pk": "gjxv0ji2639fbk0v7ke7f584zufn79wt", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1s4jhz:TjbrwX-MoA359g6M_GXcC3MddBYo-lsWavlWWNM1c8k", "expire_date": "2024-05-22T15:59:55.830Z"}}, {"model": "sessions.session", "pk": "i0nertwtk70gn9fd762zjc487lf7a3q2", "fields": {"session_data": ".eJxVjEEOwiAQRe_C2hA6DKW4dO8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3EWIE6_W6D44LqDdKd6azK2ui5zkLsiD9rltSV-Xg7376BQL9_aUaSEFlkP2Sqj7TACY8QJlXFxdOA4GMoIOSBPYFXWgFmRsgETZRDvD9PvN58:1tKNUj:vgs6c7LOIszmQnoNQZKIOtQnk8IWdafUI1eRj3R6j9M", "expire_date": "2024-12-22T20:03:09.509Z"}}, {"model": "sessions.session", "pk": "kqdse8b2rquf07ntkv0jh8koz0mvhmya", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sMQT0:HyoeZoOQ6Rh2pdplnmGmrYiQ4rLO5ukpvuJCqnjry9c", "expire_date": "2024-07-10T11:05:34.809Z"}}, {"model": "sites.site", "pk": 1, "fields": {"domain": "example.com", "name": "example.com"}}, {"model": "apiapp.survey", "pk": 3, "fields": {"name": "CIVILIAN Survey", "description": "You are invited to participate in a research survey to understand how residents perceive their neighbourhood. As a resident, there is no better person than you to indicate and describe the positive and negative aspects of your neighbourhood. You are the expert, and your answers are very valuable to us in understanding what residents find important to make a neighbourhood a nice place to live.\r\n\r\nIn the survey, you will be asked questions about the neighbourhood where you live, places you like or dislike, places to be improved, and places where you identify an issue (such as noise or pollution). No personal data will be collected or published.\r\nAs researchers, we aim to collect and analyse your data and make recommendations for decision-makers. We will also make your voices heard by making your answers public on a dashboard that is available to all.\r\n\r\nThe survey is completely anonymous. Your participation in this study is entirely voluntary, and you can withdraw at any time. You are free to skip questions. Since it is anonymous, removing data once the form is completed is not possible. As with any online activity, the risk of a breach is always possible, but to the best of our ability, your answers will remain confidential.\r\n\r\nThis study is part of the Citizen Voice initiative at the Delft University of Technology. In case you have questions or would like to be updated on the outcomes of this study, you can contact Juliana Goncalves (Assistant Professor in the Department of Urbanism, TU Delft) J.E.Goncalves@tudelft.nl.\r\n\r\nBy proceeding with the survey, you agree to this Opening Statement and provide informed consent to participate.", "is_published": true, "need_logged_user": false, "editable_answers": true, "submit_message": "Thank you for your participation!", "publish_date": "2024-12-08T08:23:56Z", "expire_date": "2025-04-01T08:24:07Z", "public_url": "", "designer": 1}}, {"model": "apiapp.pointfeature", "pk": 148, "fields": {"geom": "SRID=4326;POINT (7.207031 52.597709)", "annotation": null, "location": 154}}, {"model": "apiapp.pointfeature", "pk": 149, "fields": {"geom": "SRID=4326;POINT (4.943848 51.782795)", "annotation": null, "location": 154}}, {"model": "apiapp.pointfeature", "pk": 150, "fields": {"geom": "SRID=4326;POINT (5.328369 51.068096)", "annotation": null, "location": 154}}, {"model": "apiapp.pointfeature", "pk": 151, "fields": {"geom": "SRID=4326;POINT (5.157715 51.60005)", "annotation": null, "location": 155}}, {"model": "apiapp.pointfeature", "pk": 152, "fields": {"geom": "SRID=4326;POINT (4.773193 51.934331)", "annotation": null, "location": 156}}, {"model": "apiapp.pointfeature", "pk": 153, "fields": {"geom": "SRID=4326;POINT (5.102783 51.345139)", "annotation": null, "location": 157}}, {"model": "apiapp.pointfeature", "pk": 154, "fields": {"geom": "SRID=4326;POINT (4.300781 51.853538)", "annotation": null, "location": 158}}, {"model": "apiapp.pointfeature", "pk": 155, "fields": {"geom": "SRID=4326;POINT (5.564209 52.171349)", "annotation": null, "location": 158}}, {"model": "apiapp.pointfeature", "pk": 156, "fields": {"geom": "SRID=4326;POINT (5.361328 51.638135)", "annotation": null, "location": 159}}, {"model": "apiapp.pointfeature", "pk": 157, "fields": {"geom": "SRID=4326;POINT (5.138855 51.879861)", "annotation": null, "location": 160}}, {"model": "apiapp.pointfeature", "pk": 158, "fields": {"geom": "SRID=4326;POINT (4.888916 52.025121)", "annotation": null, "location": 161}}, {"model": "apiapp.pointfeature", "pk": 159, "fields": {"geom": "SRID=4326;POINT (5.097656 52.079168)", "annotation": null, "location": 162}}, {"model": "apiapp.pointfeature", "pk": 160, "fields": {"geom": "SRID=4326;POINT (4.350586 51.781096)", "annotation": null, "location": 163}}, {"model": "apiapp.pointfeature", "pk": 161, "fields": {"geom": "SRID=4326;POINT (5.339355 51.977775)", "annotation": null, "location": 164}}, {"model": "apiapp.pointfeature", "pk": 162, "fields": {"geom": "SRID=4326;POINT (5.548096 51.93038)", "annotation": null, "location": 165}}, {"model": "apiapp.polygonfeature", "pk": 13, "fields": {"geom": "SRID=4326;POLYGON ((4.053955 50.944815, 5.482178 50.68799, 5.866699 51.213995, 4.053955 50.944815))", "annotation": null, "location": 153}}, {"model": "apiapp.linefeature", "pk": 9, "fields": {"geom": "SRID=4326;LINESTRING (5.482178 52.789697, 6.053467 53.087646, 6.49292 53.008394, 7.207031 52.636619, 6.888428 52.167418)", "annotation": null, "location": 153}}, {"model": "apiapp.locationcollection", "pk": 153, "fields": {"name": "95c8fd01-1f2e-45e4-89f6-eeb584d7c859", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 154, "fields": {"name": "5e1e2da4-ba9a-4ea8-bf99-8875bbb0bcc2", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 155, "fields": {"name": "3511ae68-27c6-4bb9-b5d5-72f25a16736e", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 156, "fields": {"name": "8167ad96-6028-4fad-b4a4-0816bfb39b34", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 157, "fields": {"name": "4744c2ef-7db4-400d-b97e-bec2fd3657c2", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 158, "fields": {"name": "b331ce8c-e5d1-44ed-bce3-884b28eba4d0", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 159, "fields": {"name": "ef244194-61be-41ab-86d2-4f6043144978", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 160, "fields": {"name": "191fecd9-b0eb-43ee-b9e4-5f92a53e51b9", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 161, "fields": {"name": "fbcd1a19-7f4c-4cf6-9594-9a0ad8380631", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 162, "fields": {"name": "e04e755d-6f7e-4041-b333-87e831c9c351", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 163, "fields": {"name": "5cccba20-329d-4769-a159-5017db14ffa3", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 164, "fields": {"name": "717bfa63-6726-405f-a792-2031a82a5b71", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 165, "fields": {"name": "57bceb8c-a3c2-4737-a8d6-c6044187dc94", "description": ""}}, {"model": "apiapp.mapview", "pk": 18, "fields": {"name": "Civilian NL", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": null}}, {"model": "apiapp.mapview", "pk": 121, "fields": {"name": "Delft", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 15, "center": [51.9999518, 4.3641589]}, "location": null}}, {"model": "apiapp.mapview", "pk": 161, "fields": {"name": "ef29b584-48c7-4e17-8277-b4cd271e4576", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 5, "center": [51.781435604431195, 6.5478515625]}, "location": null}}, {"model": "apiapp.mapview", "pk": 162, "fields": {"name": "95c8fd01-1f2e-45e4-89f6-eeb584d7c859", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 153}}, {"model": "apiapp.mapview", "pk": 163, "fields": {"name": "5e1e2da4-ba9a-4ea8-bf99-8875bbb0bcc2", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 154}}, {"model": "apiapp.mapview", "pk": 164, "fields": {"name": "3511ae68-27c6-4bb9-b5d5-72f25a16736e", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 155}}, {"model": "apiapp.mapview", "pk": 165, "fields": {"name": "8167ad96-6028-4fad-b4a4-0816bfb39b34", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 156}}, {"model": "apiapp.mapview", "pk": 166, "fields": {"name": "4744c2ef-7db4-400d-b97e-bec2fd3657c2", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.58389660297626, 5.559082031250001]}, "location": 157}}, {"model": "apiapp.mapview", "pk": 167, "fields": {"name": "b331ce8c-e5d1-44ed-bce3-884b28eba4d0", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 158}}, {"model": "apiapp.mapview", "pk": 168, "fields": {"name": "ef244194-61be-41ab-86d2-4f6043144978", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.69299021149185, 4.603271484375001]}, "location": 159}}, {"model": "apiapp.mapview", "pk": 169, "fields": {"name": "1818c63e-42e6-4787-9225-7259b1a8fd82", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": null}}, {"model": "apiapp.mapview", "pk": 170, "fields": {"name": "163c23b3-c16a-48c8-89f3-292714010c2f", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.86292391360244, 5.053710937500001]}, "location": null}}, {"model": "apiapp.mapview", "pk": 171, "fields": {"name": "e04e755d-6f7e-4041-b333-87e831c9c351", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 8, "center": [52.08288179572668, 6.333618164062501]}, "location": 162}}, {"model": "apiapp.mapview", "pk": 172, "fields": {"name": "5cccba20-329d-4769-a159-5017db14ffa3", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": 163}}, {"model": "apiapp.mapview", "pk": 173, "fields": {"name": "717bfa63-6726-405f-a792-2031a82a5b71", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.82219818336938, 6.498413085937501]}, "location": 164}}, {"model": "apiapp.mapview", "pk": 174, "fields": {"name": "57bceb8c-a3c2-4737-a8d6-c6044187dc94", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [51.70660846336452, 5.7733154296875]}, "location": 165}}, {"model": "apiapp.question", "pk": 5, "fields": {"text": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "explanation": null, "order": 1, "required": true, "has_text_input": true, "question_type": "radio", "choices": "I like to live in my neighbourhood and intend to stay here for many years., \r\nI like to live in my neighbourhood but would like to move elsewhere in the city., \r\nI do not like to live in my neighbourhood and I would like to move elsewhere in the city.,\r\nI do not like to live in my neighbourhood but would like to see it improve.,\r\nI like to live in my neighbourhood but I am living here temporarily and plan to move to another city.,\r\nOther.", "survey": 3, "is_geospatial": false, "mapview": null}}, {"model": "apiapp.question", "pk": 6, "fields": {"text": "What is your favourite area in the neighbourhood and why?", "explanation": "Please mark it on the map.", "order": 2, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 7, "fields": {"text": "What is your least favourite area in the neighbourhood and why?", "explanation": "Please mark it on the map.", "order": 3, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 8, "fields": {"text": "What is the closest green area to your house?", "explanation": "Please mark it on the map.", "order": 4, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 9, "fields": {"text": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "explanation": "Please mark it on the map, and click on the symbol to type the kind of green you would like.", "order": 5, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 10, "fields": {"text": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "explanation": "Please mark it on the map, and click on the symbol to type what have you seen.", "order": 6, "required": true, "has_text_input": false, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 11, "fields": {"text": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "explanation": "Please mark it on the map, and click on the symbol to type how they can be improved.", "order": 7, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 13, "fields": {"text": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "explanation": "Please mark these on the map.", "order": 8, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 14, "fields": {"text": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "explanation": "Please mark these on the map.", "order": 9, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 15, "fields": {"text": "Could you identify the places in your neighbourhood where you feel unsafe?", "explanation": "Please mark it on the map.", "order": 10, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 16, "fields": {"text": "In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "explanation": "Please mark it on the map.", "order": 11, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 17, "fields": {"text": "In your neighbourhood, where do you see water on the ground after a heavy rain?", "explanation": "Please mark it on the map.", "order": 12, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 18, "fields": {"text": "Could you identify the places in your neighbourhood where waste/trash is a problem?", "explanation": "Please mark these on the map.", "order": 13, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 19, "fields": {"text": "Is there anything else you would like to say about your neighbourhood?", "explanation": null, "order": 14, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": false, "mapview": null}}] \ No newline at end of file +[{"model": "admin.logentry", "pk": 1, "fields": {"action_time": "2024-05-08T16:00:55.923Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Demo 1", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 2, "fields": {"action_time": "2024-05-08T16:01:26.787Z", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Demo 2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 3, "fields": {"action_time": "2024-05-08T16:01:59.522Z", "user": 1, "content_type": 10, "object_id": "1", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 4, "fields": {"action_time": "2024-05-08T16:03:07.121Z", "user": 1, "content_type": 8, "object_id": "1", "object_repr": "popular places", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 5, "fields": {"action_time": "2024-05-08T16:03:09.134Z", "user": 1, "content_type": 10, "object_id": "2", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 6, "fields": {"action_time": "2024-05-08T16:03:19.143Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 7, "fields": {"action_time": "2024-05-08T16:03:58.828Z", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "What do you do?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 8, "fields": {"action_time": "2024-05-08T16:04:04.880Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must be answered geospatially or not\"]}}]"}}, {"model": "admin.logentry", "pk": 9, "fields": {"action_time": "2024-05-08T16:05:53.927Z", "user": 1, "content_type": 10, "object_id": "3", "object_repr": "Enschede", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 10, "fields": {"action_time": "2024-05-08T16:05:58.873Z", "user": 1, "content_type": 13, "object_id": "3", "object_repr": "Where do you live?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 11, "fields": {"action_time": "2024-05-08T16:06:23.344Z", "user": 1, "content_type": 13, "object_id": "4", "object_repr": "Question for demo 2?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 12, "fields": {"action_time": "2024-05-08T16:06:33.535Z", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "What do you do?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 13, "fields": {"action_time": "2024-05-08T16:07:28.543Z", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "PointFeature object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 14, "fields": {"action_time": "2024-05-08T16:17:57.329Z", "user": 1, "content_type": 10, "object_id": "1", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 15, "fields": {"action_time": "2024-05-08T16:31:25.673Z", "user": 1, "content_type": 10, "object_id": "3", "object_repr": "Enschede", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 16, "fields": {"action_time": "2024-05-08T16:31:25.676Z", "user": 1, "content_type": 10, "object_id": "2", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 17, "fields": {"action_time": "2024-05-08T16:31:33.293Z", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "PointFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 18, "fields": {"action_time": "2024-05-08T16:38:18.987Z", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "PointFeature object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 19, "fields": {"action_time": "2024-05-15T10:07:17.934Z", "user": 1, "content_type": 10, "object_id": "4", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 20, "fields": {"action_time": "2024-05-15T10:07:35.637Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 21, "fields": {"action_time": "2024-06-12T09:14:53.009Z", "user": 1, "content_type": 14, "object_id": "f765df5a-c77f-4e71-b751-2c9156b6a408", "object_repr": "Response f765df5a-c77f-4e71-b751-2c9156b6a408 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 22, "fields": {"action_time": "2024-06-12T09:14:53.017Z", "user": 1, "content_type": 14, "object_id": "f41fe333-53d0-4def-9707-6341275b84dc", "object_repr": "Response f41fe333-53d0-4def-9707-6341275b84dc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 23, "fields": {"action_time": "2024-06-12T09:14:53.018Z", "user": 1, "content_type": 14, "object_id": "e94ea703-453c-4544-8178-29f6ae72a2c3", "object_repr": "Response e94ea703-453c-4544-8178-29f6ae72a2c3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 24, "fields": {"action_time": "2024-06-12T09:14:53.018Z", "user": 1, "content_type": 14, "object_id": "df113198-6181-4eb2-bf98-94de6af457e9", "object_repr": "Response df113198-6181-4eb2-bf98-94de6af457e9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 25, "fields": {"action_time": "2024-06-12T09:14:53.019Z", "user": 1, "content_type": 14, "object_id": "d391312c-9b3d-4909-82c9-83288dab6451", "object_repr": "Response d391312c-9b3d-4909-82c9-83288dab6451 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 26, "fields": {"action_time": "2024-06-12T09:14:53.020Z", "user": 1, "content_type": 14, "object_id": "c03140a7-a3fb-487d-bca4-09878caf70e3", "object_repr": "Response c03140a7-a3fb-487d-bca4-09878caf70e3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 27, "fields": {"action_time": "2024-06-12T09:14:53.020Z", "user": 1, "content_type": 14, "object_id": "be46e9d6-a73c-42b8-98b3-7be2e6e39c08", "object_repr": "Response be46e9d6-a73c-42b8-98b3-7be2e6e39c08 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 28, "fields": {"action_time": "2024-06-12T09:14:53.021Z", "user": 1, "content_type": 14, "object_id": "b6fb97e8-673d-41d3-8db4-83f0a1fec2d9", "object_repr": "Response b6fb97e8-673d-41d3-8db4-83f0a1fec2d9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 29, "fields": {"action_time": "2024-06-12T09:14:53.022Z", "user": 1, "content_type": 14, "object_id": "b543a9b5-db92-4950-9989-3f1471928d1f", "object_repr": "Response b543a9b5-db92-4950-9989-3f1471928d1f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 30, "fields": {"action_time": "2024-06-12T09:14:53.022Z", "user": 1, "content_type": 14, "object_id": "b0e7d769-73f3-4d8d-bf70-3010febd20df", "object_repr": "Response b0e7d769-73f3-4d8d-bf70-3010febd20df (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 31, "fields": {"action_time": "2024-06-12T09:14:53.023Z", "user": 1, "content_type": 14, "object_id": "add311c8-08b8-4a0f-933d-3ab116967b57", "object_repr": "Response add311c8-08b8-4a0f-933d-3ab116967b57 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 32, "fields": {"action_time": "2024-06-12T09:14:53.023Z", "user": 1, "content_type": 14, "object_id": "a15f4bb7-251f-4638-a3bb-a4babf400542", "object_repr": "Response a15f4bb7-251f-4638-a3bb-a4babf400542 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 33, "fields": {"action_time": "2024-06-12T09:14:53.024Z", "user": 1, "content_type": 14, "object_id": "9d6cd33c-f2f1-4281-b263-a40052456958", "object_repr": "Response 9d6cd33c-f2f1-4281-b263-a40052456958 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 34, "fields": {"action_time": "2024-06-12T09:14:53.024Z", "user": 1, "content_type": 14, "object_id": "984627fc-814e-4c02-b978-dd51ee64088d", "object_repr": "Response 984627fc-814e-4c02-b978-dd51ee64088d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 35, "fields": {"action_time": "2024-06-12T09:14:53.025Z", "user": 1, "content_type": 14, "object_id": "97fff2f5-eb46-4d16-bdb6-a52c5dbdc34d", "object_repr": "Response 97fff2f5-eb46-4d16-bdb6-a52c5dbdc34d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 36, "fields": {"action_time": "2024-06-12T09:14:53.025Z", "user": 1, "content_type": 14, "object_id": "9026f681-0171-42ce-8824-4b8db34becfd", "object_repr": "Response 9026f681-0171-42ce-8824-4b8db34becfd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 37, "fields": {"action_time": "2024-06-12T09:14:53.026Z", "user": 1, "content_type": 14, "object_id": "87d263b4-05bd-4e67-b970-8528d31ba39a", "object_repr": "Response 87d263b4-05bd-4e67-b970-8528d31ba39a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 38, "fields": {"action_time": "2024-06-12T09:14:53.027Z", "user": 1, "content_type": 14, "object_id": "846ef479-9c2b-420e-aec6-48e8ea58df1c", "object_repr": "Response 846ef479-9c2b-420e-aec6-48e8ea58df1c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 39, "fields": {"action_time": "2024-06-12T09:14:53.027Z", "user": 1, "content_type": 14, "object_id": "81a15f02-756b-46ae-a7f1-64a912a00720", "object_repr": "Response 81a15f02-756b-46ae-a7f1-64a912a00720 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 40, "fields": {"action_time": "2024-06-12T09:14:53.028Z", "user": 1, "content_type": 14, "object_id": "7fea840d-2e71-433b-b042-4882dc9c4821", "object_repr": "Response 7fea840d-2e71-433b-b042-4882dc9c4821 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 41, "fields": {"action_time": "2024-06-12T09:14:53.028Z", "user": 1, "content_type": 14, "object_id": "7f2eb62d-39a3-44a9-adc1-451a61556acf", "object_repr": "Response 7f2eb62d-39a3-44a9-adc1-451a61556acf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 42, "fields": {"action_time": "2024-06-12T09:14:53.029Z", "user": 1, "content_type": 14, "object_id": "7a86c417-41eb-4b0d-b98b-a24c8628d5f3", "object_repr": "Response 7a86c417-41eb-4b0d-b98b-a24c8628d5f3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 43, "fields": {"action_time": "2024-06-12T09:14:53.029Z", "user": 1, "content_type": 14, "object_id": "633e4c91-0bfc-4b55-86b0-8c78bc24e16f", "object_repr": "Response 633e4c91-0bfc-4b55-86b0-8c78bc24e16f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 44, "fields": {"action_time": "2024-06-12T09:14:53.030Z", "user": 1, "content_type": 14, "object_id": "5ede54b1-2f21-4748-9ab4-2e094e7969e0", "object_repr": "Response 5ede54b1-2f21-4748-9ab4-2e094e7969e0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 45, "fields": {"action_time": "2024-06-12T09:14:53.030Z", "user": 1, "content_type": 14, "object_id": "52358415-fe72-459a-bb7a-c48576325dec", "object_repr": "Response 52358415-fe72-459a-bb7a-c48576325dec (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 46, "fields": {"action_time": "2024-06-12T09:14:53.032Z", "user": 1, "content_type": 14, "object_id": "4d4a3cdf-3758-4f9b-8162-d079ffb1f734", "object_repr": "Response 4d4a3cdf-3758-4f9b-8162-d079ffb1f734 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 47, "fields": {"action_time": "2024-06-12T09:14:53.032Z", "user": 1, "content_type": 14, "object_id": "4bf17813-b999-448e-a6d1-ed1ac4b2767e", "object_repr": "Response 4bf17813-b999-448e-a6d1-ed1ac4b2767e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2024-06-12T09:14:53.033Z", "user": 1, "content_type": 14, "object_id": "4bd5dd2b-b3a3-4145-a302-ea8e55a25a03", "object_repr": "Response 4bd5dd2b-b3a3-4145-a302-ea8e55a25a03 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2024-06-12T09:14:53.033Z", "user": 1, "content_type": 14, "object_id": "47d0e65b-ccad-4a6e-9234-eeb535301bae", "object_repr": "Response 47d0e65b-ccad-4a6e-9234-eeb535301bae (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2024-06-12T09:14:53.034Z", "user": 1, "content_type": 14, "object_id": "466d40cd-bcd5-4329-bca0-6761ba7444dc", "object_repr": "Response 466d40cd-bcd5-4329-bca0-6761ba7444dc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2024-06-12T09:14:53.034Z", "user": 1, "content_type": 14, "object_id": "390614bb-834e-4952-ad1e-97a8ca97120e", "object_repr": "Response 390614bb-834e-4952-ad1e-97a8ca97120e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2024-06-12T09:14:53.035Z", "user": 1, "content_type": 14, "object_id": "33259f02-74a0-440e-9fe0-291b4b315ccc", "object_repr": "Response 33259f02-74a0-440e-9fe0-291b4b315ccc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 53, "fields": {"action_time": "2024-06-12T09:14:53.035Z", "user": 1, "content_type": 14, "object_id": "2d003ba7-ac80-422e-ab0b-54d306fdb581", "object_repr": "Response 2d003ba7-ac80-422e-ab0b-54d306fdb581 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 54, "fields": {"action_time": "2024-06-12T09:14:53.036Z", "user": 1, "content_type": 14, "object_id": "14bbe9d0-a473-4e09-8e64-4d8a7ff008af", "object_repr": "Response 14bbe9d0-a473-4e09-8e64-4d8a7ff008af (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 55, "fields": {"action_time": "2024-06-12T09:14:53.036Z", "user": 1, "content_type": 14, "object_id": "1477f7e5-86b9-4158-8a3a-a541f2b1567d", "object_repr": "Response 1477f7e5-86b9-4158-8a3a-a541f2b1567d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 56, "fields": {"action_time": "2024-06-12T09:14:53.037Z", "user": 1, "content_type": 14, "object_id": "10adf6d7-6ed5-461d-97c1-f88e00bf1dea", "object_repr": "Response 10adf6d7-6ed5-461d-97c1-f88e00bf1dea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 57, "fields": {"action_time": "2024-06-12T09:14:53.037Z", "user": 1, "content_type": 14, "object_id": "0d77106a-f524-471c-8cff-9e396f8644f6", "object_repr": "Response 0d77106a-f524-471c-8cff-9e396f8644f6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 58, "fields": {"action_time": "2024-06-12T09:38:08.878Z", "user": 1, "content_type": 10, "object_id": "5", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 59, "fields": {"action_time": "2024-06-12T09:38:24.620Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 60, "fields": {"action_time": "2024-06-19T07:14:50.691Z", "user": 1, "content_type": 11, "object_id": "11", "object_repr": "PointFeature object (11)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 61, "fields": {"action_time": "2024-06-19T08:24:23.942Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 62, "fields": {"action_time": "2024-06-19T08:25:21.756Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 63, "fields": {"action_time": "2024-06-19T08:26:18.491Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 64, "fields": {"action_time": "2024-06-19T08:27:02.847Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 65, "fields": {"action_time": "2024-06-19T08:38:35.400Z", "user": 1, "content_type": 13, "object_id": "5", "object_repr": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 66, "fields": {"action_time": "2024-06-19T08:42:09.618Z", "user": 1, "content_type": 13, "object_id": "5", "object_repr": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Choices for answers\"]}}]"}}, {"model": "admin.logentry", "pk": 67, "fields": {"action_time": "2024-06-19T08:43:49.115Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 68, "fields": {"action_time": "2024-06-19T08:44:11.100Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Survey\"]}}]"}}, {"model": "admin.logentry", "pk": 69, "fields": {"action_time": "2024-06-19T08:47:16.461Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Delf Civilian", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 70, "fields": {"action_time": "2024-06-19T08:47:29.242Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 71, "fields": {"action_time": "2024-06-19T08:49:58.236Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 72, "fields": {"action_time": "2024-06-19T08:51:24.027Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 73, "fields": {"action_time": "2024-06-19T08:58:01.017Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 74, "fields": {"action_time": "2024-06-19T08:58:09.325Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must be answered geospatially or not\"]}}]"}}, {"model": "admin.logentry", "pk": 75, "fields": {"action_time": "2024-06-19T08:59:21.534Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 76, "fields": {"action_time": "2024-06-19T09:00:23.973Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 77, "fields": {"action_time": "2024-06-19T09:00:54.475Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 78, "fields": {"action_time": "2024-06-19T09:02:13.700Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 79, "fields": {"action_time": "2024-06-19T09:02:45.567Z", "user": 1, "content_type": 13, "object_id": "12", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 80, "fields": {"action_time": "2024-06-19T09:04:32.182Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2024-06-19T09:05:39.526Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from? Please mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2024-06-19T09:06:41.649Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2024-06-19T09:07:43.664Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves? Please mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2024-06-19T09:09:07.072Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2024-06-19T09:09:44.119Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2024-06-19T09:11:08.749Z", "user": 1, "content_type": 13, "object_id": "19", "object_repr": "Is there anything else you would like to say about your neighbourhood?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2024-06-19T09:13:02.360Z", "user": 1, "content_type": 13, "object_id": "19", "object_repr": "Is there anything else you would like to say about your neighbourhood?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2024-06-19T09:13:22.411Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2024-06-19T09:13:47.888Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2024-06-19T09:14:06.526Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2024-06-19T09:14:43.073Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2024-06-19T09:15:15.005Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2024-06-19T09:16:01.220Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Order of where question is placed\"]}}]"}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2024-06-19T09:16:25.100Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2024-06-19T09:16:33.181Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?\r\nPlease ma", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2024-06-19T09:17:41.593Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?\r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2024-06-19T09:47:23.928Z", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Demo 2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2024-06-19T10:02:15.217Z", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN Survey", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2024-06-19T10:32:42.007Z", "user": 1, "content_type": 10, "object_id": "17", "object_repr": "fc264be6-e71b-40db-a2d4-0650df5eb7f9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2024-06-19T10:32:42.008Z", "user": 1, "content_type": 10, "object_id": "16", "object_repr": "90d5cd5f-0c83-47e8-92f4-d652980eae19", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2024-06-19T10:32:42.009Z", "user": 1, "content_type": 10, "object_id": "15", "object_repr": "587cabf5-4c8e-4445-88aa-d4573afbc69c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2024-06-19T10:32:42.010Z", "user": 1, "content_type": 10, "object_id": "14", "object_repr": "9617c8f9-abf6-4363-9236-faba07b29711", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2024-06-19T10:32:42.011Z", "user": 1, "content_type": 10, "object_id": "13", "object_repr": "80f87882-d094-494f-9011-f981d69d9aa3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2024-06-19T10:32:42.012Z", "user": 1, "content_type": 10, "object_id": "12", "object_repr": "6f3cd79b-927d-4015-b92f-f716f92fe168", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2024-06-19T10:32:42.013Z", "user": 1, "content_type": 10, "object_id": "11", "object_repr": "e3460970-fa78-44df-8f73-55d339abb661", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2024-06-19T10:32:42.014Z", "user": 1, "content_type": 10, "object_id": "10", "object_repr": "67786278-a399-4d68-8c5a-d297945f7b4d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2024-06-19T10:32:42.015Z", "user": 1, "content_type": 10, "object_id": "9", "object_repr": "6c49461f-d802-473f-9db8-089708282c4c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2024-06-19T10:32:42.016Z", "user": 1, "content_type": 10, "object_id": "8", "object_repr": "38968a9a-a3a3-458d-a31f-018470deeebf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2024-06-19T10:32:42.018Z", "user": 1, "content_type": 10, "object_id": "7", "object_repr": "1819d919-19eb-485e-94ad-f31938356b71", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2024-06-19T10:32:42.019Z", "user": 1, "content_type": 10, "object_id": "5", "object_repr": "5ea006b5-8b2b-409b-b983-ac20916d50be", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2024-06-19T10:32:42.020Z", "user": 1, "content_type": 10, "object_id": "4", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2024-06-19T10:35:11.275Z", "user": 1, "content_type": 10, "object_id": "6", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2024-06-19T10:35:18.919Z", "user": 1, "content_type": 10, "object_id": "20", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2024-06-19T10:35:31.094Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2024-06-20T15:22:57.506Z", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Demo 2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2024-06-20T15:23:37.933Z", "user": 1, "content_type": 13, "object_id": "20", "object_repr": "Enter a text:", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2024-06-20T15:46:59.229Z", "user": 1, "content_type": 15, "object_id": "1", "object_repr": "Response 06a4468e-328a-45f5-b0aa-71fb87376e50:Enter a text:", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 118, "fields": {"action_time": "2024-06-25T17:21:29.216Z", "user": 1, "content_type": 14, "object_id": "ff5abbc0-9d2e-4af1-bd0d-80eb44fa3945", "object_repr": "Response ff5abbc0-9d2e-4af1-bd0d-80eb44fa3945 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 119, "fields": {"action_time": "2024-06-25T17:21:29.223Z", "user": 1, "content_type": 14, "object_id": "fc737c9a-6bbf-4335-beb0-d7fa3e1ed506", "object_repr": "Response fc737c9a-6bbf-4335-beb0-d7fa3e1ed506 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 120, "fields": {"action_time": "2024-06-25T17:21:29.224Z", "user": 1, "content_type": 14, "object_id": "f94abed5-e278-44c2-8992-5edb544f5122", "object_repr": "Response f94abed5-e278-44c2-8992-5edb544f5122 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 121, "fields": {"action_time": "2024-06-25T17:21:29.225Z", "user": 1, "content_type": 14, "object_id": "f84e5761-78a1-4f0c-a092-49385f9a4838", "object_repr": "Response f84e5761-78a1-4f0c-a092-49385f9a4838 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 122, "fields": {"action_time": "2024-06-25T17:21:29.226Z", "user": 1, "content_type": 14, "object_id": "f0b95ea3-85f0-4eeb-b63f-76c880121386", "object_repr": "Response f0b95ea3-85f0-4eeb-b63f-76c880121386 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 123, "fields": {"action_time": "2024-06-25T17:21:29.226Z", "user": 1, "content_type": 14, "object_id": "efe299c4-1dd0-4b09-983b-bfa5f3708a3f", "object_repr": "Response efe299c4-1dd0-4b09-983b-bfa5f3708a3f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 124, "fields": {"action_time": "2024-06-25T17:21:29.227Z", "user": 1, "content_type": 14, "object_id": "ef7c0f25-5f06-478a-87bc-81d10b3e80c5", "object_repr": "Response ef7c0f25-5f06-478a-87bc-81d10b3e80c5 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 125, "fields": {"action_time": "2024-06-25T17:21:29.227Z", "user": 1, "content_type": 14, "object_id": "eeccb756-ba69-4d83-a92b-518f2685e4f1", "object_repr": "Response eeccb756-ba69-4d83-a92b-518f2685e4f1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 126, "fields": {"action_time": "2024-06-25T17:21:29.228Z", "user": 1, "content_type": 14, "object_id": "ed5c9390-1554-4ee5-9ee3-5b00656fe5e2", "object_repr": "Response ed5c9390-1554-4ee5-9ee3-5b00656fe5e2 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 127, "fields": {"action_time": "2024-06-25T17:21:29.228Z", "user": 1, "content_type": 14, "object_id": "e2a7ec0a-5f21-4bf8-a97c-6c2c7fa3aa0e", "object_repr": "Response e2a7ec0a-5f21-4bf8-a97c-6c2c7fa3aa0e (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 128, "fields": {"action_time": "2024-06-25T17:21:29.229Z", "user": 1, "content_type": 14, "object_id": "e1dc74b9-053d-4943-8b15-283da3547b1b", "object_repr": "Response e1dc74b9-053d-4943-8b15-283da3547b1b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 129, "fields": {"action_time": "2024-06-25T17:21:29.230Z", "user": 1, "content_type": 14, "object_id": "de70fe95-6b25-4502-b863-b8fa4ae0d7eb", "object_repr": "Response de70fe95-6b25-4502-b863-b8fa4ae0d7eb (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 130, "fields": {"action_time": "2024-06-25T17:21:29.230Z", "user": 1, "content_type": 14, "object_id": "de360f11-86d0-4057-acd8-1c553d4c8987", "object_repr": "Response de360f11-86d0-4057-acd8-1c553d4c8987 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 131, "fields": {"action_time": "2024-06-25T17:21:29.231Z", "user": 1, "content_type": 14, "object_id": "d91e5d1a-085a-45a9-8a5a-b1907122907c", "object_repr": "Response d91e5d1a-085a-45a9-8a5a-b1907122907c (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 132, "fields": {"action_time": "2024-06-25T17:21:29.231Z", "user": 1, "content_type": 14, "object_id": "d718f445-1584-4bd5-b009-d0f8a83292c9", "object_repr": "Response d718f445-1584-4bd5-b009-d0f8a83292c9 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 133, "fields": {"action_time": "2024-06-25T17:21:29.232Z", "user": 1, "content_type": 14, "object_id": "d3dc4efe-b0dc-44d2-91e9-dca422d949ea", "object_repr": "Response d3dc4efe-b0dc-44d2-91e9-dca422d949ea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 134, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d2235f98-d44e-4031-93a0-f6ff1fd8a622", "object_repr": "Response d2235f98-d44e-4031-93a0-f6ff1fd8a622 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 135, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d1915d3c-1af9-4b70-a255-cdff8bec59ee", "object_repr": "Response d1915d3c-1af9-4b70-a255-cdff8bec59ee (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 136, "fields": {"action_time": "2024-06-25T17:21:29.233Z", "user": 1, "content_type": 14, "object_id": "d0851610-571f-4b18-b8df-4671cf35f162", "object_repr": "Response d0851610-571f-4b18-b8df-4671cf35f162 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 137, "fields": {"action_time": "2024-06-25T17:21:29.234Z", "user": 1, "content_type": 14, "object_id": "d05b534b-f5e6-4f33-beac-9ef4f8600fe0", "object_repr": "Response d05b534b-f5e6-4f33-beac-9ef4f8600fe0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 138, "fields": {"action_time": "2024-06-25T17:21:29.234Z", "user": 1, "content_type": 14, "object_id": "cfbb343a-f842-4aee-a537-92b3bb0b27d3", "object_repr": "Response cfbb343a-f842-4aee-a537-92b3bb0b27d3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 139, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ce8b57e2-ad59-4202-b039-6fa0b2632bf8", "object_repr": "Response ce8b57e2-ad59-4202-b039-6fa0b2632bf8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 140, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ce249dbd-ba52-4844-a18a-6c688968c94b", "object_repr": "Response ce249dbd-ba52-4844-a18a-6c688968c94b (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 141, "fields": {"action_time": "2024-06-25T17:21:29.235Z", "user": 1, "content_type": 14, "object_id": "ccb775ce-b774-456b-974a-338b742214b5", "object_repr": "Response ccb775ce-b774-456b-974a-338b742214b5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 142, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c9bb0d6b-ebc3-495c-8704-78d95831c737", "object_repr": "Response c9bb0d6b-ebc3-495c-8704-78d95831c737 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 143, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c5c2c76b-83aa-425f-9fc9-6bb22f49770a", "object_repr": "Response c5c2c76b-83aa-425f-9fc9-6bb22f49770a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 144, "fields": {"action_time": "2024-06-25T17:21:29.236Z", "user": 1, "content_type": 14, "object_id": "c4d4196a-1843-48f0-8d6d-94c6a604307f", "object_repr": "Response c4d4196a-1843-48f0-8d6d-94c6a604307f (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 145, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c48913ed-feaa-4100-a394-0d425631a04c", "object_repr": "Response c48913ed-feaa-4100-a394-0d425631a04c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 146, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c3bc6ce7-6a4f-467f-bc92-ab30614de0a6", "object_repr": "Response c3bc6ce7-6a4f-467f-bc92-ab30614de0a6 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 147, "fields": {"action_time": "2024-06-25T17:21:29.237Z", "user": 1, "content_type": 14, "object_id": "c0654806-882a-4592-8f89-b72c533f16bc", "object_repr": "Response c0654806-882a-4592-8f89-b72c533f16bc (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 148, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "ba3cb7b4-4030-4d6b-8e9f-c2ab4c56d8d2", "object_repr": "Response ba3cb7b4-4030-4d6b-8e9f-c2ab4c56d8d2 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 149, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "b6487f8e-a2cf-4240-bb09-28efb1d2889b", "object_repr": "Response b6487f8e-a2cf-4240-bb09-28efb1d2889b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 150, "fields": {"action_time": "2024-06-25T17:21:29.238Z", "user": 1, "content_type": 14, "object_id": "b401a71d-f24a-42ba-8753-474450cd5971", "object_repr": "Response b401a71d-f24a-42ba-8753-474450cd5971 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 151, "fields": {"action_time": "2024-06-25T17:21:29.239Z", "user": 1, "content_type": 14, "object_id": "ace22b6e-18f3-4c97-a3f6-d54d1f17878c", "object_repr": "Response ace22b6e-18f3-4c97-a3f6-d54d1f17878c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 152, "fields": {"action_time": "2024-06-25T17:21:29.239Z", "user": 1, "content_type": 14, "object_id": "aba42297-f5ec-4fdc-8bc9-f8e8623683c4", "object_repr": "Response aba42297-f5ec-4fdc-8bc9-f8e8623683c4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 153, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "aa7f21a5-90f8-424b-9ca7-f5fbb22aeba0", "object_repr": "Response aa7f21a5-90f8-424b-9ca7-f5fbb22aeba0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 154, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a9bb5ef0-f2a5-42dc-bff0-19ab0874759f", "object_repr": "Response a9bb5ef0-f2a5-42dc-bff0-19ab0874759f (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 155, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a9ad1053-3c07-4c5f-b8d9-09f686309f73", "object_repr": "Response a9ad1053-3c07-4c5f-b8d9-09f686309f73 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 156, "fields": {"action_time": "2024-06-25T17:21:29.240Z", "user": 1, "content_type": 14, "object_id": "a64e07a9-a6dc-44f5-a75d-9fc5ee68e8e8", "object_repr": "Response a64e07a9-a6dc-44f5-a75d-9fc5ee68e8e8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 157, "fields": {"action_time": "2024-06-25T17:21:29.241Z", "user": 1, "content_type": 14, "object_id": "a53d16c9-22a2-432e-b433-6363c31f9229", "object_repr": "Response a53d16c9-22a2-432e-b433-6363c31f9229 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 158, "fields": {"action_time": "2024-06-25T17:21:29.241Z", "user": 1, "content_type": 14, "object_id": "a0c3f20c-6b0c-45b9-b704-55c6c06605f4", "object_repr": "Response a0c3f20c-6b0c-45b9-b704-55c6c06605f4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 159, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9ce722d3-cc8e-4713-b4b1-58a17f72243b", "object_repr": "Response 9ce722d3-cc8e-4713-b4b1-58a17f72243b (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 160, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9b93dad4-3d35-468b-bdb6-15f49c09fd22", "object_repr": "Response 9b93dad4-3d35-468b-bdb6-15f49c09fd22 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 161, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9a7d09e8-d894-4d79-9dab-c74ba419ddf4", "object_repr": "Response 9a7d09e8-d894-4d79-9dab-c74ba419ddf4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 162, "fields": {"action_time": "2024-06-25T17:21:29.242Z", "user": 1, "content_type": 14, "object_id": "9a091816-1e7a-402e-9bac-45de0630b615", "object_repr": "Response 9a091816-1e7a-402e-9bac-45de0630b615 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 163, "fields": {"action_time": "2024-06-25T17:21:29.243Z", "user": 1, "content_type": 14, "object_id": "991537b1-e78b-4587-b519-6bc029a675c1", "object_repr": "Response 991537b1-e78b-4587-b519-6bc029a675c1 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 164, "fields": {"action_time": "2024-06-25T17:21:29.243Z", "user": 1, "content_type": 14, "object_id": "9652689f-46b5-4366-8287-75327830ba0a", "object_repr": "Response 9652689f-46b5-4366-8287-75327830ba0a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 165, "fields": {"action_time": "2024-06-25T17:21:29.244Z", "user": 1, "content_type": 14, "object_id": "90399364-c8b6-4740-90fd-358bd01b0d03", "object_repr": "Response 90399364-c8b6-4740-90fd-358bd01b0d03 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 166, "fields": {"action_time": "2024-06-25T17:21:29.244Z", "user": 1, "content_type": 14, "object_id": "8bfaa50f-d917-4c1f-9749-13dcc80e6b60", "object_repr": "Response 8bfaa50f-d917-4c1f-9749-13dcc80e6b60 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 167, "fields": {"action_time": "2024-06-25T17:21:29.245Z", "user": 1, "content_type": 14, "object_id": "88679525-10fa-4dfc-82fd-002d43c12c9d", "object_repr": "Response 88679525-10fa-4dfc-82fd-002d43c12c9d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 168, "fields": {"action_time": "2024-06-25T17:21:29.245Z", "user": 1, "content_type": 14, "object_id": "869d8343-37b5-4474-a87c-630f3b86633d", "object_repr": "Response 869d8343-37b5-4474-a87c-630f3b86633d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 169, "fields": {"action_time": "2024-06-25T17:21:29.246Z", "user": 1, "content_type": 14, "object_id": "7ffe43f9-6813-4415-86e0-09b2624702ea", "object_repr": "Response 7ffe43f9-6813-4415-86e0-09b2624702ea (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 170, "fields": {"action_time": "2024-06-25T17:21:29.246Z", "user": 1, "content_type": 14, "object_id": "7edb0eec-58a8-4f52-8314-b674d1c67ed4", "object_repr": "Response 7edb0eec-58a8-4f52-8314-b674d1c67ed4 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 171, "fields": {"action_time": "2024-06-25T17:21:29.247Z", "user": 1, "content_type": 14, "object_id": "7d0b92dc-2a3b-457f-96e1-a2b8a6be9e4d", "object_repr": "Response 7d0b92dc-2a3b-457f-96e1-a2b8a6be9e4d (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 172, "fields": {"action_time": "2024-06-25T17:21:29.247Z", "user": 1, "content_type": 14, "object_id": "7a6f0ef8-9f9c-4864-9258-5e94d36a78c5", "object_repr": "Response 7a6f0ef8-9f9c-4864-9258-5e94d36a78c5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 173, "fields": {"action_time": "2024-06-25T17:21:29.248Z", "user": 1, "content_type": 14, "object_id": "778c0e9f-5896-41ad-b727-48c836c6b987", "object_repr": "Response 778c0e9f-5896-41ad-b727-48c836c6b987 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 174, "fields": {"action_time": "2024-06-25T17:21:29.248Z", "user": 1, "content_type": 14, "object_id": "73b6d6f1-acfd-4ef5-b86a-c3d2489a709c", "object_repr": "Response 73b6d6f1-acfd-4ef5-b86a-c3d2489a709c (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 175, "fields": {"action_time": "2024-06-25T17:21:29.249Z", "user": 1, "content_type": 14, "object_id": "6e1a2152-3c8b-4ea3-8d6b-031e8a6503d0", "object_repr": "Response 6e1a2152-3c8b-4ea3-8d6b-031e8a6503d0 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 176, "fields": {"action_time": "2024-06-25T17:21:29.249Z", "user": 1, "content_type": 14, "object_id": "687ee0e0-2666-4ef8-989e-1602024429e5", "object_repr": "Response 687ee0e0-2666-4ef8-989e-1602024429e5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 177, "fields": {"action_time": "2024-06-25T17:21:29.250Z", "user": 1, "content_type": 14, "object_id": "677e4063-bf25-47b0-bd1a-ddb4a7c8e8ca", "object_repr": "Response 677e4063-bf25-47b0-bd1a-ddb4a7c8e8ca (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 178, "fields": {"action_time": "2024-06-25T17:21:29.250Z", "user": 1, "content_type": 14, "object_id": "6774a138-95eb-4ee7-b187-6f573edd9153", "object_repr": "Response 6774a138-95eb-4ee7-b187-6f573edd9153 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 179, "fields": {"action_time": "2024-06-25T17:21:29.251Z", "user": 1, "content_type": 14, "object_id": "6710d547-7538-4de6-9c5a-ceb8c27d6a13", "object_repr": "Response 6710d547-7538-4de6-9c5a-ceb8c27d6a13 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 180, "fields": {"action_time": "2024-06-25T17:21:29.251Z", "user": 1, "content_type": 14, "object_id": "66e2032a-f64c-40b1-b649-c82e3faa3453", "object_repr": "Response 66e2032a-f64c-40b1-b649-c82e3faa3453 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 181, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "65dda732-a603-4325-ab00-5f17b4000fe7", "object_repr": "Response 65dda732-a603-4325-ab00-5f17b4000fe7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 182, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "6535d611-7b87-4131-91b9-da3500338da0", "object_repr": "Response 6535d611-7b87-4131-91b9-da3500338da0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 183, "fields": {"action_time": "2024-06-25T17:21:29.252Z", "user": 1, "content_type": 14, "object_id": "59db8bc6-0c43-4e6b-93ea-cd2493baafb4", "object_repr": "Response 59db8bc6-0c43-4e6b-93ea-cd2493baafb4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 184, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "566007f3-b6c3-4444-baa4-58760ebabba5", "object_repr": "Response 566007f3-b6c3-4444-baa4-58760ebabba5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 185, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "564d4b47-2f4b-487f-a8bc-bd24afac79e1", "object_repr": "Response 564d4b47-2f4b-487f-a8bc-bd24afac79e1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 186, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "4e8895af-8675-41d5-9451-d133c61bc411", "object_repr": "Response 4e8895af-8675-41d5-9451-d133c61bc411 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 187, "fields": {"action_time": "2024-06-25T17:21:29.253Z", "user": 1, "content_type": 14, "object_id": "4afd781b-e507-4d3c-83e1-382960227c50", "object_repr": "Response 4afd781b-e507-4d3c-83e1-382960227c50 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 188, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "4864b1e3-f3aa-4d92-b29d-63452f18a2bd", "object_repr": "Response 4864b1e3-f3aa-4d92-b29d-63452f18a2bd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 189, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "43e69429-b327-41b6-8dbb-6bc0a8892971", "object_repr": "Response 43e69429-b327-41b6-8dbb-6bc0a8892971 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 190, "fields": {"action_time": "2024-06-25T17:21:29.254Z", "user": 1, "content_type": 14, "object_id": "42397e66-a2b5-4002-a45b-f993cd88f2a5", "object_repr": "Response 42397e66-a2b5-4002-a45b-f993cd88f2a5 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 191, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "40d61bb3-ad38-431b-a114-0674ebadf154", "object_repr": "Response 40d61bb3-ad38-431b-a114-0674ebadf154 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 192, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "3d6c1b80-5b7d-4c46-b793-058528a0cf97", "object_repr": "Response 3d6c1b80-5b7d-4c46-b793-058528a0cf97 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 193, "fields": {"action_time": "2024-06-25T17:21:29.255Z", "user": 1, "content_type": 14, "object_id": "370aa354-2202-4dfd-b4c6-0b9f70afe2b7", "object_repr": "Response 370aa354-2202-4dfd-b4c6-0b9f70afe2b7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 194, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "3681ab92-9b74-4c9d-adf4-2ade229e6846", "object_repr": "Response 3681ab92-9b74-4c9d-adf4-2ade229e6846 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 195, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "2daab1b8-6bb1-402a-a544-ed5f89ec95b8", "object_repr": "Response 2daab1b8-6bb1-402a-a544-ed5f89ec95b8 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 196, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "280fa79e-2647-40f0-9d8a-fc810096cf5a", "object_repr": "Response 280fa79e-2647-40f0-9d8a-fc810096cf5a (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 197, "fields": {"action_time": "2024-06-25T17:21:29.256Z", "user": 1, "content_type": 14, "object_id": "24e576d1-7c0e-45b8-bd8a-f5923b1f2132", "object_repr": "Response 24e576d1-7c0e-45b8-bd8a-f5923b1f2132 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 198, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "2125f83a-5d48-4634-b499-02e8ed4042cf", "object_repr": "Response 2125f83a-5d48-4634-b499-02e8ed4042cf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 199, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "20ead559-7959-4ed9-83f0-09dd89bfcfe4", "object_repr": "Response 20ead559-7959-4ed9-83f0-09dd89bfcfe4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 200, "fields": {"action_time": "2024-06-25T17:21:29.257Z", "user": 1, "content_type": 14, "object_id": "1e339b59-a5d8-4a17-9175-82263de0a1c6", "object_repr": "Response 1e339b59-a5d8-4a17-9175-82263de0a1c6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 201, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "180b0e1f-92c8-41e1-9693-015a366c8f75", "object_repr": "Response 180b0e1f-92c8-41e1-9693-015a366c8f75 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 202, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "1267e3f9-4d0a-40f6-89ee-bd3fb2c69570", "object_repr": "Response 1267e3f9-4d0a-40f6-89ee-bd3fb2c69570 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 203, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "115a29e8-96d8-4760-bf30-85fbbaa7d5e3", "object_repr": "Response 115a29e8-96d8-4760-bf30-85fbbaa7d5e3 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 204, "fields": {"action_time": "2024-06-25T17:21:29.258Z", "user": 1, "content_type": 14, "object_id": "0e68f70b-e245-4617-9a31-da7a46714fc7", "object_repr": "Response 0e68f70b-e245-4617-9a31-da7a46714fc7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 205, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "0af2c42c-aad1-4ccf-bc46-794f16a13569", "object_repr": "Response 0af2c42c-aad1-4ccf-bc46-794f16a13569 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 206, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "0a6dfea5-3958-480d-ac9d-1322998a2c01", "object_repr": "Response 0a6dfea5-3958-480d-ac9d-1322998a2c01 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 207, "fields": {"action_time": "2024-06-25T17:21:29.259Z", "user": 1, "content_type": 14, "object_id": "095751b9-4178-4139-b3d0-6f3d7a9724ec", "object_repr": "Response 095751b9-4178-4139-b3d0-6f3d7a9724ec (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 208, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "08e2e978-4466-4fbd-ac27-a7a9a7e223e4", "object_repr": "Response 08e2e978-4466-4fbd-ac27-a7a9a7e223e4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 209, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "0893bb78-931f-47ae-9c1c-592834ba3505", "object_repr": "Response 0893bb78-931f-47ae-9c1c-592834ba3505 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 210, "fields": {"action_time": "2024-06-25T17:21:29.260Z", "user": 1, "content_type": 14, "object_id": "06a4468e-328a-45f5-b0aa-71fb87376e50", "object_repr": "Response 06a4468e-328a-45f5-b0aa-71fb87376e50 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 211, "fields": {"action_time": "2024-06-25T17:21:29.261Z", "user": 1, "content_type": 14, "object_id": "0561cd3a-bfad-4ffa-aacd-743c9afd25f4", "object_repr": "Response 0561cd3a-bfad-4ffa-aacd-743c9afd25f4 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 212, "fields": {"action_time": "2024-06-25T17:21:29.261Z", "user": 1, "content_type": 14, "object_id": "0094628c-f5b2-4d27-8400-d255dbbee1c0", "object_repr": "Response 0094628c-f5b2-4d27-8400-d255dbbee1c0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 213, "fields": {"action_time": "2024-06-26T05:12:11.353Z", "user": 1, "content_type": 14, "object_id": "f445ad60-f3b6-44c7-bd6d-446f5c215acf", "object_repr": "Response f445ad60-f3b6-44c7-bd6d-446f5c215acf (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 214, "fields": {"action_time": "2024-06-26T05:12:11.357Z", "user": 1, "content_type": 14, "object_id": "efcd9127-9a24-476a-af00-f828eb76b941", "object_repr": "Response efcd9127-9a24-476a-af00-f828eb76b941 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 215, "fields": {"action_time": "2024-06-26T05:12:11.359Z", "user": 1, "content_type": 14, "object_id": "e16d9a8b-a621-48ca-a599-906604664ebe", "object_repr": "Response e16d9a8b-a621-48ca-a599-906604664ebe (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 216, "fields": {"action_time": "2024-06-26T05:12:11.359Z", "user": 1, "content_type": 14, "object_id": "e0509355-0193-4fbd-bf4c-188dc6605025", "object_repr": "Response e0509355-0193-4fbd-bf4c-188dc6605025 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 217, "fields": {"action_time": "2024-06-26T05:12:11.360Z", "user": 1, "content_type": 14, "object_id": "d7577a6f-326b-4416-a557-e9f7df686308", "object_repr": "Response d7577a6f-326b-4416-a557-e9f7df686308 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 218, "fields": {"action_time": "2024-06-26T05:12:11.361Z", "user": 1, "content_type": 14, "object_id": "bf085e8e-a06d-4137-a9f9-2001bdcb0fa1", "object_repr": "Response bf085e8e-a06d-4137-a9f9-2001bdcb0fa1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 219, "fields": {"action_time": "2024-06-26T05:12:11.362Z", "user": 1, "content_type": 14, "object_id": "a2cfa096-0fd2-45e2-a793-bed7625c9fa6", "object_repr": "Response a2cfa096-0fd2-45e2-a793-bed7625c9fa6 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 220, "fields": {"action_time": "2024-06-26T05:12:11.363Z", "user": 1, "content_type": 14, "object_id": "9a0dd6c1-cb44-4232-af99-e414a5f669b8", "object_repr": "Response 9a0dd6c1-cb44-4232-af99-e414a5f669b8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 221, "fields": {"action_time": "2024-06-26T05:12:11.364Z", "user": 1, "content_type": 14, "object_id": "9156fcba-752f-4579-8aea-afb78bae19f0", "object_repr": "Response 9156fcba-752f-4579-8aea-afb78bae19f0 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 222, "fields": {"action_time": "2024-06-26T05:12:11.365Z", "user": 1, "content_type": 14, "object_id": "85cbf186-cd54-4dac-a9c4-b133ebd833fd", "object_repr": "Response 85cbf186-cd54-4dac-a9c4-b133ebd833fd (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 223, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "75cf9331-c130-401d-a339-55204a3aba88", "object_repr": "Response 75cf9331-c130-401d-a339-55204a3aba88 (Demo 2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 224, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "708aec38-c188-497f-8a5a-47cd8978fef8", "object_repr": "Response 708aec38-c188-497f-8a5a-47cd8978fef8 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 225, "fields": {"action_time": "2024-06-26T05:12:11.366Z", "user": 1, "content_type": 14, "object_id": "5a88dfa0-16fb-48ca-85ba-678517f0a9c3", "object_repr": "Response 5a88dfa0-16fb-48ca-85ba-678517f0a9c3 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 226, "fields": {"action_time": "2024-06-26T05:12:11.367Z", "user": 1, "content_type": 14, "object_id": "401c425f-e9f5-4048-b4cd-0feb67fc1f55", "object_repr": "Response 401c425f-e9f5-4048-b4cd-0feb67fc1f55 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 227, "fields": {"action_time": "2024-06-26T05:12:11.367Z", "user": 1, "content_type": 14, "object_id": "33d98c45-0df6-442a-b993-33b9d46e12a1", "object_repr": "Response 33d98c45-0df6-442a-b993-33b9d46e12a1 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 228, "fields": {"action_time": "2024-06-26T05:12:11.369Z", "user": 1, "content_type": 14, "object_id": "2f287fe1-2069-4d87-bb4d-063e5cdc24c7", "object_repr": "Response 2f287fe1-2069-4d87-bb4d-063e5cdc24c7 (Demo 1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 229, "fields": {"action_time": "2024-06-26T05:52:33.517Z", "user": 1, "content_type": 13, "object_id": "21", "object_repr": "Does this work?", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 230, "fields": {"action_time": "2024-06-26T06:08:17.343Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 231, "fields": {"action_time": "2024-06-26T06:11:05.462Z", "user": 1, "content_type": 13, "object_id": "12", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from? \r\nPlease mark these on the map.", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 232, "fields": {"action_time": "2024-06-26T06:11:54.049Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe? \r\nPlease mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 233, "fields": {"action_time": "2024-06-26T06:12:27.912Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain? Please mark it on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 234, "fields": {"action_time": "2024-06-26T06:12:39.377Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem? Please mark these on the map.", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must show the text field or not\"]}}]"}}, {"model": "admin.logentry", "pk": 235, "fields": {"action_time": "2024-06-26T06:26:41.410Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 236, "fields": {"action_time": "2024-06-26T06:26:51.889Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 237, "fields": {"action_time": "2024-06-26T06:27:05.715Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 238, "fields": {"action_time": "2024-06-26T06:27:15.620Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 239, "fields": {"action_time": "2024-06-26T06:27:27.214Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 240, "fields": {"action_time": "2024-06-26T06:27:40.706Z", "user": 1, "content_type": 13, "object_id": "13", "object_repr": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 241, "fields": {"action_time": "2024-06-26T06:27:51.156Z", "user": 1, "content_type": 13, "object_id": "14", "object_repr": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 242, "fields": {"action_time": "2024-06-26T06:28:00.838Z", "user": 1, "content_type": 13, "object_id": "16", "object_repr": "In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 243, "fields": {"action_time": "2024-06-26T06:28:09.476Z", "user": 1, "content_type": 13, "object_id": "17", "object_repr": "In your neighbourhood, where do you see water on the ground after a heavy rain?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 244, "fields": {"action_time": "2024-06-26T06:28:18.219Z", "user": 1, "content_type": 13, "object_id": "15", "object_repr": "Could you identify the places in your neighbourhood where you feel unsafe?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 245, "fields": {"action_time": "2024-06-26T06:28:29.201Z", "user": 1, "content_type": 13, "object_id": "18", "object_repr": "Could you identify the places in your neighbourhood where waste/trash is a problem?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 246, "fields": {"action_time": "2024-06-26T06:32:15.982Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Civilian NL", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the MapView location\", \"Map service specific options\"]}}]"}}, {"model": "admin.logentry", "pk": 247, "fields": {"action_time": "2024-06-26T06:33:02.475Z", "user": 1, "content_type": 13, "object_id": "8", "object_repr": "What is the closest green area to your house?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\", \"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 248, "fields": {"action_time": "2024-06-26T06:33:26.892Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 249, "fields": {"action_time": "2024-06-26T06:34:40.458Z", "user": 1, "content_type": 10, "object_id": "18", "object_repr": "Civilian NL", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 250, "fields": {"action_time": "2024-06-26T06:36:29.116Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 251, "fields": {"action_time": "2024-06-26T06:41:48.114Z", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Where is the train station?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 252, "fields": {"action_time": "2024-06-26T14:44:58.797Z", "user": 1, "content_type": 15, "object_id": "40", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 253, "fields": {"action_time": "2024-06-26T14:44:58.802Z", "user": 1, "content_type": 15, "object_id": "39", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 254, "fields": {"action_time": "2024-06-26T14:44:58.802Z", "user": 1, "content_type": 15, "object_id": "38", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 255, "fields": {"action_time": "2024-06-26T14:44:58.803Z", "user": 1, "content_type": 15, "object_id": "37", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 256, "fields": {"action_time": "2024-06-26T14:44:58.803Z", "user": 1, "content_type": 15, "object_id": "36", "object_repr": "Response 44b901bb-07b9-4bfa-b72b-554b8d2f803d:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 257, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "35", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 258, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "34", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 259, "fields": {"action_time": "2024-06-26T14:44:58.804Z", "user": 1, "content_type": 15, "object_id": "33", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 260, "fields": {"action_time": "2024-06-26T15:02:50.907Z", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Demo 2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 261, "fields": {"action_time": "2024-06-26T15:05:19.935Z", "user": 1, "content_type": 10, "object_id": "104", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 262, "fields": {"action_time": "2024-06-26T15:05:19.938Z", "user": 1, "content_type": 10, "object_id": "103", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 263, "fields": {"action_time": "2024-06-26T15:05:19.939Z", "user": 1, "content_type": 10, "object_id": "102", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 264, "fields": {"action_time": "2024-06-26T15:05:19.939Z", "user": 1, "content_type": 10, "object_id": "101", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 265, "fields": {"action_time": "2024-06-26T15:05:19.940Z", "user": 1, "content_type": 10, "object_id": "100", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 266, "fields": {"action_time": "2024-06-26T15:05:19.941Z", "user": 1, "content_type": 10, "object_id": "99", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 267, "fields": {"action_time": "2024-06-26T15:05:19.941Z", "user": 1, "content_type": 10, "object_id": "98", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 268, "fields": {"action_time": "2024-06-26T15:05:19.942Z", "user": 1, "content_type": 10, "object_id": "97", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 269, "fields": {"action_time": "2024-06-26T15:05:19.943Z", "user": 1, "content_type": 10, "object_id": "96", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 270, "fields": {"action_time": "2024-06-26T15:05:19.943Z", "user": 1, "content_type": 10, "object_id": "95", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 271, "fields": {"action_time": "2024-06-26T15:05:19.944Z", "user": 1, "content_type": 10, "object_id": "94", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 272, "fields": {"action_time": "2024-06-26T15:05:19.944Z", "user": 1, "content_type": 10, "object_id": "93", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 273, "fields": {"action_time": "2024-06-26T15:05:19.945Z", "user": 1, "content_type": 10, "object_id": "92", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 274, "fields": {"action_time": "2024-06-26T15:05:19.945Z", "user": 1, "content_type": 10, "object_id": "91", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 275, "fields": {"action_time": "2024-06-26T15:05:19.946Z", "user": 1, "content_type": 10, "object_id": "90", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 276, "fields": {"action_time": "2024-06-26T15:05:19.947Z", "user": 1, "content_type": 10, "object_id": "89", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 277, "fields": {"action_time": "2024-06-26T15:05:19.948Z", "user": 1, "content_type": 10, "object_id": "88", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 278, "fields": {"action_time": "2024-06-26T15:05:19.948Z", "user": 1, "content_type": 10, "object_id": "87", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 279, "fields": {"action_time": "2024-06-26T15:05:19.950Z", "user": 1, "content_type": 10, "object_id": "86", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 280, "fields": {"action_time": "2024-06-26T15:05:19.950Z", "user": 1, "content_type": 10, "object_id": "85", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 281, "fields": {"action_time": "2024-06-26T15:05:19.951Z", "user": 1, "content_type": 10, "object_id": "84", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 282, "fields": {"action_time": "2024-06-26T15:05:19.951Z", "user": 1, "content_type": 10, "object_id": "83", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 283, "fields": {"action_time": "2024-06-26T15:05:19.952Z", "user": 1, "content_type": 10, "object_id": "82", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 284, "fields": {"action_time": "2024-06-26T15:05:19.952Z", "user": 1, "content_type": 10, "object_id": "81", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 285, "fields": {"action_time": "2024-06-26T15:05:19.953Z", "user": 1, "content_type": 10, "object_id": "80", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 286, "fields": {"action_time": "2024-06-26T15:05:19.953Z", "user": 1, "content_type": 10, "object_id": "79", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 287, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "78", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 288, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "77", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 289, "fields": {"action_time": "2024-06-26T15:05:19.954Z", "user": 1, "content_type": 10, "object_id": "76", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 290, "fields": {"action_time": "2024-06-26T15:05:19.955Z", "user": 1, "content_type": 10, "object_id": "75", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 291, "fields": {"action_time": "2024-06-26T15:05:19.955Z", "user": 1, "content_type": 10, "object_id": "74", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2024-06-26T15:05:19.956Z", "user": 1, "content_type": 10, "object_id": "73", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2024-06-26T15:05:19.957Z", "user": 1, "content_type": 10, "object_id": "72", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 294, "fields": {"action_time": "2024-06-26T15:05:19.957Z", "user": 1, "content_type": 10, "object_id": "71", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 295, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "70", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 296, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "69", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 297, "fields": {"action_time": "2024-06-26T15:05:19.958Z", "user": 1, "content_type": 10, "object_id": "68", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 298, "fields": {"action_time": "2024-06-26T15:05:19.959Z", "user": 1, "content_type": 10, "object_id": "67", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 299, "fields": {"action_time": "2024-06-26T15:05:19.959Z", "user": 1, "content_type": 10, "object_id": "66", "object_repr": "bb17d6d7-1323-43e2-978c-2caa77b0e824", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 300, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "65", "object_repr": "a6218c2a-8442-4935-a0b4-fea4f1c9a63e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 301, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "64", "object_repr": "03b8955b-4e0b-4e84-a720-981929cdac5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 302, "fields": {"action_time": "2024-06-26T15:05:19.960Z", "user": 1, "content_type": 10, "object_id": "63", "object_repr": "c8a52d5d-4bfe-4d2b-950a-fe34b38d3ae9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 303, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "62", "object_repr": "7b5dd311-065c-44ff-9c9f-9fc91c91991f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 304, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "61", "object_repr": "e961efff-9c0a-4707-a965-0cbb6d875e81", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 305, "fields": {"action_time": "2024-06-26T15:05:19.961Z", "user": 1, "content_type": 10, "object_id": "60", "object_repr": "14badb36-7466-4397-95eb-cd66da8ee601", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 306, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "59", "object_repr": "a4a19d47-82aa-4401-9357-27f1171adbf2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 307, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "58", "object_repr": "7094066a-59ca-4282-8dbf-d2aedfb12563", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 308, "fields": {"action_time": "2024-06-26T15:05:19.962Z", "user": 1, "content_type": 10, "object_id": "57", "object_repr": "797da630-1702-4b18-9c00-eaf09a0f3311", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 309, "fields": {"action_time": "2024-06-26T15:05:19.963Z", "user": 1, "content_type": 10, "object_id": "56", "object_repr": "8f54748f-2ca9-449d-b481-c58009b42cfe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 310, "fields": {"action_time": "2024-06-26T15:05:19.964Z", "user": 1, "content_type": 10, "object_id": "55", "object_repr": "6fd27454-8847-4e90-9da5-0048bdf5ec0f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 311, "fields": {"action_time": "2024-06-26T15:05:19.964Z", "user": 1, "content_type": 10, "object_id": "54", "object_repr": "7aa9a336-35b6-4b0a-bedf-a1077f96cc1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 312, "fields": {"action_time": "2024-06-26T15:05:19.965Z", "user": 1, "content_type": 10, "object_id": "53", "object_repr": "f7c1783c-ddfc-4278-8acf-025f42284756", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 313, "fields": {"action_time": "2024-06-26T15:05:19.966Z", "user": 1, "content_type": 10, "object_id": "52", "object_repr": "eaed28c8-0fd8-4557-9efb-8c21f749945f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 314, "fields": {"action_time": "2024-06-26T15:05:19.966Z", "user": 1, "content_type": 10, "object_id": "51", "object_repr": "f4020528-a6ef-43e0-a4b9-8b2b464c892d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 315, "fields": {"action_time": "2024-06-26T15:05:19.967Z", "user": 1, "content_type": 10, "object_id": "50", "object_repr": "513684d5-65cb-4692-92a6-cfa1061bb7fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 316, "fields": {"action_time": "2024-06-26T15:05:19.967Z", "user": 1, "content_type": 10, "object_id": "49", "object_repr": "28679261-8de2-46e6-bf27-a3f0116629fd", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 317, "fields": {"action_time": "2024-06-26T15:05:19.968Z", "user": 1, "content_type": 10, "object_id": "48", "object_repr": "83c53f31-16e2-4816-b937-76bd0910d383", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 318, "fields": {"action_time": "2024-06-26T15:05:19.968Z", "user": 1, "content_type": 10, "object_id": "47", "object_repr": "f5ff020e-f627-4110-a7d9-8f83e9c7472a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 319, "fields": {"action_time": "2024-06-26T15:05:19.969Z", "user": 1, "content_type": 10, "object_id": "46", "object_repr": "2a7dc336-2612-4704-80c4-efda4776cdbb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 320, "fields": {"action_time": "2024-06-26T15:05:19.969Z", "user": 1, "content_type": 10, "object_id": "45", "object_repr": "0a951213-ff10-4563-8202-5b7576b3d056", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 321, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "44", "object_repr": "36fb92ad-16fc-4467-a1e2-67878582f8f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 322, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "43", "object_repr": "d36fcfd6-9a8a-4d73-b266-5d447f266f1c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 323, "fields": {"action_time": "2024-06-26T15:05:19.970Z", "user": 1, "content_type": 10, "object_id": "42", "object_repr": "4cf2db77-65fd-4973-afda-b7348b88999c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 324, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "41", "object_repr": "e18769b7-1ae0-4340-bb1a-1bbc55df227e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 325, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "40", "object_repr": "5b1304e4-c5bc-40ed-9f41-7f46c5e2a589", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 326, "fields": {"action_time": "2024-06-26T15:05:19.971Z", "user": 1, "content_type": 10, "object_id": "39", "object_repr": "d1f59705-dbc9-4350-8e2b-ef05fcf0d976", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 327, "fields": {"action_time": "2024-06-26T15:05:19.972Z", "user": 1, "content_type": 10, "object_id": "38", "object_repr": "48a7c304-2c14-4fd3-899b-e7e22359edc6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 328, "fields": {"action_time": "2024-06-26T15:05:19.972Z", "user": 1, "content_type": 10, "object_id": "37", "object_repr": "c4d75c41-55b3-4827-ab44-962d584c584e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 329, "fields": {"action_time": "2024-06-26T15:05:19.973Z", "user": 1, "content_type": 10, "object_id": "36", "object_repr": "401328f5-bba4-445c-b2b6-46c6c9a96ecf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 330, "fields": {"action_time": "2024-06-26T15:05:19.973Z", "user": 1, "content_type": 10, "object_id": "35", "object_repr": "a0142652-c721-408f-8a3c-9687375d6488", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 331, "fields": {"action_time": "2024-06-26T15:05:19.974Z", "user": 1, "content_type": 10, "object_id": "34", "object_repr": "02dc86e1-15d8-4800-b5b0-7f96560df549", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 332, "fields": {"action_time": "2024-06-26T15:05:19.974Z", "user": 1, "content_type": 10, "object_id": "33", "object_repr": "88c431ba-8ec7-4c57-9627-27bcec807932", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 333, "fields": {"action_time": "2024-06-26T15:05:19.975Z", "user": 1, "content_type": 10, "object_id": "32", "object_repr": "efd98c1d-6da8-4c86-938c-029250727b82", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 334, "fields": {"action_time": "2024-06-26T15:05:19.975Z", "user": 1, "content_type": 10, "object_id": "31", "object_repr": "e47f9f47-e79d-4aae-9297-9476d90b81bc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 335, "fields": {"action_time": "2024-06-26T15:05:19.976Z", "user": 1, "content_type": 10, "object_id": "30", "object_repr": "98a13e0f-191b-4961-ab4a-0cb7e1d24f6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 336, "fields": {"action_time": "2024-06-26T15:05:19.976Z", "user": 1, "content_type": 10, "object_id": "29", "object_repr": "e2b508cf-e889-45a8-90a3-6063ca1cc294", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 337, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "28", "object_repr": "f09bb4fe-02c9-42f4-b2a3-1ee2b6b526ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 338, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "27", "object_repr": "7a6b9e61-f24c-4905-8abe-6ff8c632f6fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 339, "fields": {"action_time": "2024-06-26T15:05:19.977Z", "user": 1, "content_type": 10, "object_id": "26", "object_repr": "3be1f8c2-d38d-45c0-99db-5ca4729f9b8a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 340, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "25", "object_repr": "94d96bbc-39cb-4bb8-b881-29edf21f5e18", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 341, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "24", "object_repr": "f754b89a-ab06-44c6-a19a-c417c33775b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 342, "fields": {"action_time": "2024-06-26T15:05:19.978Z", "user": 1, "content_type": 10, "object_id": "23", "object_repr": "756a3d00-3fa0-44a6-9fa9-bdc108cec508", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 343, "fields": {"action_time": "2024-06-26T15:05:19.979Z", "user": 1, "content_type": 10, "object_id": "22", "object_repr": "dd78f51e-5275-4618-a05b-245854ac60cb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 344, "fields": {"action_time": "2024-06-26T15:05:19.979Z", "user": 1, "content_type": 10, "object_id": "21", "object_repr": "b963afc4-8803-4a8c-a87b-33f9cf8104e3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 345, "fields": {"action_time": "2024-06-26T15:05:19.980Z", "user": 1, "content_type": 10, "object_id": "19", "object_repr": "d6cd9915-ce27-4ef6-8bdc-8990c7e441a3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 346, "fields": {"action_time": "2024-06-26T15:05:37.056Z", "user": 1, "content_type": 15, "object_id": "44", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 347, "fields": {"action_time": "2024-06-26T15:05:37.059Z", "user": 1, "content_type": 15, "object_id": "43", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 348, "fields": {"action_time": "2024-06-26T15:05:37.060Z", "user": 1, "content_type": 15, "object_id": "42", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 349, "fields": {"action_time": "2024-06-26T15:05:37.061Z", "user": 1, "content_type": 15, "object_id": "41", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59:Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 350, "fields": {"action_time": "2024-06-26T15:07:29.487Z", "user": 1, "content_type": 11, "object_id": "84", "object_repr": "PointFeature object (84)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 351, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "83", "object_repr": "PointFeature object (83)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 352, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "82", "object_repr": "PointFeature object (82)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 353, "fields": {"action_time": "2024-06-26T15:07:29.490Z", "user": 1, "content_type": 11, "object_id": "81", "object_repr": "PointFeature object (81)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 354, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "80", "object_repr": "PointFeature object (80)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 355, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "79", "object_repr": "PointFeature object (79)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 356, "fields": {"action_time": "2024-06-26T15:07:29.491Z", "user": 1, "content_type": 11, "object_id": "78", "object_repr": "PointFeature object (78)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 357, "fields": {"action_time": "2024-06-26T15:07:29.492Z", "user": 1, "content_type": 11, "object_id": "77", "object_repr": "PointFeature object (77)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 358, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "76", "object_repr": "PointFeature object (76)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 359, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "75", "object_repr": "PointFeature object (75)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 360, "fields": {"action_time": "2024-06-26T15:07:29.493Z", "user": 1, "content_type": 11, "object_id": "74", "object_repr": "PointFeature object (74)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 361, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "73", "object_repr": "PointFeature object (73)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 362, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "72", "object_repr": "PointFeature object (72)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 363, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "71", "object_repr": "PointFeature object (71)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 364, "fields": {"action_time": "2024-06-26T15:07:29.494Z", "user": 1, "content_type": 11, "object_id": "70", "object_repr": "PointFeature object (70)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 365, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "69", "object_repr": "PointFeature object (69)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 366, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "68", "object_repr": "PointFeature object (68)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 367, "fields": {"action_time": "2024-06-26T15:07:29.495Z", "user": 1, "content_type": 11, "object_id": "67", "object_repr": "PointFeature object (67)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 368, "fields": {"action_time": "2024-06-26T15:07:29.496Z", "user": 1, "content_type": 11, "object_id": "66", "object_repr": "PointFeature object (66)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 369, "fields": {"action_time": "2024-06-26T15:07:29.497Z", "user": 1, "content_type": 11, "object_id": "65", "object_repr": "PointFeature object (65)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 370, "fields": {"action_time": "2024-06-26T15:07:29.497Z", "user": 1, "content_type": 11, "object_id": "64", "object_repr": "PointFeature object (64)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 371, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "63", "object_repr": "PointFeature object (63)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 372, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "62", "object_repr": "PointFeature object (62)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 373, "fields": {"action_time": "2024-06-26T15:07:29.498Z", "user": 1, "content_type": 11, "object_id": "61", "object_repr": "PointFeature object (61)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 374, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "60", "object_repr": "PointFeature object (60)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 375, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "59", "object_repr": "PointFeature object (59)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 376, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "58", "object_repr": "PointFeature object (58)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 377, "fields": {"action_time": "2024-06-26T15:07:29.499Z", "user": 1, "content_type": 11, "object_id": "57", "object_repr": "PointFeature object (57)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 378, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "56", "object_repr": "PointFeature object (56)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 379, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "55", "object_repr": "PointFeature object (55)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 380, "fields": {"action_time": "2024-06-26T15:07:29.500Z", "user": 1, "content_type": 11, "object_id": "54", "object_repr": "PointFeature object (54)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 381, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "53", "object_repr": "PointFeature object (53)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 382, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "52", "object_repr": "PointFeature object (52)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 383, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "51", "object_repr": "PointFeature object (51)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 384, "fields": {"action_time": "2024-06-26T15:07:29.501Z", "user": 1, "content_type": 11, "object_id": "50", "object_repr": "PointFeature object (50)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 385, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "49", "object_repr": "PointFeature object (49)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 386, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "48", "object_repr": "PointFeature object (48)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 387, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "47", "object_repr": "PointFeature object (47)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 388, "fields": {"action_time": "2024-06-26T15:07:29.502Z", "user": 1, "content_type": 11, "object_id": "46", "object_repr": "PointFeature object (46)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 389, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "45", "object_repr": "PointFeature object (45)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 390, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "44", "object_repr": "PointFeature object (44)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 391, "fields": {"action_time": "2024-06-26T15:07:29.503Z", "user": 1, "content_type": 11, "object_id": "43", "object_repr": "PointFeature object (43)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 392, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "42", "object_repr": "PointFeature object (42)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 393, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "41", "object_repr": "PointFeature object (41)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 394, "fields": {"action_time": "2024-06-26T15:07:29.504Z", "user": 1, "content_type": 11, "object_id": "40", "object_repr": "PointFeature object (40)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 395, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "39", "object_repr": "PointFeature object (39)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 396, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "38", "object_repr": "PointFeature object (38)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 397, "fields": {"action_time": "2024-06-26T15:07:29.505Z", "user": 1, "content_type": 11, "object_id": "37", "object_repr": "PointFeature object (37)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 398, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "36", "object_repr": "PointFeature object (36)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 399, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "35", "object_repr": "PointFeature object (35)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 400, "fields": {"action_time": "2024-06-26T15:07:29.506Z", "user": 1, "content_type": 11, "object_id": "34", "object_repr": "PointFeature object (34)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 401, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "33", "object_repr": "PointFeature object (33)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 402, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "32", "object_repr": "PointFeature object (32)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 403, "fields": {"action_time": "2024-06-26T15:07:29.507Z", "user": 1, "content_type": 11, "object_id": "31", "object_repr": "PointFeature object (31)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 404, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "30", "object_repr": "PointFeature object (30)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 405, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "29", "object_repr": "PointFeature object (29)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 406, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "28", "object_repr": "PointFeature object (28)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 407, "fields": {"action_time": "2024-06-26T15:07:29.508Z", "user": 1, "content_type": 11, "object_id": "27", "object_repr": "PointFeature object (27)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 408, "fields": {"action_time": "2024-06-26T15:07:29.509Z", "user": 1, "content_type": 11, "object_id": "26", "object_repr": "PointFeature object (26)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 409, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "25", "object_repr": "PointFeature object (25)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 410, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "24", "object_repr": "PointFeature object (24)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 411, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "23", "object_repr": "PointFeature object (23)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 412, "fields": {"action_time": "2024-06-26T15:07:29.510Z", "user": 1, "content_type": 11, "object_id": "22", "object_repr": "PointFeature object (22)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 413, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "21", "object_repr": "PointFeature object (21)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 414, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "20", "object_repr": "PointFeature object (20)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 415, "fields": {"action_time": "2024-06-26T15:07:29.511Z", "user": 1, "content_type": 11, "object_id": "19", "object_repr": "PointFeature object (19)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 416, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "18", "object_repr": "PointFeature object (18)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 417, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "17", "object_repr": "PointFeature object (17)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 418, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "16", "object_repr": "PointFeature object (16)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 419, "fields": {"action_time": "2024-06-26T15:07:29.512Z", "user": 1, "content_type": 11, "object_id": "15", "object_repr": "PointFeature object (15)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 420, "fields": {"action_time": "2024-06-26T15:07:29.513Z", "user": 1, "content_type": 11, "object_id": "11", "object_repr": "PointFeature object (11)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 421, "fields": {"action_time": "2024-06-26T15:07:29.513Z", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "PointFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 422, "fields": {"action_time": "2024-06-26T15:07:37.570Z", "user": 1, "content_type": 12, "object_id": "2", "object_repr": "PolygonFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 423, "fields": {"action_time": "2024-06-26T15:07:37.571Z", "user": 1, "content_type": 12, "object_id": "1", "object_repr": "PolygonFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 424, "fields": {"action_time": "2024-06-26T15:08:16.112Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Ppular Places", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 425, "fields": {"action_time": "2024-06-26T15:08:40.582Z", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Popular Places", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 426, "fields": {"action_time": "2024-06-26T15:13:27.831Z", "user": 1, "content_type": 13, "object_id": "6", "object_repr": "What is your favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 427, "fields": {"action_time": "2024-06-26T15:13:34.290Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 428, "fields": {"action_time": "2024-06-26T15:13:50.944Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 429, "fields": {"action_time": "2024-06-26T15:14:02.580Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Type of question\"]}}]"}}, {"model": "admin.logentry", "pk": 430, "fields": {"action_time": "2024-06-26T15:19:45.096Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 431, "fields": {"action_time": "2024-06-26T16:55:12.087Z", "user": 1, "content_type": 14, "object_id": "fd0de839-bdef-4821-9218-ccc78d1a92ef", "object_repr": "Response fd0de839-bdef-4821-9218-ccc78d1a92ef (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 432, "fields": {"action_time": "2024-06-26T16:55:12.091Z", "user": 1, "content_type": 14, "object_id": "f8a0eebf-b710-48fa-84ac-57184c96a5b8", "object_repr": "Response f8a0eebf-b710-48fa-84ac-57184c96a5b8 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 433, "fields": {"action_time": "2024-06-26T16:55:12.092Z", "user": 1, "content_type": 14, "object_id": "f277fe69-b2aa-4087-b56d-6588f14a1587", "object_repr": "Response f277fe69-b2aa-4087-b56d-6588f14a1587 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 434, "fields": {"action_time": "2024-06-26T16:55:12.093Z", "user": 1, "content_type": 14, "object_id": "d45dfdbc-5ff1-4902-841e-301562ed0bf9", "object_repr": "Response d45dfdbc-5ff1-4902-841e-301562ed0bf9 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 435, "fields": {"action_time": "2024-06-26T16:55:12.094Z", "user": 1, "content_type": 14, "object_id": "c6b44c95-3f26-4412-8108-0a8acd50a614", "object_repr": "Response c6b44c95-3f26-4412-8108-0a8acd50a614 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 436, "fields": {"action_time": "2024-06-26T16:55:12.095Z", "user": 1, "content_type": 14, "object_id": "c39ace1f-3196-4a6e-b5e6-39d6e9b00b63", "object_repr": "Response c39ace1f-3196-4a6e-b5e6-39d6e9b00b63 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 437, "fields": {"action_time": "2024-06-26T16:55:12.095Z", "user": 1, "content_type": 14, "object_id": "aa9a7d67-d649-41d2-9cbb-78fc08bb5e2f", "object_repr": "Response aa9a7d67-d649-41d2-9cbb-78fc08bb5e2f (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 438, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "a19528d7-393a-449b-a376-65df86f9b929", "object_repr": "Response a19528d7-393a-449b-a376-65df86f9b929 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 439, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "a1001648-f132-40b7-86d2-389109311730", "object_repr": "Response a1001648-f132-40b7-86d2-389109311730 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 440, "fields": {"action_time": "2024-06-26T16:55:12.096Z", "user": 1, "content_type": 14, "object_id": "9f5c503c-c147-4124-b78e-5e3590f20a20", "object_repr": "Response 9f5c503c-c147-4124-b78e-5e3590f20a20 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 441, "fields": {"action_time": "2024-06-26T16:55:12.097Z", "user": 1, "content_type": 14, "object_id": "7b9b6f7c-9453-4422-b770-a7d7ef401c59", "object_repr": "Response 7b9b6f7c-9453-4422-b770-a7d7ef401c59 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 442, "fields": {"action_time": "2024-06-26T16:55:12.097Z", "user": 1, "content_type": 14, "object_id": "78b13ba8-e26c-4859-8234-88603e9b5d55", "object_repr": "Response 78b13ba8-e26c-4859-8234-88603e9b5d55 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 443, "fields": {"action_time": "2024-06-26T16:55:12.098Z", "user": 1, "content_type": 14, "object_id": "759f2b03-2445-4646-9667-61e9cd575711", "object_repr": "Response 759f2b03-2445-4646-9667-61e9cd575711 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 444, "fields": {"action_time": "2024-06-26T16:55:12.098Z", "user": 1, "content_type": 14, "object_id": "65f5ef8c-468d-4913-b4c4-e10275116c59", "object_repr": "Response 65f5ef8c-468d-4913-b4c4-e10275116c59 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 445, "fields": {"action_time": "2024-06-26T16:55:12.099Z", "user": 1, "content_type": 14, "object_id": "5d22505f-a939-4de1-a003-3d980ef918ba", "object_repr": "Response 5d22505f-a939-4de1-a003-3d980ef918ba (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 446, "fields": {"action_time": "2024-06-26T16:55:12.100Z", "user": 1, "content_type": 14, "object_id": "5a115495-71ef-4b9f-b82d-afbde49430bd", "object_repr": "Response 5a115495-71ef-4b9f-b82d-afbde49430bd (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 447, "fields": {"action_time": "2024-06-26T16:55:12.100Z", "user": 1, "content_type": 14, "object_id": "4d8733c8-88a8-4368-a58c-a95518daec24", "object_repr": "Response 4d8733c8-88a8-4368-a58c-a95518daec24 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 448, "fields": {"action_time": "2024-06-26T16:55:12.101Z", "user": 1, "content_type": 14, "object_id": "44b901bb-07b9-4bfa-b72b-554b8d2f803d", "object_repr": "Response 44b901bb-07b9-4bfa-b72b-554b8d2f803d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 449, "fields": {"action_time": "2024-06-26T16:55:12.102Z", "user": 1, "content_type": 14, "object_id": "17e13e33-51ef-4d50-8c0d-683a2357e9a5", "object_repr": "Response 17e13e33-51ef-4d50-8c0d-683a2357e9a5 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 450, "fields": {"action_time": "2024-06-26T16:55:12.103Z", "user": 1, "content_type": 14, "object_id": "0dc054e4-5402-4944-a7e9-730aab902e8d", "object_repr": "Response 0dc054e4-5402-4944-a7e9-730aab902e8d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 451, "fields": {"action_time": "2024-06-26T17:00:55.263Z", "user": 1, "content_type": 13, "object_id": "9", "object_repr": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 452, "fields": {"action_time": "2024-06-26T17:01:52.287Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\", \"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 453, "fields": {"action_time": "2024-06-26T17:02:24.418Z", "user": 1, "content_type": 13, "object_id": "11", "object_repr": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\", \"Show the input text field\"]}}]"}}, {"model": "admin.logentry", "pk": 454, "fields": {"action_time": "2024-06-26T17:03:05.996Z", "user": 1, "content_type": 13, "object_id": "10", "object_repr": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Explanation for the question\"]}}]"}}, {"model": "admin.logentry", "pk": 455, "fields": {"action_time": "2024-06-26T17:15:18.414Z", "user": 1, "content_type": 13, "object_id": "7", "object_repr": "What is your least favourite area in the neighbourhood and why?", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Question\"]}}]"}}, {"model": "admin.logentry", "pk": 456, "fields": {"action_time": "2024-06-26T19:14:35.918Z", "user": 1, "content_type": 14, "object_id": "81ab81c0-efbc-431a-954f-32771e9d8306", "object_repr": "Response 81ab81c0-efbc-431a-954f-32771e9d8306 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 457, "fields": {"action_time": "2024-06-26T19:14:35.921Z", "user": 1, "content_type": 14, "object_id": "4f68cd55-de1f-462d-88e0-692b0b280a3d", "object_repr": "Response 4f68cd55-de1f-462d-88e0-692b0b280a3d (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 458, "fields": {"action_time": "2024-06-26T19:14:51.863Z", "user": 1, "content_type": 12, "object_id": "6", "object_repr": "PolygonFeature object (6)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 459, "fields": {"action_time": "2024-06-26T19:14:51.864Z", "user": 1, "content_type": 12, "object_id": "5", "object_repr": "PolygonFeature object (5)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 460, "fields": {"action_time": "2024-06-26T19:14:51.865Z", "user": 1, "content_type": 12, "object_id": "4", "object_repr": "PolygonFeature object (4)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 461, "fields": {"action_time": "2024-06-26T19:14:51.866Z", "user": 1, "content_type": 12, "object_id": "3", "object_repr": "PolygonFeature object (3)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 462, "fields": {"action_time": "2024-06-26T19:14:58.196Z", "user": 1, "content_type": 11, "object_id": "101", "object_repr": "PointFeature object (101)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 463, "fields": {"action_time": "2024-06-26T19:14:58.197Z", "user": 1, "content_type": 11, "object_id": "100", "object_repr": "PointFeature object (100)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 464, "fields": {"action_time": "2024-06-26T19:14:58.198Z", "user": 1, "content_type": 11, "object_id": "99", "object_repr": "PointFeature object (99)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 465, "fields": {"action_time": "2024-06-26T19:14:58.198Z", "user": 1, "content_type": 11, "object_id": "98", "object_repr": "PointFeature object (98)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 466, "fields": {"action_time": "2024-06-26T19:14:58.199Z", "user": 1, "content_type": 11, "object_id": "97", "object_repr": "PointFeature object (97)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 467, "fields": {"action_time": "2024-06-26T19:14:58.199Z", "user": 1, "content_type": 11, "object_id": "96", "object_repr": "PointFeature object (96)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 468, "fields": {"action_time": "2024-06-26T19:14:58.200Z", "user": 1, "content_type": 11, "object_id": "95", "object_repr": "PointFeature object (95)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 469, "fields": {"action_time": "2024-06-26T19:14:58.200Z", "user": 1, "content_type": 11, "object_id": "94", "object_repr": "PointFeature object (94)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 470, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "93", "object_repr": "PointFeature object (93)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 471, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "92", "object_repr": "PointFeature object (92)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 472, "fields": {"action_time": "2024-06-26T19:14:58.201Z", "user": 1, "content_type": 11, "object_id": "91", "object_repr": "PointFeature object (91)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 473, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "90", "object_repr": "PointFeature object (90)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 474, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "89", "object_repr": "PointFeature object (89)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 475, "fields": {"action_time": "2024-06-26T19:14:58.202Z", "user": 1, "content_type": 11, "object_id": "88", "object_repr": "PointFeature object (88)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 476, "fields": {"action_time": "2024-06-26T19:14:58.203Z", "user": 1, "content_type": 11, "object_id": "87", "object_repr": "PointFeature object (87)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 477, "fields": {"action_time": "2024-06-26T19:14:58.203Z", "user": 1, "content_type": 11, "object_id": "86", "object_repr": "PointFeature object (86)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 478, "fields": {"action_time": "2024-06-26T19:14:58.204Z", "user": 1, "content_type": 11, "object_id": "85", "object_repr": "PointFeature object (85)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 479, "fields": {"action_time": "2024-06-26T19:15:28.201Z", "user": 1, "content_type": 10, "object_id": "120", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 480, "fields": {"action_time": "2024-06-26T19:15:28.203Z", "user": 1, "content_type": 10, "object_id": "119", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 481, "fields": {"action_time": "2024-06-26T19:15:28.204Z", "user": 1, "content_type": 10, "object_id": "118", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 482, "fields": {"action_time": "2024-06-26T19:15:28.205Z", "user": 1, "content_type": 10, "object_id": "117", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 483, "fields": {"action_time": "2024-06-26T19:15:28.206Z", "user": 1, "content_type": 10, "object_id": "116", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 484, "fields": {"action_time": "2024-06-26T19:15:28.207Z", "user": 1, "content_type": 10, "object_id": "115", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 485, "fields": {"action_time": "2024-06-26T19:15:28.207Z", "user": 1, "content_type": 10, "object_id": "114", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 486, "fields": {"action_time": "2024-06-26T19:15:28.208Z", "user": 1, "content_type": 10, "object_id": "113", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 487, "fields": {"action_time": "2024-06-26T19:15:28.208Z", "user": 1, "content_type": 10, "object_id": "112", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 488, "fields": {"action_time": "2024-06-26T19:15:28.209Z", "user": 1, "content_type": 10, "object_id": "111", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 489, "fields": {"action_time": "2024-06-26T19:15:28.210Z", "user": 1, "content_type": 10, "object_id": "110", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 490, "fields": {"action_time": "2024-06-26T19:15:28.210Z", "user": 1, "content_type": 10, "object_id": "109", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 491, "fields": {"action_time": "2024-06-26T19:15:28.211Z", "user": 1, "content_type": 10, "object_id": "108", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 492, "fields": {"action_time": "2024-06-26T19:15:28.212Z", "user": 1, "content_type": 10, "object_id": "107", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 493, "fields": {"action_time": "2024-06-26T19:15:28.213Z", "user": 1, "content_type": 10, "object_id": "106", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 494, "fields": {"action_time": "2024-06-26T19:15:28.214Z", "user": 1, "content_type": 10, "object_id": "105", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 495, "fields": {"action_time": "2024-06-26T19:15:28.215Z", "user": 1, "content_type": 10, "object_id": "20", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 496, "fields": {"action_time": "2024-06-26T19:15:37.234Z", "user": 1, "content_type": 10, "object_id": "121", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 497, "fields": {"action_time": "2024-06-26T19:16:10.448Z", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "LineFeature object (6)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 498, "fields": {"action_time": "2024-06-26T19:16:10.450Z", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "LineFeature object (5)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 499, "fields": {"action_time": "2024-06-26T19:16:10.450Z", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "LineFeature object (4)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 500, "fields": {"action_time": "2024-06-26T19:16:10.451Z", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "LineFeature object (3)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 501, "fields": {"action_time": "2024-06-26T19:16:10.452Z", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "LineFeature object (2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 502, "fields": {"action_time": "2024-06-26T19:16:10.452Z", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "LineFeature object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 503, "fields": {"action_time": "2024-06-26T19:16:26.234Z", "user": 1, "content_type": 8, "object_id": "105", "object_repr": "ccc461df-0230-42e3-bbab-258e52da71b6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 504, "fields": {"action_time": "2024-06-26T19:16:26.236Z", "user": 1, "content_type": 8, "object_id": "104", "object_repr": "48ff5529-2e99-427a-ac43-817ca2792e3a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 505, "fields": {"action_time": "2024-06-26T19:16:26.236Z", "user": 1, "content_type": 8, "object_id": "103", "object_repr": "e28acf44-6d7d-4e36-878c-590f7fabc20e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 506, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "102", "object_repr": "188c84bc-6d92-4fde-b12b-792d3d57ed8e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 507, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "101", "object_repr": "1d70fefe-392d-444d-98f0-e18e7ee2af94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 508, "fields": {"action_time": "2024-06-26T19:16:26.237Z", "user": 1, "content_type": 8, "object_id": "100", "object_repr": "d8580041-b8a7-4dfa-be1f-31331efa063d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 509, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "99", "object_repr": "4c647157-a8d7-448d-8ec7-5891d83311bf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 510, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "98", "object_repr": "53444b0e-4229-4a66-9056-dafa410aa59f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 511, "fields": {"action_time": "2024-06-26T19:16:26.238Z", "user": 1, "content_type": 8, "object_id": "97", "object_repr": "383b3d97-79cf-47dd-89c5-aa02f1bf85be", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 512, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "96", "object_repr": "b3e4ec35-f11a-4ab1-8a94-64189e078c3f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 513, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "95", "object_repr": "52577855-1214-4fcc-92b1-cbb31051f574", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 514, "fields": {"action_time": "2024-06-26T19:16:26.239Z", "user": 1, "content_type": 8, "object_id": "94", "object_repr": "d5ac457e-5297-4574-af12-63d0031205f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 515, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "93", "object_repr": "694480d5-e78f-4f9f-aa87-d15d721fc4b9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 516, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "92", "object_repr": "fa035359-325c-4db5-a3cb-fc46102f76b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 517, "fields": {"action_time": "2024-06-26T19:16:26.240Z", "user": 1, "content_type": 8, "object_id": "91", "object_repr": "86d06221-b89f-41d2-aaf7-c26d96e5db78", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 518, "fields": {"action_time": "2024-06-26T19:16:26.241Z", "user": 1, "content_type": 8, "object_id": "90", "object_repr": "b5c79b96-84f9-47b7-af5f-5f4d8a1d699c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 519, "fields": {"action_time": "2024-06-26T19:16:26.241Z", "user": 1, "content_type": 8, "object_id": "89", "object_repr": "941805a2-0589-41b1-a413-903bc150ff3b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 520, "fields": {"action_time": "2024-06-26T19:16:26.242Z", "user": 1, "content_type": 8, "object_id": "88", "object_repr": "74cdcb0a-e92c-4574-bc94-38453599d813", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 521, "fields": {"action_time": "2024-06-26T19:16:26.242Z", "user": 1, "content_type": 8, "object_id": "87", "object_repr": "60b6e465-042e-4d4c-8a4b-3c0069101313", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 522, "fields": {"action_time": "2024-06-26T19:16:26.243Z", "user": 1, "content_type": 8, "object_id": "86", "object_repr": "e6df9f4d-ad2d-4fd4-93fc-18d4b1809dd6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 523, "fields": {"action_time": "2024-06-26T19:16:26.243Z", "user": 1, "content_type": 8, "object_id": "85", "object_repr": "93efc4cf-77c8-4e3c-b14a-171ab83e0741", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 524, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "84", "object_repr": "33dc9e5a-c91a-4b6a-87bd-8f3a757505b5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 525, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "83", "object_repr": "20a6d115-2064-4457-850c-4203dfa0364e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 526, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "82", "object_repr": "e4c5a29b-91d5-449f-815c-ff481a96a76e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 527, "fields": {"action_time": "2024-06-26T19:16:26.244Z", "user": 1, "content_type": 8, "object_id": "81", "object_repr": "5b985424-4a58-4e30-be25-6df36cdcc914", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 528, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "80", "object_repr": "e8ff4f93-8759-4647-8fd4-3be594169f5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 529, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "79", "object_repr": "0d1015d7-53f7-4105-b35a-a29be3c84171", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 530, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "78", "object_repr": "06f1c86b-dbcf-4314-93a4-1e195084009a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 531, "fields": {"action_time": "2024-06-26T19:16:26.245Z", "user": 1, "content_type": 8, "object_id": "77", "object_repr": "5ef11234-4ccd-4676-87de-5da1ca28d128", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 532, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "76", "object_repr": "7b48d11e-036a-49dc-86d5-18e22de15a7b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 533, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "75", "object_repr": "8d33612f-ee4e-4c1e-bd4c-5aefeab16eed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 534, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "74", "object_repr": "e7d1f6b4-a34e-4ce3-af28-aeaace993eea", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 535, "fields": {"action_time": "2024-06-26T19:16:26.246Z", "user": 1, "content_type": 8, "object_id": "73", "object_repr": "814a7151-1cff-4d00-b93f-9b41d9fcf5d1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 536, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "72", "object_repr": "5846fd7f-ddbd-431c-8457-e9e1313648c4", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 537, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "71", "object_repr": "17d14baf-550b-4854-ae4e-bd3a28a8b189", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 538, "fields": {"action_time": "2024-06-26T19:16:26.247Z", "user": 1, "content_type": 8, "object_id": "70", "object_repr": "dea17557-92f5-4ae3-86a5-2d8603ff11e5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 539, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "69", "object_repr": "cc8324d1-ad72-443b-8cc4-8d196d15e869", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 540, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "68", "object_repr": "9dc2572c-4d60-475d-b021-5507918963a1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 541, "fields": {"action_time": "2024-06-26T19:16:26.248Z", "user": 1, "content_type": 8, "object_id": "67", "object_repr": "9a96a80d-e919-4935-8043-3c39133091a6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 542, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "66", "object_repr": "53440af8-41fa-4b15-b95b-0bc62eacc012", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 543, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "65", "object_repr": "1b69ef9b-00da-4f76-8829-3ec214380268", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 544, "fields": {"action_time": "2024-06-26T19:16:26.249Z", "user": 1, "content_type": 8, "object_id": "64", "object_repr": "c63c4d9b-b370-4939-a8f5-6c262a10c2c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 545, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "63", "object_repr": "7373cec7-62a0-4901-a8e2-2d2fe05655b7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 546, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "62", "object_repr": "c036c19a-c709-45c2-aad1-ccf6c6ecf514", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 547, "fields": {"action_time": "2024-06-26T19:16:26.250Z", "user": 1, "content_type": 8, "object_id": "61", "object_repr": "cf1a442c-f58a-4297-964c-833b67f16bcc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 548, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "60", "object_repr": "62f0e97e-7955-49a6-9372-6feba7fadc43", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 549, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "59", "object_repr": "bcf8eb81-5db3-45c3-9624-ccbe7245c475", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 550, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "58", "object_repr": "4e1e2653-6ad8-4632-9474-00586c863e6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 551, "fields": {"action_time": "2024-06-26T19:16:26.251Z", "user": 1, "content_type": 8, "object_id": "57", "object_repr": "6e6bf1e0-0603-4a59-87ae-4f83b2e40d73", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 552, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "56", "object_repr": "36c517f1-8ea2-4b38-9a7b-669e58862ef6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 553, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "55", "object_repr": "dc6fc7db-8322-4f55-8b29-b9a52afd32fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 554, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "54", "object_repr": "7aab177c-1bbd-4fcd-bcb0-14fa535ee968", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 555, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "53", "object_repr": "40f5a9e0-6fcc-4e50-95be-f0ea8a502227", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 556, "fields": {"action_time": "2024-06-26T19:16:26.252Z", "user": 1, "content_type": 8, "object_id": "52", "object_repr": "f08d6c96-7430-4200-8635-91666f8b0295", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 557, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "51", "object_repr": "bb17d6d7-1323-43e2-978c-2caa77b0e824", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 558, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "50", "object_repr": "a6218c2a-8442-4935-a0b4-fea4f1c9a63e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 559, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "49", "object_repr": "03b8955b-4e0b-4e84-a720-981929cdac5b", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 560, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "48", "object_repr": "c8a52d5d-4bfe-4d2b-950a-fe34b38d3ae9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 561, "fields": {"action_time": "2024-06-26T19:16:26.253Z", "user": 1, "content_type": 8, "object_id": "47", "object_repr": "7b5dd311-065c-44ff-9c9f-9fc91c91991f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 562, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "46", "object_repr": "e961efff-9c0a-4707-a965-0cbb6d875e81", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 563, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "45", "object_repr": "a4a19d47-82aa-4401-9357-27f1171adbf2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 564, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "44", "object_repr": "7094066a-59ca-4282-8dbf-d2aedfb12563", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 565, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "43", "object_repr": "797da630-1702-4b18-9c00-eaf09a0f3311", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 566, "fields": {"action_time": "2024-06-26T19:16:26.254Z", "user": 1, "content_type": 8, "object_id": "42", "object_repr": "8f54748f-2ca9-449d-b481-c58009b42cfe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 567, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "41", "object_repr": "6fd27454-8847-4e90-9da5-0048bdf5ec0f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 568, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "40", "object_repr": "7aa9a336-35b6-4b0a-bedf-a1077f96cc1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 569, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "39", "object_repr": "f7c1783c-ddfc-4278-8acf-025f42284756", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 570, "fields": {"action_time": "2024-06-26T19:16:26.255Z", "user": 1, "content_type": 8, "object_id": "38", "object_repr": "eaed28c8-0fd8-4557-9efb-8c21f749945f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 571, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "37", "object_repr": "f4020528-a6ef-43e0-a4b9-8b2b464c892d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 572, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "36", "object_repr": "513684d5-65cb-4692-92a6-cfa1061bb7fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 573, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "35", "object_repr": "28679261-8de2-46e6-bf27-a3f0116629fd", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 574, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "34", "object_repr": "83c53f31-16e2-4816-b937-76bd0910d383", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 575, "fields": {"action_time": "2024-06-26T19:16:26.256Z", "user": 1, "content_type": 8, "object_id": "33", "object_repr": "f5ff020e-f627-4110-a7d9-8f83e9c7472a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 576, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "32", "object_repr": "2a7dc336-2612-4704-80c4-efda4776cdbb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 577, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "31", "object_repr": "0a951213-ff10-4563-8202-5b7576b3d056", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 578, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "30", "object_repr": "36fb92ad-16fc-4467-a1e2-67878582f8f7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 579, "fields": {"action_time": "2024-06-26T19:16:26.257Z", "user": 1, "content_type": 8, "object_id": "29", "object_repr": "d36fcfd6-9a8a-4d73-b266-5d447f266f1c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 580, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "28", "object_repr": "4cf2db77-65fd-4973-afda-b7348b88999c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 581, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "27", "object_repr": "e18769b7-1ae0-4340-bb1a-1bbc55df227e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 582, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "26", "object_repr": "5b1304e4-c5bc-40ed-9f41-7f46c5e2a589", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 583, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "25", "object_repr": "d1f59705-dbc9-4350-8e2b-ef05fcf0d976", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 584, "fields": {"action_time": "2024-06-26T19:16:26.258Z", "user": 1, "content_type": 8, "object_id": "24", "object_repr": "48a7c304-2c14-4fd3-899b-e7e22359edc6", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 585, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "23", "object_repr": "c4d75c41-55b3-4827-ab44-962d584c584e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 586, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "22", "object_repr": "401328f5-bba4-445c-b2b6-46c6c9a96ecf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 587, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "21", "object_repr": "a0142652-c721-408f-8a3c-9687375d6488", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 588, "fields": {"action_time": "2024-06-26T19:16:26.259Z", "user": 1, "content_type": 8, "object_id": "20", "object_repr": "02dc86e1-15d8-4800-b5b0-7f96560df549", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 589, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "19", "object_repr": "88c431ba-8ec7-4c57-9627-27bcec807932", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 590, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "18", "object_repr": "efd98c1d-6da8-4c86-938c-029250727b82", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 591, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "17", "object_repr": "e47f9f47-e79d-4aae-9297-9476d90b81bc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 592, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "16", "object_repr": "98a13e0f-191b-4961-ab4a-0cb7e1d24f6a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 593, "fields": {"action_time": "2024-06-26T19:16:26.260Z", "user": 1, "content_type": 8, "object_id": "15", "object_repr": "", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 594, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "14", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 595, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "13", "object_repr": "f09bb4fe-02c9-42f4-b2a3-1ee2b6b526ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 596, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "12", "object_repr": "7a6b9e61-f24c-4905-8abe-6ff8c632f6fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 597, "fields": {"action_time": "2024-06-26T19:16:26.261Z", "user": 1, "content_type": 8, "object_id": "11", "object_repr": "3be1f8c2-d38d-45c0-99db-5ca4729f9b8a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 598, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "10", "object_repr": "94d96bbc-39cb-4bb8-b881-29edf21f5e18", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 599, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "9", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 600, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "8", "object_repr": "f754b89a-ab06-44c6-a19a-c417c33775b8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 601, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "7", "object_repr": "756a3d00-3fa0-44a6-9fa9-bdc108cec508", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 602, "fields": {"action_time": "2024-06-26T19:16:26.262Z", "user": 1, "content_type": 8, "object_id": "6", "object_repr": "dd78f51e-5275-4618-a05b-245854ac60cb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 603, "fields": {"action_time": "2024-06-26T19:16:34.813Z", "user": 1, "content_type": 8, "object_id": "5", "object_repr": "b963afc4-8803-4a8c-a87b-33f9cf8104e3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 604, "fields": {"action_time": "2024-06-26T19:16:34.814Z", "user": 1, "content_type": 8, "object_id": "4", "object_repr": "fc264be6-e71b-40db-a2d4-0650df5eb7f9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 605, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "3", "object_repr": "90d5cd5f-0c83-47e8-92f4-d652980eae19", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 606, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "2", "object_repr": "new collection", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 607, "fields": {"action_time": "2024-06-26T19:16:34.815Z", "user": 1, "content_type": 8, "object_id": "1", "object_repr": "popular places", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 608, "fields": {"action_time": "2024-06-26T19:17:48.343Z", "user": 1, "content_type": 13, "object_id": "21", "object_repr": "Does this work?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 609, "fields": {"action_time": "2024-06-26T19:36:50.659Z", "user": 1, "content_type": 14, "object_id": "21ad60df-997a-4e28-aaed-c1664751f1a9", "object_repr": "Response 21ad60df-997a-4e28-aaed-c1664751f1a9 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 610, "fields": {"action_time": "2024-06-26T19:36:58.846Z", "user": 1, "content_type": 12, "object_id": "7", "object_repr": "PolygonFeature object (7)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 611, "fields": {"action_time": "2024-06-26T19:37:08.030Z", "user": 1, "content_type": 11, "object_id": "103", "object_repr": "PointFeature object (103)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 612, "fields": {"action_time": "2024-06-26T19:37:08.031Z", "user": 1, "content_type": 11, "object_id": "102", "object_repr": "PointFeature object (102)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 613, "fields": {"action_time": "2024-06-26T19:37:20.692Z", "user": 1, "content_type": 10, "object_id": "123", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 614, "fields": {"action_time": "2024-06-26T19:37:20.694Z", "user": 1, "content_type": 10, "object_id": "122", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 615, "fields": {"action_time": "2024-06-26T19:37:36.730Z", "user": 1, "content_type": 9, "object_id": "7", "object_repr": "LineFeature object (7)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 616, "fields": {"action_time": "2024-06-26T19:37:44.659Z", "user": 1, "content_type": 8, "object_id": "107", "object_repr": "565b82ec-1394-4ed7-b9b5-9459f9ec0e1d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 617, "fields": {"action_time": "2024-06-26T19:37:44.661Z", "user": 1, "content_type": 8, "object_id": "106", "object_repr": "91b00bb1-688a-45f7-aad3-b119717686ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 618, "fields": {"action_time": "2024-06-27T03:59:44.854Z", "user": 1, "content_type": 15, "object_id": "73", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 619, "fields": {"action_time": "2024-06-27T03:59:44.860Z", "user": 1, "content_type": 15, "object_id": "72", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 620, "fields": {"action_time": "2024-06-27T03:59:44.861Z", "user": 1, "content_type": 15, "object_id": "71", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 621, "fields": {"action_time": "2024-06-27T03:59:56.366Z", "user": 1, "content_type": 15, "object_id": "76", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:What do you do?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 622, "fields": {"action_time": "2024-06-27T03:59:56.369Z", "user": 1, "content_type": 15, "object_id": "75", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where is the train station?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 623, "fields": {"action_time": "2024-06-27T03:59:56.370Z", "user": 1, "content_type": 15, "object_id": "74", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52:Where do you live?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 624, "fields": {"action_time": "2024-06-27T04:00:06.476Z", "user": 1, "content_type": 14, "object_id": "0d293642-9192-4b47-bb8f-1e388154ed52", "object_repr": "Response 0d293642-9192-4b47-bb8f-1e388154ed52 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 625, "fields": {"action_time": "2024-06-27T04:00:19.495Z", "user": 1, "content_type": 11, "object_id": "118", "object_repr": "PointFeature object (118)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 626, "fields": {"action_time": "2024-06-27T04:00:19.496Z", "user": 1, "content_type": 11, "object_id": "117", "object_repr": "PointFeature object (117)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 627, "fields": {"action_time": "2024-06-27T04:00:19.497Z", "user": 1, "content_type": 11, "object_id": "116", "object_repr": "PointFeature object (116)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 628, "fields": {"action_time": "2024-06-27T04:00:19.498Z", "user": 1, "content_type": 11, "object_id": "115", "object_repr": "PointFeature object (115)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 629, "fields": {"action_time": "2024-06-27T04:00:19.498Z", "user": 1, "content_type": 11, "object_id": "114", "object_repr": "PointFeature object (114)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 630, "fields": {"action_time": "2024-06-27T04:00:19.499Z", "user": 1, "content_type": 11, "object_id": "113", "object_repr": "PointFeature object (113)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 631, "fields": {"action_time": "2024-06-27T04:00:19.499Z", "user": 1, "content_type": 11, "object_id": "112", "object_repr": "PointFeature object (112)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 632, "fields": {"action_time": "2024-06-27T04:00:19.500Z", "user": 1, "content_type": 11, "object_id": "111", "object_repr": "PointFeature object (111)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 633, "fields": {"action_time": "2024-06-27T04:00:19.501Z", "user": 1, "content_type": 11, "object_id": "110", "object_repr": "PointFeature object (110)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 634, "fields": {"action_time": "2024-06-27T04:00:19.501Z", "user": 1, "content_type": 11, "object_id": "109", "object_repr": "PointFeature object (109)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 635, "fields": {"action_time": "2024-06-27T04:00:19.502Z", "user": 1, "content_type": 11, "object_id": "108", "object_repr": "PointFeature object (108)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 636, "fields": {"action_time": "2024-06-27T04:00:19.502Z", "user": 1, "content_type": 11, "object_id": "107", "object_repr": "PointFeature object (107)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 637, "fields": {"action_time": "2024-06-27T04:00:19.503Z", "user": 1, "content_type": 11, "object_id": "106", "object_repr": "PointFeature object (106)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 638, "fields": {"action_time": "2024-06-27T04:00:19.503Z", "user": 1, "content_type": 11, "object_id": "105", "object_repr": "PointFeature object (105)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 639, "fields": {"action_time": "2024-06-27T04:00:19.504Z", "user": 1, "content_type": 11, "object_id": "104", "object_repr": "PointFeature object (104)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 640, "fields": {"action_time": "2024-06-27T04:00:42.396Z", "user": 1, "content_type": 9, "object_id": "8", "object_repr": "LineFeature object (8)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 641, "fields": {"action_time": "2024-06-27T04:00:56.554Z", "user": 1, "content_type": 12, "object_id": "8", "object_repr": "PolygonFeature object (8)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 642, "fields": {"action_time": "2024-06-27T04:01:07.627Z", "user": 1, "content_type": 8, "object_id": "122", "object_repr": "2a0b9175-cc5b-4910-a158-86756a5358bf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 643, "fields": {"action_time": "2024-06-27T04:01:07.628Z", "user": 1, "content_type": 8, "object_id": "121", "object_repr": "9f815455-90a2-43cf-809d-2b90c4be8836", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 644, "fields": {"action_time": "2024-06-27T04:01:07.629Z", "user": 1, "content_type": 8, "object_id": "120", "object_repr": "a300dea9-37e6-48df-a057-61f964bc7ebf", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 645, "fields": {"action_time": "2024-06-27T04:01:07.630Z", "user": 1, "content_type": 8, "object_id": "119", "object_repr": "ebed8aca-63ea-4b4b-80ee-4f71fc47eab5", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 646, "fields": {"action_time": "2024-06-27T04:01:07.631Z", "user": 1, "content_type": 8, "object_id": "118", "object_repr": "3d7c6c2e-831a-4543-aa63-cf03fdb6e134", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 647, "fields": {"action_time": "2024-06-27T04:01:07.632Z", "user": 1, "content_type": 8, "object_id": "117", "object_repr": "39cf4051-46c0-4a8e-b005-1d9bbab7fb39", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 648, "fields": {"action_time": "2024-06-27T04:01:07.632Z", "user": 1, "content_type": 8, "object_id": "116", "object_repr": "2565135a-29a8-40fe-85bb-719fa3ef2bde", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 649, "fields": {"action_time": "2024-06-27T04:01:07.633Z", "user": 1, "content_type": 8, "object_id": "115", "object_repr": "3d397a8b-354d-4d25-8d0a-6b3e77db5d4a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 650, "fields": {"action_time": "2024-06-27T04:01:07.634Z", "user": 1, "content_type": 8, "object_id": "114", "object_repr": "8dd6ad2b-ac67-4556-8cc1-507599fcb565", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 651, "fields": {"action_time": "2024-06-27T04:01:07.634Z", "user": 1, "content_type": 8, "object_id": "113", "object_repr": "6c3df0a2-c527-434d-a630-52482e64ec94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 652, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "112", "object_repr": "c98c8bae-45ec-4583-8aaf-25bea7ff64c8", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 653, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "111", "object_repr": "a98ea240-9098-4378-ab38-afcb50825967", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 654, "fields": {"action_time": "2024-06-27T04:01:07.635Z", "user": 1, "content_type": 8, "object_id": "110", "object_repr": "bd9263e0-1543-4c31-9db3-e6e53dd3e798", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 655, "fields": {"action_time": "2024-06-27T04:01:07.636Z", "user": 1, "content_type": 8, "object_id": "109", "object_repr": "41a7f25b-5dd6-4433-8925-cf1a3b9bbaa1", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 656, "fields": {"action_time": "2024-06-27T04:01:07.636Z", "user": 1, "content_type": 8, "object_id": "108", "object_repr": "2ff49d95-1c03-4e14-90ce-a639b8bc86ad", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 657, "fields": {"action_time": "2024-07-03T09:03:04.812Z", "user": 1, "content_type": 15, "object_id": "90", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Is there anything else you would like to say about your neighbourhood?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 658, "fields": {"action_time": "2024-07-03T09:03:04.815Z", "user": 1, "content_type": 15, "object_id": "89", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where waste/trash is a problem?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 659, "fields": {"action_time": "2024-07-03T09:03:04.816Z", "user": 1, "content_type": 15, "object_id": "88", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you see water on the ground after a heavy rain?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 660, "fields": {"action_time": "2024-07-03T09:03:04.816Z", "user": 1, "content_type": 15, "object_id": "87", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 661, "fields": {"action_time": "2024-07-03T09:03:04.817Z", "user": 1, "content_type": 15, "object_id": "86", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where you feel unsafe?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 662, "fields": {"action_time": "2024-07-03T09:03:04.818Z", "user": 1, "content_type": 15, "object_id": "85", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 663, "fields": {"action_time": "2024-07-03T09:03:04.818Z", "user": 1, "content_type": 15, "object_id": "84", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 664, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "83", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 665, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "82", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 666, "fields": {"action_time": "2024-07-03T09:03:04.819Z", "user": 1, "content_type": 15, "object_id": "81", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is the closest green area to your house?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 667, "fields": {"action_time": "2024-07-03T09:03:04.820Z", "user": 1, "content_type": 15, "object_id": "80", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels,", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 668, "fields": {"action_time": "2024-07-03T09:03:04.821Z", "user": 1, "content_type": 15, "object_id": "79", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is your least favourite area in the neighbourhood and why?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 669, "fields": {"action_time": "2024-07-03T09:03:04.822Z", "user": 1, "content_type": 15, "object_id": "78", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:What is your favourite area in the neighbourhood and why?", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 670, "fields": {"action_time": "2024-07-03T09:03:04.822Z", "user": 1, "content_type": 15, "object_id": "77", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0:Please select the statement that represents your feelings about the neighbourhood where you currently live.", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 671, "fields": {"action_time": "2024-07-03T09:36:03.523Z", "user": 1, "content_type": 10, "object_id": "160", "object_repr": "71d7b851-78e0-4b96-9ae4-ac2743d21665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 672, "fields": {"action_time": "2024-07-03T09:36:03.525Z", "user": 1, "content_type": 10, "object_id": "159", "object_repr": "25a6b645-c06c-4e34-802a-56728561190c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 673, "fields": {"action_time": "2024-07-03T09:36:03.526Z", "user": 1, "content_type": 10, "object_id": "158", "object_repr": "3b08ff09-38ec-4a97-b07b-b3ea11882665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 674, "fields": {"action_time": "2024-07-03T09:36:03.527Z", "user": 1, "content_type": 10, "object_id": "157", "object_repr": "b60329b3-89a0-47aa-a825-eefafaa7f25d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 675, "fields": {"action_time": "2024-07-03T09:36:03.527Z", "user": 1, "content_type": 10, "object_id": "156", "object_repr": "4d20302a-1afb-465c-ba76-786d6d4604f2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 676, "fields": {"action_time": "2024-07-03T09:36:03.528Z", "user": 1, "content_type": 10, "object_id": "155", "object_repr": "674c3910-68f9-4c37-b54e-0fa57737a984", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 677, "fields": {"action_time": "2024-07-03T09:36:03.529Z", "user": 1, "content_type": 10, "object_id": "154", "object_repr": "68a3a40a-bd79-4238-ae65-03107a6d66fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 678, "fields": {"action_time": "2024-07-03T09:36:03.529Z", "user": 1, "content_type": 10, "object_id": "153", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 679, "fields": {"action_time": "2024-07-03T09:36:03.530Z", "user": 1, "content_type": 10, "object_id": "152", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 680, "fields": {"action_time": "2024-07-03T09:36:03.531Z", "user": 1, "content_type": 10, "object_id": "151", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 681, "fields": {"action_time": "2024-07-03T09:36:03.531Z", "user": 1, "content_type": 10, "object_id": "150", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 682, "fields": {"action_time": "2024-07-03T09:36:03.532Z", "user": 1, "content_type": 10, "object_id": "149", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 683, "fields": {"action_time": "2024-07-03T09:36:03.533Z", "user": 1, "content_type": 10, "object_id": "148", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 684, "fields": {"action_time": "2024-07-03T09:36:03.533Z", "user": 1, "content_type": 10, "object_id": "147", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 685, "fields": {"action_time": "2024-07-03T09:36:03.534Z", "user": 1, "content_type": 10, "object_id": "146", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 686, "fields": {"action_time": "2024-07-03T09:36:03.534Z", "user": 1, "content_type": 10, "object_id": "145", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 687, "fields": {"action_time": "2024-07-03T09:36:03.535Z", "user": 1, "content_type": 10, "object_id": "144", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 688, "fields": {"action_time": "2024-07-03T09:36:03.536Z", "user": 1, "content_type": 10, "object_id": "143", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 689, "fields": {"action_time": "2024-07-03T09:36:03.536Z", "user": 1, "content_type": 10, "object_id": "142", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 690, "fields": {"action_time": "2024-07-03T09:36:03.537Z", "user": 1, "content_type": 10, "object_id": "141", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 691, "fields": {"action_time": "2024-07-03T09:36:03.537Z", "user": 1, "content_type": 10, "object_id": "140", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 692, "fields": {"action_time": "2024-07-03T09:36:03.538Z", "user": 1, "content_type": 10, "object_id": "139", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 693, "fields": {"action_time": "2024-07-03T09:36:03.538Z", "user": 1, "content_type": 10, "object_id": "138", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 694, "fields": {"action_time": "2024-07-03T09:36:03.539Z", "user": 1, "content_type": 10, "object_id": "137", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 695, "fields": {"action_time": "2024-07-03T09:36:03.539Z", "user": 1, "content_type": 10, "object_id": "136", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 696, "fields": {"action_time": "2024-07-03T09:36:03.540Z", "user": 1, "content_type": 10, "object_id": "135", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 697, "fields": {"action_time": "2024-07-03T09:36:03.540Z", "user": 1, "content_type": 10, "object_id": "134", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 698, "fields": {"action_time": "2024-07-03T09:36:03.541Z", "user": 1, "content_type": 10, "object_id": "133", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 699, "fields": {"action_time": "2024-07-03T09:36:03.541Z", "user": 1, "content_type": 10, "object_id": "132", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 700, "fields": {"action_time": "2024-07-03T09:36:03.542Z", "user": 1, "content_type": 10, "object_id": "131", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 701, "fields": {"action_time": "2024-07-03T09:36:03.543Z", "user": 1, "content_type": 10, "object_id": "130", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 702, "fields": {"action_time": "2024-07-03T09:36:03.543Z", "user": 1, "content_type": 10, "object_id": "129", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 703, "fields": {"action_time": "2024-07-03T09:36:03.544Z", "user": 1, "content_type": 10, "object_id": "128", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 704, "fields": {"action_time": "2024-07-03T09:36:03.544Z", "user": 1, "content_type": 10, "object_id": "127", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 705, "fields": {"action_time": "2024-07-03T09:36:03.545Z", "user": 1, "content_type": 10, "object_id": "126", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 706, "fields": {"action_time": "2024-07-03T09:36:03.545Z", "user": 1, "content_type": 10, "object_id": "125", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 707, "fields": {"action_time": "2024-07-03T09:36:03.546Z", "user": 1, "content_type": 10, "object_id": "124", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 708, "fields": {"action_time": "2024-07-03T11:46:18.016Z", "user": 1, "content_type": 8, "object_id": "152", "object_repr": "ef29b584-48c7-4e17-8277-b4cd271e4576", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 709, "fields": {"action_time": "2024-07-03T11:46:44.862Z", "user": 1, "content_type": 8, "object_id": "151", "object_repr": "71d7b851-78e0-4b96-9ae4-ac2743d21665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 710, "fields": {"action_time": "2024-07-03T11:46:44.864Z", "user": 1, "content_type": 8, "object_id": "150", "object_repr": "25a6b645-c06c-4e34-802a-56728561190c", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 711, "fields": {"action_time": "2024-07-03T11:46:44.865Z", "user": 1, "content_type": 8, "object_id": "149", "object_repr": "3b08ff09-38ec-4a97-b07b-b3ea11882665", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 712, "fields": {"action_time": "2024-07-03T11:46:44.865Z", "user": 1, "content_type": 8, "object_id": "148", "object_repr": "5c320c29-9f1f-4faa-b50d-18a78a5beb34", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 713, "fields": {"action_time": "2024-07-03T11:46:44.866Z", "user": 1, "content_type": 8, "object_id": "147", "object_repr": "12d651ad-2a8a-437d-9e2b-148292671896", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 714, "fields": {"action_time": "2024-07-03T11:46:44.866Z", "user": 1, "content_type": 8, "object_id": "146", "object_repr": "b60329b3-89a0-47aa-a825-eefafaa7f25d", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 715, "fields": {"action_time": "2024-07-03T11:46:44.867Z", "user": 1, "content_type": 8, "object_id": "145", "object_repr": "ced1522d-aafb-45da-9fe3-ed8f3f818255", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 716, "fields": {"action_time": "2024-07-03T11:46:44.868Z", "user": 1, "content_type": 8, "object_id": "144", "object_repr": "6719aca3-76fe-46fc-91f2-4b8de7d65215", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 717, "fields": {"action_time": "2024-07-03T11:46:44.868Z", "user": 1, "content_type": 8, "object_id": "143", "object_repr": "07edb507-06c9-42ec-a8ac-318dc6cd5376", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 718, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "142", "object_repr": "8f8dc8bb-d0c0-4063-80bc-9ca0aceee305", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 719, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "141", "object_repr": "8f8dc8bb-d0c0-4063-80bc-9ca0aceee305", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 720, "fields": {"action_time": "2024-07-03T11:46:44.869Z", "user": 1, "content_type": 8, "object_id": "140", "object_repr": "4d20302a-1afb-465c-ba76-786d6d4604f2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 721, "fields": {"action_time": "2024-07-03T11:46:44.870Z", "user": 1, "content_type": 8, "object_id": "139", "object_repr": "674c3910-68f9-4c37-b54e-0fa57737a984", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 722, "fields": {"action_time": "2024-07-03T11:46:44.870Z", "user": 1, "content_type": 8, "object_id": "138", "object_repr": "68a3a40a-bd79-4238-ae65-03107a6d66fe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 723, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "137", "object_repr": "91631be4-e8a8-44b4-942a-e53bfd7a09db", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 724, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "136", "object_repr": "cea6e606-d791-4043-88b9-f75349affba2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 725, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "135", "object_repr": "22de1d85-04ad-4bb8-b9b3-d500f3f1fd3f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 726, "fields": {"action_time": "2024-07-03T11:46:44.871Z", "user": 1, "content_type": 8, "object_id": "134", "object_repr": "117761ce-2ffa-44a1-ad4a-d700f963f8ae", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 727, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "133", "object_repr": "041996ec-b470-4dd5-ab5e-59fbfa00a367", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 728, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "132", "object_repr": "7f509b29-5a40-484b-83a1-48f2c57b0f95", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 729, "fields": {"action_time": "2024-07-03T11:46:44.872Z", "user": 1, "content_type": 8, "object_id": "131", "object_repr": "b511404b-67c8-4d92-85af-bf4757417e4a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 730, "fields": {"action_time": "2024-07-03T11:46:44.873Z", "user": 1, "content_type": 8, "object_id": "130", "object_repr": "3b185bd5-cffc-4e66-a51e-6228944f0e03", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 731, "fields": {"action_time": "2024-07-03T11:46:44.873Z", "user": 1, "content_type": 8, "object_id": "129", "object_repr": "584e688d-975a-4000-a897-6656c03f2c55", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 732, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "128", "object_repr": "f4a20631-7927-4dab-86c7-bf004d11e7e7", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 733, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "127", "object_repr": "b414b7ae-bf47-4b7d-afa1-abfb1657c6c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 734, "fields": {"action_time": "2024-07-03T11:46:44.874Z", "user": 1, "content_type": 8, "object_id": "126", "object_repr": "4e28e48c-80e5-4430-a768-738bd14e0ffe", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 735, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "125", "object_repr": "b34b07bb-3b2a-4a74-9d3b-41ed7e103216", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 736, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "124", "object_repr": "d26f1fbd-af2a-4f6b-8e21-eb5cac2cf823", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 737, "fields": {"action_time": "2024-07-03T11:46:44.875Z", "user": 1, "content_type": 8, "object_id": "123", "object_repr": "aaf22939-95b2-4208-a56a-1f9feade9510", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 738, "fields": {"action_time": "2024-07-03T11:49:48.507Z", "user": 1, "content_type": 11, "object_id": "147", "object_repr": "PointFeature object (147)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 739, "fields": {"action_time": "2024-12-08T20:04:06.600Z", "user": 2, "content_type": 14, "object_id": "feb668d2-7ce2-47aa-85ee-265a99744ebc", "object_repr": "Response feb668d2-7ce2-47aa-85ee-265a99744ebc (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 740, "fields": {"action_time": "2024-12-08T20:04:06.609Z", "user": 2, "content_type": 14, "object_id": "f21e8c29-98cc-4fbd-aed7-b534d2f6b13b", "object_repr": "Response f21e8c29-98cc-4fbd-aed7-b534d2f6b13b (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 741, "fields": {"action_time": "2024-12-08T20:04:06.611Z", "user": 2, "content_type": 14, "object_id": "eed6eed5-f58a-4dd0-a632-5a3c3e6d2488", "object_repr": "Response eed6eed5-f58a-4dd0-a632-5a3c3e6d2488 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 742, "fields": {"action_time": "2024-12-08T20:04:06.613Z", "user": 2, "content_type": 14, "object_id": "ec0b0e54-64d7-4b67-89f3-126e4e7b86b0", "object_repr": "Response ec0b0e54-64d7-4b67-89f3-126e4e7b86b0 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 743, "fields": {"action_time": "2024-12-08T20:04:06.614Z", "user": 2, "content_type": 14, "object_id": "ebf52133-f4b4-47e7-98a2-80c481512e70", "object_repr": "Response ebf52133-f4b4-47e7-98a2-80c481512e70 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 744, "fields": {"action_time": "2024-12-08T20:04:06.615Z", "user": 2, "content_type": 14, "object_id": "e7f811a3-eae7-4cdf-9cf5-b69c43f4eec1", "object_repr": "Response e7f811a3-eae7-4cdf-9cf5-b69c43f4eec1 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 745, "fields": {"action_time": "2024-12-08T20:04:06.617Z", "user": 2, "content_type": 14, "object_id": "e47597b5-595f-415a-bd6c-38498b18b978", "object_repr": "Response e47597b5-595f-415a-bd6c-38498b18b978 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 746, "fields": {"action_time": "2024-12-08T20:04:06.618Z", "user": 2, "content_type": 14, "object_id": "e0ff48f8-507b-4f2b-bf17-1392400f1f9f", "object_repr": "Response e0ff48f8-507b-4f2b-bf17-1392400f1f9f (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 747, "fields": {"action_time": "2024-12-08T20:04:06.619Z", "user": 2, "content_type": 14, "object_id": "ddc716b8-563d-4113-b191-1a28a8d228b8", "object_repr": "Response ddc716b8-563d-4113-b191-1a28a8d228b8 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 748, "fields": {"action_time": "2024-12-08T20:04:06.619Z", "user": 2, "content_type": 14, "object_id": "d15f5fdc-fa9e-4020-a13f-c3551a0984d1", "object_repr": "Response d15f5fdc-fa9e-4020-a13f-c3551a0984d1 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 749, "fields": {"action_time": "2024-12-08T20:04:06.620Z", "user": 2, "content_type": 14, "object_id": "c846e4e0-9ce0-44a6-a609-a84ab1e0d4aa", "object_repr": "Response c846e4e0-9ce0-44a6-a609-a84ab1e0d4aa (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 750, "fields": {"action_time": "2024-12-08T20:04:06.621Z", "user": 2, "content_type": 14, "object_id": "c5363320-8105-4077-91bf-a23044f976bd", "object_repr": "Response c5363320-8105-4077-91bf-a23044f976bd (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 751, "fields": {"action_time": "2024-12-08T20:04:06.622Z", "user": 2, "content_type": 14, "object_id": "c2811236-c611-41d5-977d-014cb8d6c778", "object_repr": "Response c2811236-c611-41d5-977d-014cb8d6c778 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 752, "fields": {"action_time": "2024-12-08T20:04:06.623Z", "user": 2, "content_type": 14, "object_id": "c00518d9-fc96-4c8a-932f-3f16ca8cfa55", "object_repr": "Response c00518d9-fc96-4c8a-932f-3f16ca8cfa55 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 753, "fields": {"action_time": "2024-12-08T20:04:06.625Z", "user": 2, "content_type": 14, "object_id": "b20b93f1-b899-41de-a0fa-fe1b0b923845", "object_repr": "Response b20b93f1-b899-41de-a0fa-fe1b0b923845 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 754, "fields": {"action_time": "2024-12-08T20:04:06.626Z", "user": 2, "content_type": 14, "object_id": "ad22bc91-5a7d-4874-8bfb-3b40d1b9d304", "object_repr": "Response ad22bc91-5a7d-4874-8bfb-3b40d1b9d304 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 755, "fields": {"action_time": "2024-12-08T20:04:06.627Z", "user": 2, "content_type": 14, "object_id": "a76c15a5-0e7f-4b0c-aec8-6c4a5e5b3420", "object_repr": "Response a76c15a5-0e7f-4b0c-aec8-6c4a5e5b3420 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 756, "fields": {"action_time": "2024-12-08T20:04:06.628Z", "user": 2, "content_type": 14, "object_id": "a079c78d-ed77-4e63-bf84-66e686959e69", "object_repr": "Response a079c78d-ed77-4e63-bf84-66e686959e69 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 757, "fields": {"action_time": "2024-12-08T20:04:06.629Z", "user": 2, "content_type": 14, "object_id": "9cf103bd-dd51-4d2f-9cb1-df0ec044f3a0", "object_repr": "Response 9cf103bd-dd51-4d2f-9cb1-df0ec044f3a0 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 758, "fields": {"action_time": "2024-12-08T20:04:06.630Z", "user": 2, "content_type": 14, "object_id": "99a01ce5-0406-4fe5-bd0a-91df8220c9a2", "object_repr": "Response 99a01ce5-0406-4fe5-bd0a-91df8220c9a2 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 759, "fields": {"action_time": "2024-12-08T20:04:06.631Z", "user": 2, "content_type": 14, "object_id": "96583227-7267-4423-b633-b614af5f0343", "object_repr": "Response 96583227-7267-4423-b633-b614af5f0343 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 760, "fields": {"action_time": "2024-12-08T20:04:06.632Z", "user": 2, "content_type": 14, "object_id": "93084634-cebb-48a6-a5b7-89edaefdcefa", "object_repr": "Response 93084634-cebb-48a6-a5b7-89edaefdcefa (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 761, "fields": {"action_time": "2024-12-08T20:04:06.633Z", "user": 2, "content_type": 14, "object_id": "915c3633-d00a-453f-9166-7a6f9de0f900", "object_repr": "Response 915c3633-d00a-453f-9166-7a6f9de0f900 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 762, "fields": {"action_time": "2024-12-08T20:04:06.634Z", "user": 2, "content_type": 14, "object_id": "844dc135-8295-47b9-8a19-611411a7af63", "object_repr": "Response 844dc135-8295-47b9-8a19-611411a7af63 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 763, "fields": {"action_time": "2024-12-08T20:04:06.635Z", "user": 2, "content_type": 14, "object_id": "6cfa395d-0782-45ec-9611-7e2559b3c2fc", "object_repr": "Response 6cfa395d-0782-45ec-9611-7e2559b3c2fc (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 764, "fields": {"action_time": "2024-12-08T20:04:06.635Z", "user": 2, "content_type": 14, "object_id": "6ab60eaa-2476-45f2-be82-466a482fe5ee", "object_repr": "Response 6ab60eaa-2476-45f2-be82-466a482fe5ee (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 765, "fields": {"action_time": "2024-12-08T20:04:06.636Z", "user": 2, "content_type": 14, "object_id": "66b16109-a168-4217-9aaf-7437aad2e131", "object_repr": "Response 66b16109-a168-4217-9aaf-7437aad2e131 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 766, "fields": {"action_time": "2024-12-08T20:04:06.637Z", "user": 2, "content_type": 14, "object_id": "649a6a35-45f3-4a63-8b4e-5d4bd7e6e402", "object_repr": "Response 649a6a35-45f3-4a63-8b4e-5d4bd7e6e402 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 767, "fields": {"action_time": "2024-12-08T20:04:06.638Z", "user": 2, "content_type": 14, "object_id": "5f6c1c3f-81eb-4eb2-a967-d41938cdc094", "object_repr": "Response 5f6c1c3f-81eb-4eb2-a967-d41938cdc094 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 768, "fields": {"action_time": "2024-12-08T20:04:06.638Z", "user": 2, "content_type": 14, "object_id": "56ef6ca1-477a-4df5-b987-b8b1bad3acca", "object_repr": "Response 56ef6ca1-477a-4df5-b987-b8b1bad3acca (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 769, "fields": {"action_time": "2024-12-08T20:04:06.639Z", "user": 2, "content_type": 14, "object_id": "504c64ed-25d4-440b-8eac-0a862f241fd3", "object_repr": "Response 504c64ed-25d4-440b-8eac-0a862f241fd3 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 770, "fields": {"action_time": "2024-12-08T20:04:06.640Z", "user": 2, "content_type": 14, "object_id": "4d88a62f-b800-4c9d-bf85-ebd8ca9df808", "object_repr": "Response 4d88a62f-b800-4c9d-bf85-ebd8ca9df808 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 771, "fields": {"action_time": "2024-12-08T20:04:06.641Z", "user": 2, "content_type": 14, "object_id": "3f8fe52e-4abb-4567-859b-5b91049a0131", "object_repr": "Response 3f8fe52e-4abb-4567-859b-5b91049a0131 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 772, "fields": {"action_time": "2024-12-08T20:04:06.642Z", "user": 2, "content_type": 14, "object_id": "3df99669-2c29-47aa-9594-56cd83135ad2", "object_repr": "Response 3df99669-2c29-47aa-9594-56cd83135ad2 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 773, "fields": {"action_time": "2024-12-08T20:04:06.643Z", "user": 2, "content_type": 14, "object_id": "3ddae1c1-97d2-4e3d-8dad-38799a29d3df", "object_repr": "Response 3ddae1c1-97d2-4e3d-8dad-38799a29d3df (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 774, "fields": {"action_time": "2024-12-08T20:04:06.644Z", "user": 2, "content_type": 14, "object_id": "2798a477-965a-4b0c-a4fb-db69cc54686d", "object_repr": "Response 2798a477-965a-4b0c-a4fb-db69cc54686d (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 775, "fields": {"action_time": "2024-12-08T20:04:06.647Z", "user": 2, "content_type": 14, "object_id": "269de054-c25c-4657-8f0a-8259cfa6cc5a", "object_repr": "Response 269de054-c25c-4657-8f0a-8259cfa6cc5a (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 776, "fields": {"action_time": "2024-12-08T20:04:06.648Z", "user": 2, "content_type": 14, "object_id": "25e70682-b9aa-4371-8b6d-a1db26de8d8f", "object_repr": "Response 25e70682-b9aa-4371-8b6d-a1db26de8d8f (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 777, "fields": {"action_time": "2024-12-08T20:04:06.649Z", "user": 2, "content_type": 14, "object_id": "19ad3d9b-68ae-49e4-a1b5-4bedc423ed07", "object_repr": "Response 19ad3d9b-68ae-49e4-a1b5-4bedc423ed07 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 778, "fields": {"action_time": "2024-12-08T20:04:06.650Z", "user": 2, "content_type": 14, "object_id": "11d6e2a1-b759-41f7-b12c-082232d4e30e", "object_repr": "Response 11d6e2a1-b759-41f7-b12c-082232d4e30e (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 779, "fields": {"action_time": "2024-12-08T20:04:06.651Z", "user": 2, "content_type": 14, "object_id": "102a0ee7-aba7-4843-8901-e6ee8a6d53c4", "object_repr": "Response 102a0ee7-aba7-4843-8901-e6ee8a6d53c4 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 780, "fields": {"action_time": "2024-12-08T20:04:06.651Z", "user": 2, "content_type": 14, "object_id": "0d535802-a049-4681-bc12-9455c640d66e", "object_repr": "Response 0d535802-a049-4681-bc12-9455c640d66e (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 781, "fields": {"action_time": "2024-12-08T20:04:06.652Z", "user": 2, "content_type": 14, "object_id": "03042da2-d858-491b-a17f-855c0dba82b3", "object_repr": "Response 03042da2-d858-491b-a17f-855c0dba82b3 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 782, "fields": {"action_time": "2024-12-08T20:04:06.653Z", "user": 2, "content_type": 14, "object_id": "01e7b630-6619-4bb3-a282-b94013b69e70", "object_repr": "Response 01e7b630-6619-4bb3-a282-b94013b69e70 (Popular Places)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 783, "fields": {"action_time": "2024-12-08T20:04:31.893Z", "user": 2, "content_type": 16, "object_id": "1", "object_repr": "Popular Places", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 784, "fields": {"action_time": "2024-12-08T20:05:11.471Z", "user": 2, "content_type": 16, "object_id": "3", "object_repr": "CIVILIAN Survey", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Date that survey was made available\", \"Expiry date of survey\"]}}]"}}, {"model": "admin.logentry", "pk": 785, "fields": {"action_time": "2024-12-08T23:58:57.243Z", "user": 2, "content_type": 8, "object_id": "177", "object_repr": "76b3913a-f21c-492c-9031-64d0e7f7be55", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 786, "fields": {"action_time": "2024-12-08T23:59:44.413Z", "user": 2, "content_type": 11, "object_id": "178", "object_repr": "PointFeature object (178)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Annotation\"]}}]"}}, {"model": "admin.logentry", "pk": 787, "fields": {"action_time": "2024-12-08T23:59:58.635Z", "user": 2, "content_type": 12, "object_id": "14", "object_repr": "PolygonFeature object (14)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Annotation\"]}}]"}}, {"model": "admin.logentry", "pk": 788, "fields": {"action_time": "2024-12-09T08:26:51.135Z", "user": 2, "content_type": 14, "object_id": "ea7871a9-3d1a-49d2-9eed-1985b462cdb4", "object_repr": "Response ea7871a9-3d1a-49d2-9eed-1985b462cdb4 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 789, "fields": {"action_time": "2024-12-09T08:26:51.140Z", "user": 2, "content_type": 14, "object_id": "e2eba48b-24b7-45ab-8cd8-d6e1d79592f1", "object_repr": "Response e2eba48b-24b7-45ab-8cd8-d6e1d79592f1 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 790, "fields": {"action_time": "2024-12-09T08:26:51.141Z", "user": 2, "content_type": 14, "object_id": "dec21334-b2da-46a6-a5e6-ea087b324e73", "object_repr": "Response dec21334-b2da-46a6-a5e6-ea087b324e73 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 791, "fields": {"action_time": "2024-12-09T08:26:51.142Z", "user": 2, "content_type": 14, "object_id": "c5868491-2dd5-46d1-acec-5ec2db92e6cf", "object_repr": "Response c5868491-2dd5-46d1-acec-5ec2db92e6cf (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 792, "fields": {"action_time": "2024-12-09T08:26:51.143Z", "user": 2, "content_type": 14, "object_id": "b81c41ab-49d8-4686-86bf-5320bf83ed1f", "object_repr": "Response b81c41ab-49d8-4686-86bf-5320bf83ed1f (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 793, "fields": {"action_time": "2024-12-09T08:26:51.145Z", "user": 2, "content_type": 14, "object_id": "5c646a51-da9d-4387-a375-17d6c623df28", "object_repr": "Response 5c646a51-da9d-4387-a375-17d6c623df28 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 794, "fields": {"action_time": "2024-12-09T08:26:51.146Z", "user": 2, "content_type": 14, "object_id": "2c368ed2-6c24-4246-950a-dc5855150530", "object_repr": "Response 2c368ed2-6c24-4246-950a-dc5855150530 (CIVILIAN Survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 795, "fields": {"action_time": "2024-12-09T08:27:12.259Z", "user": 2, "content_type": 12, "object_id": "14", "object_repr": "PolygonFeature object (14)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 796, "fields": {"action_time": "2024-12-09T08:27:12.261Z", "user": 2, "content_type": 12, "object_id": "13", "object_repr": "PolygonFeature object (13)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 797, "fields": {"action_time": "2024-12-09T08:27:23.516Z", "user": 2, "content_type": 11, "object_id": "178", "object_repr": "PointFeature object (178)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 798, "fields": {"action_time": "2024-12-09T08:27:23.519Z", "user": 2, "content_type": 11, "object_id": "177", "object_repr": "PointFeature object (177)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 799, "fields": {"action_time": "2024-12-09T08:27:23.520Z", "user": 2, "content_type": 11, "object_id": "176", "object_repr": "PointFeature object (176)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 800, "fields": {"action_time": "2024-12-09T08:27:23.520Z", "user": 2, "content_type": 11, "object_id": "175", "object_repr": "PointFeature object (175)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 801, "fields": {"action_time": "2024-12-09T08:27:23.521Z", "user": 2, "content_type": 11, "object_id": "174", "object_repr": "PointFeature object (174)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 802, "fields": {"action_time": "2024-12-09T08:27:23.521Z", "user": 2, "content_type": 11, "object_id": "173", "object_repr": "PointFeature object (173)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 803, "fields": {"action_time": "2024-12-09T08:27:23.522Z", "user": 2, "content_type": 11, "object_id": "172", "object_repr": "PointFeature object (172)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 804, "fields": {"action_time": "2024-12-09T08:27:23.523Z", "user": 2, "content_type": 11, "object_id": "171", "object_repr": "PointFeature object (171)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 805, "fields": {"action_time": "2024-12-09T08:27:23.523Z", "user": 2, "content_type": 11, "object_id": "170", "object_repr": "PointFeature object (170)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 806, "fields": {"action_time": "2024-12-09T08:27:23.524Z", "user": 2, "content_type": 11, "object_id": "169", "object_repr": "PointFeature object (169)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 807, "fields": {"action_time": "2024-12-09T08:27:23.525Z", "user": 2, "content_type": 11, "object_id": "168", "object_repr": "PointFeature object (168)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 808, "fields": {"action_time": "2024-12-09T08:27:23.526Z", "user": 2, "content_type": 11, "object_id": "167", "object_repr": "PointFeature object (167)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 809, "fields": {"action_time": "2024-12-09T08:27:23.526Z", "user": 2, "content_type": 11, "object_id": "166", "object_repr": "PointFeature object (166)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 810, "fields": {"action_time": "2024-12-09T08:27:23.526Z", "user": 2, "content_type": 11, "object_id": "165", "object_repr": "PointFeature object (165)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 811, "fields": {"action_time": "2024-12-09T08:27:23.527Z", "user": 2, "content_type": 11, "object_id": "164", "object_repr": "PointFeature object (164)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 812, "fields": {"action_time": "2024-12-09T08:27:23.527Z", "user": 2, "content_type": 11, "object_id": "163", "object_repr": "PointFeature object (163)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 813, "fields": {"action_time": "2024-12-09T08:27:23.528Z", "user": 2, "content_type": 11, "object_id": "162", "object_repr": "PointFeature object (162)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 814, "fields": {"action_time": "2024-12-09T08:27:23.529Z", "user": 2, "content_type": 11, "object_id": "161", "object_repr": "PointFeature object (161)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 815, "fields": {"action_time": "2024-12-09T08:27:23.530Z", "user": 2, "content_type": 11, "object_id": "160", "object_repr": "PointFeature object (160)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 816, "fields": {"action_time": "2024-12-09T08:27:23.530Z", "user": 2, "content_type": 11, "object_id": "159", "object_repr": "PointFeature object (159)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 817, "fields": {"action_time": "2024-12-09T08:27:23.531Z", "user": 2, "content_type": 11, "object_id": "158", "object_repr": "PointFeature object (158)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 818, "fields": {"action_time": "2024-12-09T08:27:23.531Z", "user": 2, "content_type": 11, "object_id": "157", "object_repr": "PointFeature object (157)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 819, "fields": {"action_time": "2024-12-09T08:27:23.532Z", "user": 2, "content_type": 11, "object_id": "156", "object_repr": "PointFeature object (156)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 820, "fields": {"action_time": "2024-12-09T08:27:23.532Z", "user": 2, "content_type": 11, "object_id": "155", "object_repr": "PointFeature object (155)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 821, "fields": {"action_time": "2024-12-09T08:27:23.533Z", "user": 2, "content_type": 11, "object_id": "154", "object_repr": "PointFeature object (154)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 822, "fields": {"action_time": "2024-12-09T08:27:23.534Z", "user": 2, "content_type": 11, "object_id": "153", "object_repr": "PointFeature object (153)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 823, "fields": {"action_time": "2024-12-09T08:27:23.534Z", "user": 2, "content_type": 11, "object_id": "152", "object_repr": "PointFeature object (152)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 824, "fields": {"action_time": "2024-12-09T08:27:23.534Z", "user": 2, "content_type": 11, "object_id": "151", "object_repr": "PointFeature object (151)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 825, "fields": {"action_time": "2024-12-09T08:27:23.535Z", "user": 2, "content_type": 11, "object_id": "150", "object_repr": "PointFeature object (150)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 826, "fields": {"action_time": "2024-12-09T08:27:23.536Z", "user": 2, "content_type": 11, "object_id": "149", "object_repr": "PointFeature object (149)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 827, "fields": {"action_time": "2024-12-09T08:27:23.536Z", "user": 2, "content_type": 11, "object_id": "148", "object_repr": "PointFeature object (148)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 828, "fields": {"action_time": "2024-12-09T08:27:32.659Z", "user": 2, "content_type": 9, "object_id": "9", "object_repr": "LineFeature object (9)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 829, "fields": {"action_time": "2024-12-09T08:27:51.108Z", "user": 2, "content_type": 10, "object_id": "186", "object_repr": "76b3913a-f21c-492c-9031-64d0e7f7be55", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 830, "fields": {"action_time": "2024-12-09T08:27:51.111Z", "user": 2, "content_type": 10, "object_id": "185", "object_repr": "b9204010-2c40-4de0-94cf-b32bbd4c096a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 831, "fields": {"action_time": "2024-12-09T08:27:51.113Z", "user": 2, "content_type": 10, "object_id": "184", "object_repr": "e7af15d1-4c9b-419d-9605-299950ca442a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 832, "fields": {"action_time": "2024-12-09T08:27:51.114Z", "user": 2, "content_type": 10, "object_id": "183", "object_repr": "5ec98e03-20d8-4fc0-bf33-75ee0703f82e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 833, "fields": {"action_time": "2024-12-09T08:27:51.115Z", "user": 2, "content_type": 10, "object_id": "182", "object_repr": "32b7d468-f195-4f59-ab27-152d8f628807", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 834, "fields": {"action_time": "2024-12-09T08:27:51.116Z", "user": 2, "content_type": 10, "object_id": "181", "object_repr": "1f30eef4-6342-42fe-849e-ebd07f7a4505", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 835, "fields": {"action_time": "2024-12-09T08:27:51.117Z", "user": 2, "content_type": 10, "object_id": "180", "object_repr": "464fa87b-2473-4f86-8827-5a3dbcf40afa", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 836, "fields": {"action_time": "2024-12-09T08:27:51.118Z", "user": 2, "content_type": 10, "object_id": "179", "object_repr": "d863793c-8d69-4ef7-9c81-1e9104455538", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 837, "fields": {"action_time": "2024-12-09T08:27:51.119Z", "user": 2, "content_type": 10, "object_id": "178", "object_repr": "ef0a790d-6e71-45ed-b621-e70c401200ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 838, "fields": {"action_time": "2024-12-09T08:27:51.120Z", "user": 2, "content_type": 10, "object_id": "177", "object_repr": "01723cf9-7f95-412f-9b01-9c7abb53fafc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 839, "fields": {"action_time": "2024-12-09T08:27:51.121Z", "user": 2, "content_type": 10, "object_id": "176", "object_repr": "a3f2e247-45a4-42c3-a387-c4e63c4d6daa", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 840, "fields": {"action_time": "2024-12-09T08:27:51.122Z", "user": 2, "content_type": 10, "object_id": "175", "object_repr": "1ba08b7f-84e2-42ab-8e0a-c66745c00bd2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 841, "fields": {"action_time": "2024-12-09T08:27:51.124Z", "user": 2, "content_type": 10, "object_id": "174", "object_repr": "57bceb8c-a3c2-4737-a8d6-c6044187dc94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 842, "fields": {"action_time": "2024-12-09T08:27:51.125Z", "user": 2, "content_type": 10, "object_id": "173", "object_repr": "717bfa63-6726-405f-a792-2031a82a5b71", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 843, "fields": {"action_time": "2024-12-09T08:27:51.126Z", "user": 2, "content_type": 10, "object_id": "172", "object_repr": "5cccba20-329d-4769-a159-5017db14ffa3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 844, "fields": {"action_time": "2024-12-09T08:27:51.128Z", "user": 2, "content_type": 10, "object_id": "171", "object_repr": "e04e755d-6f7e-4041-b333-87e831c9c351", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 845, "fields": {"action_time": "2024-12-09T08:27:51.128Z", "user": 2, "content_type": 10, "object_id": "170", "object_repr": "163c23b3-c16a-48c8-89f3-292714010c2f", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 846, "fields": {"action_time": "2024-12-09T08:27:51.129Z", "user": 2, "content_type": 10, "object_id": "169", "object_repr": "1818c63e-42e6-4787-9225-7259b1a8fd82", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 847, "fields": {"action_time": "2024-12-09T08:27:51.129Z", "user": 2, "content_type": 10, "object_id": "168", "object_repr": "ef244194-61be-41ab-86d2-4f6043144978", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 848, "fields": {"action_time": "2024-12-09T08:27:51.130Z", "user": 2, "content_type": 10, "object_id": "167", "object_repr": "b331ce8c-e5d1-44ed-bce3-884b28eba4d0", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 849, "fields": {"action_time": "2024-12-09T08:27:51.131Z", "user": 2, "content_type": 10, "object_id": "166", "object_repr": "4744c2ef-7db4-400d-b97e-bec2fd3657c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 850, "fields": {"action_time": "2024-12-09T08:27:51.132Z", "user": 2, "content_type": 10, "object_id": "165", "object_repr": "8167ad96-6028-4fad-b4a4-0816bfb39b34", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 851, "fields": {"action_time": "2024-12-09T08:27:51.133Z", "user": 2, "content_type": 10, "object_id": "164", "object_repr": "3511ae68-27c6-4bb9-b5d5-72f25a16736e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 852, "fields": {"action_time": "2024-12-09T08:27:51.133Z", "user": 2, "content_type": 10, "object_id": "163", "object_repr": "5e1e2da4-ba9a-4ea8-bf99-8875bbb0bcc2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 853, "fields": {"action_time": "2024-12-09T08:27:51.134Z", "user": 2, "content_type": 10, "object_id": "162", "object_repr": "95c8fd01-1f2e-45e4-89f6-eeb584d7c859", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 854, "fields": {"action_time": "2024-12-09T08:27:51.134Z", "user": 2, "content_type": 10, "object_id": "161", "object_repr": "ef29b584-48c7-4e17-8277-b4cd271e4576", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 855, "fields": {"action_time": "2024-12-09T08:28:34.101Z", "user": 2, "content_type": 8, "object_id": "177", "object_repr": "76b3913a-f21c-492c-9031-64d0e7f7be55", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 856, "fields": {"action_time": "2024-12-09T08:28:34.104Z", "user": 2, "content_type": 8, "object_id": "176", "object_repr": "b9204010-2c40-4de0-94cf-b32bbd4c096a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 857, "fields": {"action_time": "2024-12-09T08:28:34.105Z", "user": 2, "content_type": 8, "object_id": "175", "object_repr": "e7af15d1-4c9b-419d-9605-299950ca442a", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 858, "fields": {"action_time": "2024-12-09T08:28:34.106Z", "user": 2, "content_type": 8, "object_id": "174", "object_repr": "5ec98e03-20d8-4fc0-bf33-75ee0703f82e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 859, "fields": {"action_time": "2024-12-09T08:28:34.107Z", "user": 2, "content_type": 8, "object_id": "173", "object_repr": "32b7d468-f195-4f59-ab27-152d8f628807", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 860, "fields": {"action_time": "2024-12-09T08:28:34.108Z", "user": 2, "content_type": 8, "object_id": "172", "object_repr": "1f30eef4-6342-42fe-849e-ebd07f7a4505", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 861, "fields": {"action_time": "2024-12-09T08:28:34.109Z", "user": 2, "content_type": 8, "object_id": "171", "object_repr": "464fa87b-2473-4f86-8827-5a3dbcf40afa", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 862, "fields": {"action_time": "2024-12-09T08:28:34.109Z", "user": 2, "content_type": 8, "object_id": "170", "object_repr": "d863793c-8d69-4ef7-9c81-1e9104455538", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 863, "fields": {"action_time": "2024-12-09T08:28:34.110Z", "user": 2, "content_type": 8, "object_id": "169", "object_repr": "ef0a790d-6e71-45ed-b621-e70c401200ed", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 864, "fields": {"action_time": "2024-12-09T08:28:34.110Z", "user": 2, "content_type": 8, "object_id": "168", "object_repr": "01723cf9-7f95-412f-9b01-9c7abb53fafc", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 865, "fields": {"action_time": "2024-12-09T08:28:34.111Z", "user": 2, "content_type": 8, "object_id": "167", "object_repr": "a3f2e247-45a4-42c3-a387-c4e63c4d6daa", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 866, "fields": {"action_time": "2024-12-09T08:28:34.111Z", "user": 2, "content_type": 8, "object_id": "166", "object_repr": "1ba08b7f-84e2-42ab-8e0a-c66745c00bd2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 867, "fields": {"action_time": "2024-12-09T08:28:34.112Z", "user": 2, "content_type": 8, "object_id": "165", "object_repr": "57bceb8c-a3c2-4737-a8d6-c6044187dc94", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 868, "fields": {"action_time": "2024-12-09T08:28:34.112Z", "user": 2, "content_type": 8, "object_id": "164", "object_repr": "717bfa63-6726-405f-a792-2031a82a5b71", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 869, "fields": {"action_time": "2024-12-09T08:28:34.113Z", "user": 2, "content_type": 8, "object_id": "163", "object_repr": "5cccba20-329d-4769-a159-5017db14ffa3", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 870, "fields": {"action_time": "2024-12-09T08:28:34.113Z", "user": 2, "content_type": 8, "object_id": "162", "object_repr": "e04e755d-6f7e-4041-b333-87e831c9c351", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 871, "fields": {"action_time": "2024-12-09T08:28:34.114Z", "user": 2, "content_type": 8, "object_id": "161", "object_repr": "fbcd1a19-7f4c-4cf6-9594-9a0ad8380631", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 872, "fields": {"action_time": "2024-12-09T08:28:34.114Z", "user": 2, "content_type": 8, "object_id": "160", "object_repr": "191fecd9-b0eb-43ee-b9e4-5f92a53e51b9", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 873, "fields": {"action_time": "2024-12-09T08:28:34.114Z", "user": 2, "content_type": 8, "object_id": "159", "object_repr": "ef244194-61be-41ab-86d2-4f6043144978", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 874, "fields": {"action_time": "2024-12-09T08:28:34.115Z", "user": 2, "content_type": 8, "object_id": "158", "object_repr": "b331ce8c-e5d1-44ed-bce3-884b28eba4d0", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 875, "fields": {"action_time": "2024-12-09T08:28:34.115Z", "user": 2, "content_type": 8, "object_id": "157", "object_repr": "4744c2ef-7db4-400d-b97e-bec2fd3657c2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 876, "fields": {"action_time": "2024-12-09T08:28:34.116Z", "user": 2, "content_type": 8, "object_id": "156", "object_repr": "8167ad96-6028-4fad-b4a4-0816bfb39b34", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 877, "fields": {"action_time": "2024-12-09T08:28:34.116Z", "user": 2, "content_type": 8, "object_id": "155", "object_repr": "3511ae68-27c6-4bb9-b5d5-72f25a16736e", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 878, "fields": {"action_time": "2024-12-09T08:28:34.116Z", "user": 2, "content_type": 8, "object_id": "154", "object_repr": "5e1e2da4-ba9a-4ea8-bf99-8875bbb0bcc2", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 879, "fields": {"action_time": "2024-12-09T08:28:34.117Z", "user": 2, "content_type": 8, "object_id": "153", "object_repr": "95c8fd01-1f2e-45e4-89f6-eeb584d7c859", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 880, "fields": {"action_time": "2024-12-09T08:29:08.083Z", "user": 2, "content_type": 10, "object_id": "187", "object_repr": "Delft", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 881, "fields": {"action_time": "2024-12-09T08:31:25.476Z", "user": 2, "content_type": 16, "object_id": "5", "object_repr": "Sample survey", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 882, "fields": {"action_time": "2024-12-09T08:33:08.591Z", "user": 2, "content_type": 13, "object_id": "22", "object_repr": "Where do you live? (sample)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 883, "fields": {"action_time": "2024-12-09T08:34:10.738Z", "user": 2, "content_type": 10, "object_id": "187", "object_repr": "Delft", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 884, "fields": {"action_time": "2024-12-09T08:34:42.552Z", "user": 2, "content_type": 16, "object_id": "5", "object_repr": "Simple example survey", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Name of the survey\"]}}]"}}, {"model": "admin.logentry", "pk": 885, "fields": {"action_time": "2024-12-09T08:34:55.820Z", "user": 2, "content_type": 13, "object_id": "22", "object_repr": "Where do you live? (sample)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"If the question must be answered geospatially or not\", \"Mapview\"]}}]"}}, {"model": "admin.logentry", "pk": 886, "fields": {"action_time": "2024-12-09T08:41:09.571Z", "user": 2, "content_type": 13, "object_id": "22", "object_repr": "Where do you live? (sample)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Survey\"]}}]"}}, {"model": "admin.logentry", "pk": 887, "fields": {"action_time": "2024-12-09T08:45:55.605Z", "user": 2, "content_type": 14, "object_id": "c4ae98e0-a998-48fb-b2ff-2a7bac03cd9a", "object_repr": "Response c4ae98e0-a998-48fb-b2ff-2a7bac03cd9a (Simple example survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 888, "fields": {"action_time": "2024-12-09T08:48:35.907Z", "user": 2, "content_type": 15, "object_id": "120", "object_repr": "Response 02c6c6d1-a2f6-46b4-a772-3e8b3d7b07fb:Where do you live? (sample)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 889, "fields": {"action_time": "2024-12-09T08:52:47.343Z", "user": 2, "content_type": 8, "object_id": "178", "object_repr": "85f3a01a-9507-4066-be5e-131ce02d09fb", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 890, "fields": {"action_time": "2024-12-09T08:53:02.346Z", "user": 2, "content_type": 8, "object_id": "180", "object_repr": "eea3e697-dc39-485f-be71-3fdf34981454", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 891, "fields": {"action_time": "2024-12-09T08:53:14.060Z", "user": 2, "content_type": 8, "object_id": "179", "object_repr": "1562a41f-9cae-4f97-91b6-4368af4852de", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 892, "fields": {"action_time": "2024-12-09T08:57:24.439Z", "user": 2, "content_type": 14, "object_id": "5ade260d-669d-4e4d-9c3b-b69294e4d235", "object_repr": "Response 5ade260d-669d-4e4d-9c3b-b69294e4d235 (Simple example survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 893, "fields": {"action_time": "2024-12-09T08:57:24.446Z", "user": 2, "content_type": 14, "object_id": "02c6c6d1-a2f6-46b4-a772-3e8b3d7b07fb", "object_repr": "Response 02c6c6d1-a2f6-46b4-a772-3e8b3d7b07fb (Simple example survey)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 894, "fields": {"action_time": "2024-12-09T08:57:34.187Z", "user": 2, "content_type": 8, "object_id": "180", "object_repr": "eea3e697-dc39-485f-be71-3fdf34981454", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 895, "fields": {"action_time": "2024-12-09T08:57:34.189Z", "user": 2, "content_type": 8, "object_id": "179", "object_repr": "1562a41f-9cae-4f97-91b6-4368af4852de", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 896, "fields": {"action_time": "2024-12-09T08:57:34.190Z", "user": 2, "content_type": 8, "object_id": "178", "object_repr": "85f3a01a-9507-4066-be5e-131ce02d09fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 897, "fields": {"action_time": "2024-12-09T08:57:46.498Z", "user": 2, "content_type": 10, "object_id": "190", "object_repr": "eea3e697-dc39-485f-be71-3fdf34981454", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 898, "fields": {"action_time": "2024-12-09T08:57:46.501Z", "user": 2, "content_type": 10, "object_id": "189", "object_repr": "1562a41f-9cae-4f97-91b6-4368af4852de", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 899, "fields": {"action_time": "2024-12-09T08:57:46.502Z", "user": 2, "content_type": 10, "object_id": "188", "object_repr": "85f3a01a-9507-4066-be5e-131ce02d09fb", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 900, "fields": {"action_time": "2024-12-09T09:00:26.553Z", "user": 2, "content_type": 10, "object_id": "191", "object_repr": "a83df4c7-c458-430e-b07e-f6883447ff09", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description of the MapView\"]}}]"}}, {"model": "admin.logentry", "pk": 901, "fields": {"action_time": "2024-12-09T09:01:00.227Z", "user": 2, "content_type": 8, "object_id": "182", "object_repr": "a6db3975-967b-4907-a3e5-ee4032f2c017", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 902, "fields": {"action_time": "2024-12-09T09:01:19.040Z", "user": 2, "content_type": 8, "object_id": "181", "object_repr": "a83df4c7-c458-430e-b07e-f6883447ff09", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Description\"]}}]"}}, {"model": "admin.logentry", "pk": 903, "fields": {"action_time": "2024-12-09T09:05:24.184Z", "user": 2, "content_type": 11, "object_id": "183", "object_repr": "PointFeature object (183)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Annotation\"]}}]"}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$720000$Exp83Sdgv7q1aAbosN5x58$47ZEPhOVaJMI8j0B2XxNwsb4mij+N60SKvXjlOMt3co=", "last_login": "2024-08-01T08:10:54.872Z", "is_superuser": true, "username": "admin", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2024-05-08T15:59:42.246Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$720000$RwMzwDLqopn2gN95rQMgY4$Rf2SYQoNx4fH6q2cqiJRzdqQ8BCcxsXc32Bc42jhsuA=", "last_login": "2024-12-09T09:34:05.996Z", "is_superuser": true, "username": "citizen", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2024-12-08T19:57:25.346Z", "groups": [], "user_permissions": []}}, {"model": "sessions.session", "pk": "3pwfefa6q4cgri1n16ubzd8vzlcymgd2", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sZQti:2bW_Jw2tr0XXEbAEXxl0NCaFxc7Np78LY7Nieix840Q", "expire_date": "2024-08-15T08:10:54.876Z"}}, {"model": "sessions.session", "pk": "acl1sk3nx1uubwuv0f8ao8jsjccxe5a1", "fields": {"session_data": ".eJxVjEEOwiAQRe_C2hA6DKW4dO8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3EWIE6_W6D44LqDdKd6azK2ui5zkLsiD9rltSV-Xg7376BQL9_aUaSEFlkP2Sqj7TACY8QJlXFxdOA4GMoIOSBPYFXWgFmRsgETZRDvD9PvN58:1tKa9V:p1rWCTB13_M6CJ_Q9VBPrayttny4bKZVTwgkd9jL7c0", "expire_date": "2024-12-23T09:34:05.999Z"}}, {"model": "sessions.session", "pk": "e8ttvirbefbkepu27u0b72f3crzmw5rg", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sHK3q:yDyx3GFH7jpSgwOTuLzY-8tl_9tbwsNZ6wTvu46e5wM", "expire_date": "2024-06-26T09:14:30.480Z"}}, {"model": "sessions.session", "pk": "gjxv0ji2639fbk0v7ke7f584zufn79wt", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1s4jhz:TjbrwX-MoA359g6M_GXcC3MddBYo-lsWavlWWNM1c8k", "expire_date": "2024-05-22T15:59:55.830Z"}}, {"model": "sessions.session", "pk": "i0nertwtk70gn9fd762zjc487lf7a3q2", "fields": {"session_data": ".eJxVjEEOwiAQRe_C2hA6DKW4dO8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3EWIE6_W6D44LqDdKd6azK2ui5zkLsiD9rltSV-Xg7376BQL9_aUaSEFlkP2Sqj7TACY8QJlXFxdOA4GMoIOSBPYFXWgFmRsgETZRDvD9PvN58:1tKNUj:vgs6c7LOIszmQnoNQZKIOtQnk8IWdafUI1eRj3R6j9M", "expire_date": "2024-12-22T20:03:09.509Z"}}, {"model": "sessions.session", "pk": "kqdse8b2rquf07ntkv0jh8koz0mvhmya", "fields": {"session_data": ".eJxVjEsOwjAMBe-SNYqom4_Dkn3PUDm2QwqolfpZIe4OlbqA7ZuZ9zI9bWvtt0XnfhBzMY05_W6Z-KHjDuRO422yPI3rPGS7K_agi-0m0ef1cP8OKi31W2MDwL60IIGEYvRBAdFJFp-VHaS2IFFG1sZj8BCDS5RUS0Zp05nN-wPqIjhK:1sMQT0:HyoeZoOQ6Rh2pdplnmGmrYiQ4rLO5ukpvuJCqnjry9c", "expire_date": "2024-07-10T11:05:34.809Z"}}, {"model": "sites.site", "pk": 1, "fields": {"domain": "example.com", "name": "example.com"}}, {"model": "apiapp.survey", "pk": 3, "fields": {"name": "CIVILIAN Survey", "description": "You are invited to participate in a research survey to understand how residents perceive their neighbourhood. As a resident, there is no better person than you to indicate and describe the positive and negative aspects of your neighbourhood. You are the expert, and your answers are very valuable to us in understanding what residents find important to make a neighbourhood a nice place to live.\r\n\r\nIn the survey, you will be asked questions about the neighbourhood where you live, places you like or dislike, places to be improved, and places where you identify an issue (such as noise or pollution). No personal data will be collected or published.\r\nAs researchers, we aim to collect and analyse your data and make recommendations for decision-makers. We will also make your voices heard by making your answers public on a dashboard that is available to all.\r\n\r\nThe survey is completely anonymous. Your participation in this study is entirely voluntary, and you can withdraw at any time. You are free to skip questions. Since it is anonymous, removing data once the form is completed is not possible. As with any online activity, the risk of a breach is always possible, but to the best of our ability, your answers will remain confidential.\r\n\r\nThis study is part of the Citizen Voice initiative at the Delft University of Technology. In case you have questions or would like to be updated on the outcomes of this study, you can contact Juliana Goncalves (Assistant Professor in the Department of Urbanism, TU Delft) J.E.Goncalves@tudelft.nl.\r\n\r\nBy proceeding with the survey, you agree to this Opening Statement and provide informed consent to participate.", "is_published": true, "need_logged_user": false, "editable_answers": true, "submit_message": "Thank you for your participation!", "publish_date": "2024-12-08T08:23:56Z", "expire_date": "2025-04-01T08:24:07Z", "public_url": "", "designer": 1}}, {"model": "apiapp.survey", "pk": 5, "fields": {"name": "Simple example survey", "description": "This is a survey that servers as an example", "is_published": true, "need_logged_user": false, "editable_answers": true, "submit_message": "Thank you for your participation!", "publish_date": "2024-12-09T08:30:57Z", "expire_date": "2024-12-31T08:31:05Z", "public_url": "", "designer": 2}}, {"model": "apiapp.response", "pk": "7d8fbc5b-3550-4423-bc42-17296c8210ea", "fields": {"created": "2024-12-09T08:58:14.467Z", "updated": "2024-12-09T08:58:14.467Z", "survey": 5, "respondent": null}}, {"model": "apiapp.response", "pk": "c065f263-bb18-4dc2-84ab-1be391fe8c49", "fields": {"created": "2024-12-09T08:59:30.000Z", "updated": "2024-12-09T08:59:30.000Z", "survey": 5, "respondent": null}}, {"model": "apiapp.response", "pk": "c83e652d-d469-4646-8637-9378c0f5ecc7", "fields": {"created": "2024-12-09T09:36:45.532Z", "updated": "2024-12-09T09:36:45.532Z", "survey": 3, "respondent": null}}, {"model": "apiapp.pointfeature", "pk": 182, "fields": {"geom": "SRID=4326;POINT (4.366465 52.002804)", "annotation": null, "location": 181}}, {"model": "apiapp.pointfeature", "pk": 183, "fields": {"geom": "SRID=4326;POINT (4.377848 52.003144999999996)", "annotation": "text to display on map pin pop-up", "location": 182}}, {"model": "apiapp.pointfeature", "pk": 184, "fields": {"geom": "SRID=4326;POINT (4.355392 52.010767)", "annotation": "my favorite area (place)", "location": 183}}, {"model": "apiapp.pointfeature", "pk": 185, "fields": {"geom": "SRID=4326;POINT (4.36757 52.006762)", "annotation": "trees", "location": 186}}, {"model": "apiapp.pointfeature", "pk": 186, "fields": {"geom": "SRID=4326;POINT (4.366964 52.007716)", "annotation": "flowers", "location": 186}}, {"model": "apiapp.pointfeature", "pk": 187, "fields": {"geom": "SRID=4326;POINT (4.370788 52.009163)", "annotation": "birds", "location": 187}}, {"model": "apiapp.pointfeature", "pk": 188, "fields": {"geom": "SRID=4326;POINT (4.370713 52.007934)", "annotation": "butterflies", "location": 187}}, {"model": "apiapp.pointfeature", "pk": 189, "fields": {"geom": "SRID=4326;POINT (4.371539 52.008819)", "annotation": "this is how to improve it", "location": 188}}, {"model": "apiapp.pointfeature", "pk": 190, "fields": {"geom": "SRID=4326;POINT (4.369394 52.006822)", "annotation": null, "location": 189}}, {"model": "apiapp.pointfeature", "pk": 191, "fields": {"geom": "SRID=4326;POINT (4.367452 52.006293)", "annotation": null, "location": 189}}, {"model": "apiapp.pointfeature", "pk": 192, "fields": {"geom": "SRID=4326;POINT (4.371523 52.008701)", "annotation": "source of noise", "location": 190}}, {"model": "apiapp.pointfeature", "pk": 193, "fields": {"geom": "SRID=4326;POINT (4.370515 52.009949)", "annotation": "source of noise", "location": 190}}, {"model": "apiapp.pointfeature", "pk": 194, "fields": {"geom": "SRID=4326;POINT (4.37162 52.007878)", "annotation": "source of noise", "location": 190}}, {"model": "apiapp.pointfeature", "pk": 195, "fields": {"geom": "SRID=4326;POINT (4.369651 52.009539)", "annotation": null, "location": 191}}, {"model": "apiapp.pointfeature", "pk": 196, "fields": {"geom": "SRID=4326;POINT (4.371314 52.009196)", "annotation": null, "location": 191}}, {"model": "apiapp.pointfeature", "pk": 197, "fields": {"geom": "SRID=4326;POINT (4.366926 52.006613)", "annotation": null, "location": 192}}, {"model": "apiapp.pointfeature", "pk": 198, "fields": {"geom": "SRID=4326;POINT (4.370123 52.009767)", "annotation": null, "location": 192}}, {"model": "apiapp.pointfeature", "pk": 199, "fields": {"geom": "SRID=4326;POINT (4.371228 52.007657)", "annotation": null, "location": 194}}, {"model": "apiapp.pointfeature", "pk": 200, "fields": {"geom": "SRID=4326;POINT (4.366422 52.007333)", "annotation": null, "location": 194}}, {"model": "apiapp.pointfeature", "pk": 201, "fields": {"geom": "SRID=4326;POINT (4.367087 52.008053)", "annotation": null, "location": 194}}, {"model": "apiapp.polygonfeature", "pk": 15, "fields": {"geom": "SRID=4326;POLYGON ((4.369276 52.005197, 4.370434 52.004576, 4.371142 52.005118, 4.369801 52.005672, 4.369276 52.005197))", "annotation": "my least favourite area", "location": 184}}, {"model": "apiapp.polygonfeature", "pk": 16, "fields": {"geom": "SRID=4326;POLYGON ((4.369243 52.006567, 4.370198 52.006125, 4.371207 52.00693, 4.370821 52.007089, 4.369243 52.006567))", "annotation": null, "location": 185}}, {"model": "apiapp.polygonfeature", "pk": 17, "fields": {"geom": "SRID=4326;POLYGON ((4.368374 52.008113, 4.368868 52.007604, 4.369833 52.007934, 4.369254 52.008489, 4.368374 52.008113))", "annotation": "this is how to improve it", "location": 188}}, {"model": "apiapp.polygonfeature", "pk": 18, "fields": {"geom": "SRID=4326;POLYGON ((4.369211 52.008235, 4.369603 52.007829, 4.369882 52.007921, 4.369474 52.008327, 4.369211 52.008235))", "annotation": null, "location": 193}}, {"model": "apiapp.linefeature", "pk": 10, "fields": {"geom": "SRID=4326;LINESTRING (4.36949 52.009592, 4.368975 52.009077, 4.368664 52.00876, 4.367259 52.008119)", "annotation": "this is how to improve it", "location": 188}}, {"model": "apiapp.locationcollection", "pk": 181, "fields": {"name": "a83df4c7-c458-430e-b07e-f6883447ff09", "description": "text attached to a collection of locations (geometries)"}}, {"model": "apiapp.locationcollection", "pk": 182, "fields": {"name": "a6db3975-967b-4907-a3e5-ee4032f2c017", "description": "text attached to a collection of locations (geometries)"}}, {"model": "apiapp.locationcollection", "pk": 183, "fields": {"name": "8c75db51-c2b5-4ffd-acac-e180c3e5db15", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 184, "fields": {"name": "2671b566-0146-4f94-8866-b2e17a29f941", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 185, "fields": {"name": "0ceab71e-ee0c-4750-a07b-0f97c1d88485", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 186, "fields": {"name": "40443cbb-3525-4171-9c74-eae5bb8f0c6d", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 187, "fields": {"name": "3e48e700-e2c2-4eb5-aa53-77c5dd884a89", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 188, "fields": {"name": "96321cb8-9a2c-4979-a295-3dee5c35833c", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 189, "fields": {"name": "af11bb7f-7cab-4a0d-b195-4de274add44f", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 190, "fields": {"name": "968db664-c153-4ef5-a69a-94344f1cf7de", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 191, "fields": {"name": "4c55bd10-7cb4-465d-9510-cd66b056281a", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 192, "fields": {"name": "2f2bf918-f8c9-4182-a747-cd8e3eb974e9", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 193, "fields": {"name": "5f99a44f-52ee-443e-8895-836990d7ebd5", "description": ""}}, {"model": "apiapp.locationcollection", "pk": 194, "fields": {"name": "4c4c414a-9c2f-46b9-b2a5-52a484e2bcd7", "description": ""}}, {"model": "apiapp.mapview", "pk": 18, "fields": {"name": "Civilian NL", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 7, "center": [52.2777371, 5.2892997]}, "location": null}}, {"model": "apiapp.mapview", "pk": 121, "fields": {"name": "Delft", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 15, "center": [51.9999518, 4.3641589]}, "location": null}}, {"model": "apiapp.mapview", "pk": 191, "fields": {"name": "a83df4c7-c458-430e-b07e-f6883447ff09", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": "some text about the map. Optional", "options": {"zoom": 18, "center": [52.003076971234044, 4.367880821228028]}, "location": 181}}, {"model": "apiapp.mapview", "pk": 192, "fields": {"name": "a6db3975-967b-4907-a3e5-ee4032f2c017", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 18, "center": [52.00377708272014, 4.376619458198548]}, "location": 182}}, {"model": "apiapp.mapview", "pk": 193, "fields": {"name": "8c75db51-c2b5-4ffd-acac-e180c3e5db15", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 17, "center": [52.01137522982, 4.356915950775147]}, "location": 183}}, {"model": "apiapp.mapview", "pk": 194, "fields": {"name": "2671b566-0146-4f94-8866-b2e17a29f941", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 17, "center": [52.00487015941723, 4.370702505111695]}, "location": 184}}, {"model": "apiapp.mapview", "pk": 195, "fields": {"name": "0ceab71e-ee0c-4750-a07b-0f97c1d88485", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 17, "center": [52.00701660696961, 4.3690824508667]}, "location": 185}}, {"model": "apiapp.mapview", "pk": 196, "fields": {"name": "40443cbb-3525-4171-9c74-eae5bb8f0c6d", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 18, "center": [52.00715199482527, 4.368277788162232]}, "location": 186}}, {"model": "apiapp.mapview", "pk": 197, "fields": {"name": "3e48e700-e2c2-4eb5-aa53-77c5dd884a89", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 17, "center": [52.007941198807, 4.37182903289795]}, "location": 187}}, {"model": "apiapp.mapview", "pk": 198, "fields": {"name": "96321cb8-9a2c-4979-a295-3dee5c35833c", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 17, "center": [52.007677031659824, 4.367784261703492]}, "location": 188}}, {"model": "apiapp.mapview", "pk": 199, "fields": {"name": "af11bb7f-7cab-4a0d-b195-4de274add44f", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 18, "center": [52.007224641798516, 4.368535280227662]}, "location": 189}}, {"model": "apiapp.mapview", "pk": 200, "fields": {"name": "968db664-c153-4ef5-a69a-94344f1cf7de", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 18, "center": [52.0096780589675, 4.370938539505006]}, "location": 190}}, {"model": "apiapp.mapview", "pk": 201, "fields": {"name": "4c55bd10-7cb4-465d-9510-cd66b056281a", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 18, "center": [52.00882614738824, 4.370241165161134]}, "location": 191}}, {"model": "apiapp.mapview", "pk": 202, "fields": {"name": "2f2bf918-f8c9-4182-a747-cd8e3eb974e9", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 17, "center": [52.00771005263849, 4.3700909614563]}, "location": 192}}, {"model": "apiapp.mapview", "pk": 203, "fields": {"name": "5f99a44f-52ee-443e-8895-836990d7ebd5", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 18, "center": [52.007396352357325, 4.37007486820221]}, "location": 193}}, {"model": "apiapp.mapview", "pk": 204, "fields": {"name": "4c4c414a-9c2f-46b9-b2a5-52a484e2bcd7", "map_service_url": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", "description": null, "options": {"zoom": 17, "center": [52.006765643031905, 4.367934465408326]}, "location": 194}}, {"model": "apiapp.question", "pk": 5, "fields": {"text": "Please select the statement that represents your feelings about the neighbourhood where you currently live.", "explanation": null, "order": 1, "required": true, "has_text_input": true, "question_type": "radio", "choices": "I like to live in my neighbourhood and intend to stay here for many years., \r\nI like to live in my neighbourhood but would like to move elsewhere in the city., \r\nI do not like to live in my neighbourhood and I would like to move elsewhere in the city.,\r\nI do not like to live in my neighbourhood but would like to see it improve.,\r\nI like to live in my neighbourhood but I am living here temporarily and plan to move to another city.,\r\nOther.", "survey": 3, "is_geospatial": false, "mapview": null}}, {"model": "apiapp.question", "pk": 6, "fields": {"text": "What is your favourite area in the neighbourhood and why?", "explanation": "Please mark it on the map.", "order": 2, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 7, "fields": {"text": "What is your least favourite area in the neighbourhood and why?", "explanation": "Please mark it on the map.", "order": 3, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 8, "fields": {"text": "What is the closest green area to your house?", "explanation": "Please mark it on the map.", "order": 4, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 9, "fields": {"text": "In your neighbourhood, where would you like to see more green areas, and what kind of green would you like to see there (flowers, trees, vegetables)?", "explanation": "Please mark it on the map, and click on the symbol to type the kind of green you would like.", "order": 5, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 10, "fields": {"text": "In your neighbourhood, where do you often see wild animals, and what animals did you see (for example, birds, butterflies, bees, frogs, fishes, squirrels, rabbits, and other small animals)?", "explanation": "Please mark it on the map, and click on the symbol to type what have you seen.", "order": 6, "required": true, "has_text_input": false, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 11, "fields": {"text": "In your neighbourhood, what public places, like parks, sidewalks, and squares, do you think could be improved and how?", "explanation": "Please mark it on the map, and click on the symbol to type how they can be improved.", "order": 7, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 13, "fields": {"text": "Could you identify the places in your neighbourhood where air pollution is a problem and describe where the pollution comes from?", "explanation": "Please mark these on the map.", "order": 8, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 14, "fields": {"text": "Could you identify the places in your neighbourhood where noise is a problem and describe where the noise comes from?", "explanation": "Please mark these on the map.", "order": 9, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 15, "fields": {"text": "Could you identify the places in your neighbourhood where you feel unsafe?", "explanation": "Please mark it on the map.", "order": 10, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 16, "fields": {"text": "In your neighbourhood, where do you feel the hottest during summer days and heat waves?", "explanation": "Please mark it on the map.", "order": 11, "required": true, "has_text_input": true, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 17, "fields": {"text": "In your neighbourhood, where do you see water on the ground after a heavy rain?", "explanation": "Please mark it on the map.", "order": 12, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 18, "fields": {"text": "Could you identify the places in your neighbourhood where waste/trash is a problem?", "explanation": "Please mark these on the map.", "order": 13, "required": true, "has_text_input": false, "question_type": "short-text", "choices": "", "survey": 3, "is_geospatial": true, "mapview": 18}}, {"model": "apiapp.question", "pk": 19, "fields": {"text": "Is there anything else you would like to say about your neighbourhood?", "explanation": null, "order": 14, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 3, "is_geospatial": false, "mapview": null}}, {"model": "apiapp.question", "pk": 22, "fields": {"text": "Where do you live? (sample)", "explanation": "Draw a pin on the map", "order": 1, "required": true, "has_text_input": true, "question_type": "text", "choices": "", "survey": 5, "is_geospatial": true, "mapview": 121}}, {"model": "apiapp.answer", "pk": 122, "fields": {"response": "7d8fbc5b-3550-4423-bc42-17296c8210ea", "question": 22, "mapview": 191, "created": "2024-12-09T08:58:43.076Z", "updated": "2024-12-09T08:58:43.076Z", "body": "Optinal text"}}, {"model": "apiapp.answer", "pk": 123, "fields": {"response": "c065f263-bb18-4dc2-84ab-1be391fe8c49", "question": 22, "mapview": 192, "created": "2024-12-09T08:59:57.902Z", "updated": "2024-12-09T08:59:57.903Z", "body": ""}}, {"model": "apiapp.answer", "pk": 124, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 5, "mapview": null, "created": "2024-12-09T09:54:56.246Z", "updated": "2024-12-09T09:54:56.246Z", "body": "I like to live in my neighbourhood and intend to stay here for many years."}}, {"model": "apiapp.answer", "pk": 125, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 9, "mapview": 196, "created": "2024-12-09T09:54:56.249Z", "updated": "2024-12-09T09:54:56.249Z", "body": ""}}, {"model": "apiapp.answer", "pk": 126, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 10, "mapview": 197, "created": "2024-12-09T09:54:56.249Z", "updated": "2024-12-09T09:54:56.249Z", "body": ""}}, {"model": "apiapp.answer", "pk": 127, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 16, "mapview": 202, "created": "2024-12-09T09:54:56.250Z", "updated": "2024-12-09T09:54:56.250Z", "body": "very hot during heat waves"}}, {"model": "apiapp.answer", "pk": 128, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 13, "mapview": 199, "created": "2024-12-09T09:54:56.250Z", "updated": "2024-12-09T09:54:56.250Z", "body": "air pollution is caused by traffic on the main road"}}, {"model": "apiapp.answer", "pk": 129, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 11, "mapview": 198, "created": "2024-12-09T09:54:56.251Z", "updated": "2024-12-09T09:54:56.251Z", "body": ""}}, {"model": "apiapp.answer", "pk": 130, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 14, "mapview": 200, "created": "2024-12-09T09:54:56.252Z", "updated": "2024-12-09T09:54:56.252Z", "body": "the very busy road"}}, {"model": "apiapp.answer", "pk": 131, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 8, "mapview": 195, "created": "2024-12-09T09:54:56.253Z", "updated": "2024-12-09T09:54:56.253Z", "body": ""}}, {"model": "apiapp.answer", "pk": 132, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 17, "mapview": 203, "created": "2024-12-09T09:54:56.259Z", "updated": "2024-12-09T09:54:56.259Z", "body": ""}}, {"model": "apiapp.answer", "pk": 133, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 15, "mapview": 201, "created": "2024-12-09T09:54:56.276Z", "updated": "2024-12-09T09:54:56.276Z", "body": ""}}, {"model": "apiapp.answer", "pk": 134, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 6, "mapview": 193, "created": "2024-12-09T09:54:56.276Z", "updated": "2024-12-09T09:54:56.276Z", "body": "there is a green area"}}, {"model": "apiapp.answer", "pk": 135, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 19, "mapview": null, "created": "2024-12-09T09:54:56.277Z", "updated": "2024-12-09T09:54:56.277Z", "body": "Any other opinion"}}, {"model": "apiapp.answer", "pk": 136, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 7, "mapview": 194, "created": "2024-12-09T09:54:56.278Z", "updated": "2024-12-09T09:54:56.278Z", "body": "it is too noisy"}}, {"model": "apiapp.answer", "pk": 137, "fields": {"response": "c83e652d-d469-4646-8637-9378c0f5ecc7", "question": 18, "mapview": 204, "created": "2024-12-09T09:54:56.283Z", "updated": "2024-12-09T09:54:56.283Z", "body": ""}}] \ No newline at end of file From 52278f478c18ba36185c754d47651a715d9b8b30 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Mon, 9 Dec 2024 12:22:40 +0100 Subject: [PATCH 57/58] Add API Docker container setup instructions to README.dev.md --- README.dev.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/README.dev.md b/README.dev.md index 63cee9d1..85e4ee80 100644 --- a/README.dev.md +++ b/README.dev.md @@ -2,6 +2,43 @@ If you're looking for user documentation, go [here](README.md). + +## API Docker container + +The api can be reproduced using docker compose as follows: + +1. Clone the repository, the latest version is in the `devel` branch. +2. Add a `.env` file to the root of the repository with the following varialbles. Values can be adjusted. + +```shell +DATABASE=civo +JDANGO_DB_ENGINE=postgis +DB_USER=citizen +DB_PORT=5432 +DJANGO_DEBUG=1 +DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1] +``` + +3. Create a directory in the root of the repository called `secrets/`, and create the secrets for the Django token and the database password as follows: + +```shell +# file name: django_token.txt + +``` + +```shell +# file name: django_token.txt + +``` + +4. Build and run using docker compose. The database will be populated with sample data. + +```shell +docker compose -f docker-compose.yaml build + +docker compose -f docker-compose.yaml up +``` + ## Development installation Follow the instruction below to set up a development environment. We use Python 3.10 and Django 4.0.x for development. From aa50a6373c6ab803e0f2dbddabf6cbdc58d1687c Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Mon, 9 Dec 2024 12:22:46 +0100 Subject: [PATCH 58/58] Remove deprecated docker-compose.deploy.yaml file --- docker-compose.deploy.yaml | 99 -------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 docker-compose.deploy.yaml diff --git a/docker-compose.deploy.yaml b/docker-compose.deploy.yaml deleted file mode 100644 index 363bfef7..00000000 --- a/docker-compose.deploy.yaml +++ /dev/null @@ -1,99 +0,0 @@ -services: - db-postgis: - image: postgis/postgis:16-3.4-alpine - container_name: db-postgis - environment: - - POSTGRES_PASSWORD=${POSTGRES_PWD} - volumes: - - postgis-data:/var/lib/postgresql/data - - ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh - restart: unless-stopped - ports: - - "5432:5432" - networks: - - nuxt-network - - django-app: - # TODO: debug the connection to the api app. - build: - context: ./citizenvoice - container_name: django-app - volumes: - - ./citizenvoice:/citizenvoice - ports: - - 8000:8000 - environment: - - SECRET_KEY=${SECRET_KEY} - - DATABASE_ENGINE=${DATABASE_ENGINE} - - POSTGRES_DBASE=${POSTGRES_DBASE} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_PWD=${POSTGRES_PWD} - - POSTGRES_HOST=${POSTGRES_HOST} - - POSTGRES_PORT=${POSTGRES_PORT} - - DJANGO_ALLOWED_HOSTS=${DJANGO_ALLOWED_HOSTS} - depends_on: - - db-postgis - restart: always - networks: - - nuxt-network - - nuxt-app: - build: ./frontend - container_name: nuxt-app - ports: - - "3000:3000" - command: "yarn run start" - environment: - API_PARTY_CMS_URL: http://django-app:8000/api/v2 - depends_on: - - django-app - networks: - - nuxt-network - restart: always - - web-server: - build: - context: ./container/nginx - container_name: web-server - ports: - - 80:80 - - 443:443 - networks: - - nuxt-network - depends_on: - - nuxt-app - - django-app - restart: always - volumes: - - web-root:/var/www/citizenvoice - - cerbot-web:/vol/www - - proxy-dhparams:/vol/proxy - - cerbot-certs:/etc/letsencrypt - environment: - - DOMAIN=${DOMAIN} - - cerbot: - build: - context: ./container/cerbot - command: echo "Skipping..." - environment: - - EMAIL=${EMAIL} - - DOMAIN=${DOMAIN} - volumes: - - cerbot-web:/vol/www - - cerbot-certs:/etc/letsencrypt - depends_on: - - web-server - networks: - - nuxt-network - -volumes: - web-root: - postgis-data: - cerbot-web: - proxy-dhparams: - cerbot-certs: - -networks: - nuxt-network: - driver: bridge \ No newline at end of file