AtmoType is a font sharing website through ATProto.

[meta] initial commit

+57
.gitignore
··· 1 + ## A streamlined .gitignore for modern .NET projects 2 + ## including temporary files, build results, and 3 + ## files generated by popular .NET tools. If you are 4 + ## developing with Visual Studio, the VS .gitignore 5 + ## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore 6 + ## has more thorough IDE-specific entries. 7 + ## 8 + ## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore 9 + 10 + # Build results 11 + [Dd]ebug/ 12 + [Dd]ebugPublic/ 13 + [Rr]elease/ 14 + [Rr]eleases/ 15 + x64/ 16 + x86/ 17 + [Ww][Ii][Nn]32/ 18 + [Aa][Rr][Mm]/ 19 + [Aa][Rr][Mm]64/ 20 + bld/ 21 + [Bb]in/ 22 + [Oo]bj/ 23 + [Ll]og/ 24 + [Ll]ogs/ 25 + 26 + # .NET Core 27 + project.lock.json 28 + project.fragment.lock.json 29 + artifacts/ 30 + 31 + # ASP.NET Scaffolding 32 + ScaffoldingReadMe.txt 33 + 34 + # NuGet Packages 35 + *.nupkg 36 + # NuGet Symbol Packages 37 + *.snupkg 38 + 39 + # dotenv environment variables file 40 + .env 41 + 42 + # Others 43 + ~$* 44 + *~ 45 + CodeCoverage/ 46 + 47 + # MSBuild Binary and Structured Log 48 + *.binlog 49 + 50 + # MSTest test Results 51 + [Tt]est[Rr]esult*/ 52 + [Bb]uild[Ll]og.* 53 + 54 + # NUnit 55 + *.VisualState.xml 56 + TestResult.xml 57 + nunit-*.xml
+23
AtmoType.Frontend/.gitignore
··· 1 + node_modules 2 + 3 + # Output 4 + .output 5 + .vercel 6 + .netlify 7 + .wrangler 8 + /.svelte-kit 9 + /build 10 + 11 + # OS 12 + .DS_Store 13 + Thumbs.db 14 + 15 + # Env 16 + .env 17 + .env.* 18 + !.env.example 19 + !.env.test 20 + 21 + # Vite 22 + vite.config.js.timestamp-* 23 + vite.config.ts.timestamp-*
+1
AtmoType.Frontend/.npmrc
··· 1 + engine-strict=true
+9
AtmoType.Frontend/.prettierignore
··· 1 + # Package Managers 2 + package-lock.json 3 + pnpm-lock.yaml 4 + yarn.lock 5 + bun.lock 6 + bun.lockb 7 + 8 + # Miscellaneous 9 + /static/
+17
AtmoType.Frontend/.prettierrc
··· 1 + { 2 + "useTabs": true, 3 + "singleQuote": true, 4 + "trailingComma": "none", 5 + "printWidth": 100, 6 + "plugins": [ 7 + "prettier-plugin-svelte" 8 + ], 9 + "overrides": [ 10 + { 11 + "files": "*.svelte", 12 + "options": { 13 + "parser": "svelte" 14 + } 15 + } 16 + ] 17 + }
+38
AtmoType.Frontend/README.md
··· 1 + # sv 2 + 3 + Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). 4 + 5 + ## Creating a project 6 + 7 + If you're seeing this, you've probably already done this step. Congrats! 8 + 9 + ```sh 10 + # create a new project in the current directory 11 + npx sv create 12 + 13 + # create a new project in my-app 14 + npx sv create my-app 15 + ``` 16 + 17 + ## Developing 18 + 19 + Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 20 + 21 + ```sh 22 + npm run dev 23 + 24 + # or start the server and open the app in a new browser tab 25 + npm run dev -- --open 26 + ``` 27 + 28 + ## Building 29 + 30 + To create a production version of your app: 31 + 32 + ```sh 33 + npm run build 34 + ``` 35 + 36 + You can preview the production build with `npm run preview`. 37 + 38 + > To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
+1607
AtmoType.Frontend/package-lock.json
··· 1 + { 2 + "name": "atmotype.frontend", 3 + "version": "0.0.1", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "atmotype.frontend", 9 + "version": "0.0.1", 10 + "devDependencies": { 11 + "@sveltejs/adapter-auto": "^7.0.0", 12 + "@sveltejs/kit": "^2.49.1", 13 + "@sveltejs/vite-plugin-svelte": "^6.2.1", 14 + "prettier": "^3.7.4", 15 + "prettier-plugin-svelte": "^3.4.0", 16 + "svelte": "^5.45.6", 17 + "svelte-check": "^4.3.4", 18 + "typescript": "^5.9.3", 19 + "vite": "^7.2.6" 20 + } 21 + }, 22 + "node_modules/@esbuild/aix-ppc64": { 23 + "version": "0.27.2", 24 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz", 25 + "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==", 26 + "cpu": [ 27 + "ppc64" 28 + ], 29 + "dev": true, 30 + "license": "MIT", 31 + "optional": true, 32 + "os": [ 33 + "aix" 34 + ], 35 + "engines": { 36 + "node": ">=18" 37 + } 38 + }, 39 + "node_modules/@esbuild/android-arm": { 40 + "version": "0.27.2", 41 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz", 42 + "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==", 43 + "cpu": [ 44 + "arm" 45 + ], 46 + "dev": true, 47 + "license": "MIT", 48 + "optional": true, 49 + "os": [ 50 + "android" 51 + ], 52 + "engines": { 53 + "node": ">=18" 54 + } 55 + }, 56 + "node_modules/@esbuild/android-arm64": { 57 + "version": "0.27.2", 58 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz", 59 + "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==", 60 + "cpu": [ 61 + "arm64" 62 + ], 63 + "dev": true, 64 + "license": "MIT", 65 + "optional": true, 66 + "os": [ 67 + "android" 68 + ], 69 + "engines": { 70 + "node": ">=18" 71 + } 72 + }, 73 + "node_modules/@esbuild/android-x64": { 74 + "version": "0.27.2", 75 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz", 76 + "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==", 77 + "cpu": [ 78 + "x64" 79 + ], 80 + "dev": true, 81 + "license": "MIT", 82 + "optional": true, 83 + "os": [ 84 + "android" 85 + ], 86 + "engines": { 87 + "node": ">=18" 88 + } 89 + }, 90 + "node_modules/@esbuild/darwin-arm64": { 91 + "version": "0.27.2", 92 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz", 93 + "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==", 94 + "cpu": [ 95 + "arm64" 96 + ], 97 + "dev": true, 98 + "license": "MIT", 99 + "optional": true, 100 + "os": [ 101 + "darwin" 102 + ], 103 + "engines": { 104 + "node": ">=18" 105 + } 106 + }, 107 + "node_modules/@esbuild/darwin-x64": { 108 + "version": "0.27.2", 109 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz", 110 + "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==", 111 + "cpu": [ 112 + "x64" 113 + ], 114 + "dev": true, 115 + "license": "MIT", 116 + "optional": true, 117 + "os": [ 118 + "darwin" 119 + ], 120 + "engines": { 121 + "node": ">=18" 122 + } 123 + }, 124 + "node_modules/@esbuild/freebsd-arm64": { 125 + "version": "0.27.2", 126 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz", 127 + "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==", 128 + "cpu": [ 129 + "arm64" 130 + ], 131 + "dev": true, 132 + "license": "MIT", 133 + "optional": true, 134 + "os": [ 135 + "freebsd" 136 + ], 137 + "engines": { 138 + "node": ">=18" 139 + } 140 + }, 141 + "node_modules/@esbuild/freebsd-x64": { 142 + "version": "0.27.2", 143 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz", 144 + "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==", 145 + "cpu": [ 146 + "x64" 147 + ], 148 + "dev": true, 149 + "license": "MIT", 150 + "optional": true, 151 + "os": [ 152 + "freebsd" 153 + ], 154 + "engines": { 155 + "node": ">=18" 156 + } 157 + }, 158 + "node_modules/@esbuild/linux-arm": { 159 + "version": "0.27.2", 160 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz", 161 + "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==", 162 + "cpu": [ 163 + "arm" 164 + ], 165 + "dev": true, 166 + "license": "MIT", 167 + "optional": true, 168 + "os": [ 169 + "linux" 170 + ], 171 + "engines": { 172 + "node": ">=18" 173 + } 174 + }, 175 + "node_modules/@esbuild/linux-arm64": { 176 + "version": "0.27.2", 177 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz", 178 + "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==", 179 + "cpu": [ 180 + "arm64" 181 + ], 182 + "dev": true, 183 + "license": "MIT", 184 + "optional": true, 185 + "os": [ 186 + "linux" 187 + ], 188 + "engines": { 189 + "node": ">=18" 190 + } 191 + }, 192 + "node_modules/@esbuild/linux-ia32": { 193 + "version": "0.27.2", 194 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz", 195 + "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==", 196 + "cpu": [ 197 + "ia32" 198 + ], 199 + "dev": true, 200 + "license": "MIT", 201 + "optional": true, 202 + "os": [ 203 + "linux" 204 + ], 205 + "engines": { 206 + "node": ">=18" 207 + } 208 + }, 209 + "node_modules/@esbuild/linux-loong64": { 210 + "version": "0.27.2", 211 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz", 212 + "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==", 213 + "cpu": [ 214 + "loong64" 215 + ], 216 + "dev": true, 217 + "license": "MIT", 218 + "optional": true, 219 + "os": [ 220 + "linux" 221 + ], 222 + "engines": { 223 + "node": ">=18" 224 + } 225 + }, 226 + "node_modules/@esbuild/linux-mips64el": { 227 + "version": "0.27.2", 228 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz", 229 + "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==", 230 + "cpu": [ 231 + "mips64el" 232 + ], 233 + "dev": true, 234 + "license": "MIT", 235 + "optional": true, 236 + "os": [ 237 + "linux" 238 + ], 239 + "engines": { 240 + "node": ">=18" 241 + } 242 + }, 243 + "node_modules/@esbuild/linux-ppc64": { 244 + "version": "0.27.2", 245 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz", 246 + "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==", 247 + "cpu": [ 248 + "ppc64" 249 + ], 250 + "dev": true, 251 + "license": "MIT", 252 + "optional": true, 253 + "os": [ 254 + "linux" 255 + ], 256 + "engines": { 257 + "node": ">=18" 258 + } 259 + }, 260 + "node_modules/@esbuild/linux-riscv64": { 261 + "version": "0.27.2", 262 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz", 263 + "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==", 264 + "cpu": [ 265 + "riscv64" 266 + ], 267 + "dev": true, 268 + "license": "MIT", 269 + "optional": true, 270 + "os": [ 271 + "linux" 272 + ], 273 + "engines": { 274 + "node": ">=18" 275 + } 276 + }, 277 + "node_modules/@esbuild/linux-s390x": { 278 + "version": "0.27.2", 279 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz", 280 + "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==", 281 + "cpu": [ 282 + "s390x" 283 + ], 284 + "dev": true, 285 + "license": "MIT", 286 + "optional": true, 287 + "os": [ 288 + "linux" 289 + ], 290 + "engines": { 291 + "node": ">=18" 292 + } 293 + }, 294 + "node_modules/@esbuild/linux-x64": { 295 + "version": "0.27.2", 296 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz", 297 + "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==", 298 + "cpu": [ 299 + "x64" 300 + ], 301 + "dev": true, 302 + "license": "MIT", 303 + "optional": true, 304 + "os": [ 305 + "linux" 306 + ], 307 + "engines": { 308 + "node": ">=18" 309 + } 310 + }, 311 + "node_modules/@esbuild/netbsd-arm64": { 312 + "version": "0.27.2", 313 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz", 314 + "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==", 315 + "cpu": [ 316 + "arm64" 317 + ], 318 + "dev": true, 319 + "license": "MIT", 320 + "optional": true, 321 + "os": [ 322 + "netbsd" 323 + ], 324 + "engines": { 325 + "node": ">=18" 326 + } 327 + }, 328 + "node_modules/@esbuild/netbsd-x64": { 329 + "version": "0.27.2", 330 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz", 331 + "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==", 332 + "cpu": [ 333 + "x64" 334 + ], 335 + "dev": true, 336 + "license": "MIT", 337 + "optional": true, 338 + "os": [ 339 + "netbsd" 340 + ], 341 + "engines": { 342 + "node": ">=18" 343 + } 344 + }, 345 + "node_modules/@esbuild/openbsd-arm64": { 346 + "version": "0.27.2", 347 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz", 348 + "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==", 349 + "cpu": [ 350 + "arm64" 351 + ], 352 + "dev": true, 353 + "license": "MIT", 354 + "optional": true, 355 + "os": [ 356 + "openbsd" 357 + ], 358 + "engines": { 359 + "node": ">=18" 360 + } 361 + }, 362 + "node_modules/@esbuild/openbsd-x64": { 363 + "version": "0.27.2", 364 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz", 365 + "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==", 366 + "cpu": [ 367 + "x64" 368 + ], 369 + "dev": true, 370 + "license": "MIT", 371 + "optional": true, 372 + "os": [ 373 + "openbsd" 374 + ], 375 + "engines": { 376 + "node": ">=18" 377 + } 378 + }, 379 + "node_modules/@esbuild/openharmony-arm64": { 380 + "version": "0.27.2", 381 + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz", 382 + "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==", 383 + "cpu": [ 384 + "arm64" 385 + ], 386 + "dev": true, 387 + "license": "MIT", 388 + "optional": true, 389 + "os": [ 390 + "openharmony" 391 + ], 392 + "engines": { 393 + "node": ">=18" 394 + } 395 + }, 396 + "node_modules/@esbuild/sunos-x64": { 397 + "version": "0.27.2", 398 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz", 399 + "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==", 400 + "cpu": [ 401 + "x64" 402 + ], 403 + "dev": true, 404 + "license": "MIT", 405 + "optional": true, 406 + "os": [ 407 + "sunos" 408 + ], 409 + "engines": { 410 + "node": ">=18" 411 + } 412 + }, 413 + "node_modules/@esbuild/win32-arm64": { 414 + "version": "0.27.2", 415 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz", 416 + "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==", 417 + "cpu": [ 418 + "arm64" 419 + ], 420 + "dev": true, 421 + "license": "MIT", 422 + "optional": true, 423 + "os": [ 424 + "win32" 425 + ], 426 + "engines": { 427 + "node": ">=18" 428 + } 429 + }, 430 + "node_modules/@esbuild/win32-ia32": { 431 + "version": "0.27.2", 432 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz", 433 + "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==", 434 + "cpu": [ 435 + "ia32" 436 + ], 437 + "dev": true, 438 + "license": "MIT", 439 + "optional": true, 440 + "os": [ 441 + "win32" 442 + ], 443 + "engines": { 444 + "node": ">=18" 445 + } 446 + }, 447 + "node_modules/@esbuild/win32-x64": { 448 + "version": "0.27.2", 449 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz", 450 + "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==", 451 + "cpu": [ 452 + "x64" 453 + ], 454 + "dev": true, 455 + "license": "MIT", 456 + "optional": true, 457 + "os": [ 458 + "win32" 459 + ], 460 + "engines": { 461 + "node": ">=18" 462 + } 463 + }, 464 + "node_modules/@jridgewell/gen-mapping": { 465 + "version": "0.3.13", 466 + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 467 + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 468 + "dev": true, 469 + "license": "MIT", 470 + "dependencies": { 471 + "@jridgewell/sourcemap-codec": "^1.5.0", 472 + "@jridgewell/trace-mapping": "^0.3.24" 473 + } 474 + }, 475 + "node_modules/@jridgewell/remapping": { 476 + "version": "2.3.5", 477 + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", 478 + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", 479 + "dev": true, 480 + "license": "MIT", 481 + "dependencies": { 482 + "@jridgewell/gen-mapping": "^0.3.5", 483 + "@jridgewell/trace-mapping": "^0.3.24" 484 + } 485 + }, 486 + "node_modules/@jridgewell/resolve-uri": { 487 + "version": "3.1.2", 488 + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 489 + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 490 + "dev": true, 491 + "license": "MIT", 492 + "engines": { 493 + "node": ">=6.0.0" 494 + } 495 + }, 496 + "node_modules/@jridgewell/sourcemap-codec": { 497 + "version": "1.5.5", 498 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 499 + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 500 + "dev": true, 501 + "license": "MIT" 502 + }, 503 + "node_modules/@jridgewell/trace-mapping": { 504 + "version": "0.3.31", 505 + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", 506 + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", 507 + "dev": true, 508 + "license": "MIT", 509 + "dependencies": { 510 + "@jridgewell/resolve-uri": "^3.1.0", 511 + "@jridgewell/sourcemap-codec": "^1.4.14" 512 + } 513 + }, 514 + "node_modules/@polka/url": { 515 + "version": "1.0.0-next.29", 516 + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", 517 + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", 518 + "dev": true, 519 + "license": "MIT" 520 + }, 521 + "node_modules/@rollup/rollup-android-arm-eabi": { 522 + "version": "4.54.0", 523 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.54.0.tgz", 524 + "integrity": "sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==", 525 + "cpu": [ 526 + "arm" 527 + ], 528 + "dev": true, 529 + "license": "MIT", 530 + "optional": true, 531 + "os": [ 532 + "android" 533 + ] 534 + }, 535 + "node_modules/@rollup/rollup-android-arm64": { 536 + "version": "4.54.0", 537 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.54.0.tgz", 538 + "integrity": "sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==", 539 + "cpu": [ 540 + "arm64" 541 + ], 542 + "dev": true, 543 + "license": "MIT", 544 + "optional": true, 545 + "os": [ 546 + "android" 547 + ] 548 + }, 549 + "node_modules/@rollup/rollup-darwin-arm64": { 550 + "version": "4.54.0", 551 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.54.0.tgz", 552 + "integrity": "sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==", 553 + "cpu": [ 554 + "arm64" 555 + ], 556 + "dev": true, 557 + "license": "MIT", 558 + "optional": true, 559 + "os": [ 560 + "darwin" 561 + ] 562 + }, 563 + "node_modules/@rollup/rollup-darwin-x64": { 564 + "version": "4.54.0", 565 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.54.0.tgz", 566 + "integrity": "sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==", 567 + "cpu": [ 568 + "x64" 569 + ], 570 + "dev": true, 571 + "license": "MIT", 572 + "optional": true, 573 + "os": [ 574 + "darwin" 575 + ] 576 + }, 577 + "node_modules/@rollup/rollup-freebsd-arm64": { 578 + "version": "4.54.0", 579 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.54.0.tgz", 580 + "integrity": "sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==", 581 + "cpu": [ 582 + "arm64" 583 + ], 584 + "dev": true, 585 + "license": "MIT", 586 + "optional": true, 587 + "os": [ 588 + "freebsd" 589 + ] 590 + }, 591 + "node_modules/@rollup/rollup-freebsd-x64": { 592 + "version": "4.54.0", 593 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.54.0.tgz", 594 + "integrity": "sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==", 595 + "cpu": [ 596 + "x64" 597 + ], 598 + "dev": true, 599 + "license": "MIT", 600 + "optional": true, 601 + "os": [ 602 + "freebsd" 603 + ] 604 + }, 605 + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 606 + "version": "4.54.0", 607 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.54.0.tgz", 608 + "integrity": "sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==", 609 + "cpu": [ 610 + "arm" 611 + ], 612 + "dev": true, 613 + "license": "MIT", 614 + "optional": true, 615 + "os": [ 616 + "linux" 617 + ] 618 + }, 619 + "node_modules/@rollup/rollup-linux-arm-musleabihf": { 620 + "version": "4.54.0", 621 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.54.0.tgz", 622 + "integrity": "sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==", 623 + "cpu": [ 624 + "arm" 625 + ], 626 + "dev": true, 627 + "license": "MIT", 628 + "optional": true, 629 + "os": [ 630 + "linux" 631 + ] 632 + }, 633 + "node_modules/@rollup/rollup-linux-arm64-gnu": { 634 + "version": "4.54.0", 635 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.54.0.tgz", 636 + "integrity": "sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==", 637 + "cpu": [ 638 + "arm64" 639 + ], 640 + "dev": true, 641 + "license": "MIT", 642 + "optional": true, 643 + "os": [ 644 + "linux" 645 + ] 646 + }, 647 + "node_modules/@rollup/rollup-linux-arm64-musl": { 648 + "version": "4.54.0", 649 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.54.0.tgz", 650 + "integrity": "sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==", 651 + "cpu": [ 652 + "arm64" 653 + ], 654 + "dev": true, 655 + "license": "MIT", 656 + "optional": true, 657 + "os": [ 658 + "linux" 659 + ] 660 + }, 661 + "node_modules/@rollup/rollup-linux-loong64-gnu": { 662 + "version": "4.54.0", 663 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.54.0.tgz", 664 + "integrity": "sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==", 665 + "cpu": [ 666 + "loong64" 667 + ], 668 + "dev": true, 669 + "license": "MIT", 670 + "optional": true, 671 + "os": [ 672 + "linux" 673 + ] 674 + }, 675 + "node_modules/@rollup/rollup-linux-ppc64-gnu": { 676 + "version": "4.54.0", 677 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.54.0.tgz", 678 + "integrity": "sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==", 679 + "cpu": [ 680 + "ppc64" 681 + ], 682 + "dev": true, 683 + "license": "MIT", 684 + "optional": true, 685 + "os": [ 686 + "linux" 687 + ] 688 + }, 689 + "node_modules/@rollup/rollup-linux-riscv64-gnu": { 690 + "version": "4.54.0", 691 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.54.0.tgz", 692 + "integrity": "sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==", 693 + "cpu": [ 694 + "riscv64" 695 + ], 696 + "dev": true, 697 + "license": "MIT", 698 + "optional": true, 699 + "os": [ 700 + "linux" 701 + ] 702 + }, 703 + "node_modules/@rollup/rollup-linux-riscv64-musl": { 704 + "version": "4.54.0", 705 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.54.0.tgz", 706 + "integrity": "sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==", 707 + "cpu": [ 708 + "riscv64" 709 + ], 710 + "dev": true, 711 + "license": "MIT", 712 + "optional": true, 713 + "os": [ 714 + "linux" 715 + ] 716 + }, 717 + "node_modules/@rollup/rollup-linux-s390x-gnu": { 718 + "version": "4.54.0", 719 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.54.0.tgz", 720 + "integrity": "sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==", 721 + "cpu": [ 722 + "s390x" 723 + ], 724 + "dev": true, 725 + "license": "MIT", 726 + "optional": true, 727 + "os": [ 728 + "linux" 729 + ] 730 + }, 731 + "node_modules/@rollup/rollup-linux-x64-gnu": { 732 + "version": "4.54.0", 733 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.54.0.tgz", 734 + "integrity": "sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==", 735 + "cpu": [ 736 + "x64" 737 + ], 738 + "dev": true, 739 + "license": "MIT", 740 + "optional": true, 741 + "os": [ 742 + "linux" 743 + ] 744 + }, 745 + "node_modules/@rollup/rollup-linux-x64-musl": { 746 + "version": "4.54.0", 747 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.54.0.tgz", 748 + "integrity": "sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==", 749 + "cpu": [ 750 + "x64" 751 + ], 752 + "dev": true, 753 + "license": "MIT", 754 + "optional": true, 755 + "os": [ 756 + "linux" 757 + ] 758 + }, 759 + "node_modules/@rollup/rollup-openharmony-arm64": { 760 + "version": "4.54.0", 761 + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.54.0.tgz", 762 + "integrity": "sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==", 763 + "cpu": [ 764 + "arm64" 765 + ], 766 + "dev": true, 767 + "license": "MIT", 768 + "optional": true, 769 + "os": [ 770 + "openharmony" 771 + ] 772 + }, 773 + "node_modules/@rollup/rollup-win32-arm64-msvc": { 774 + "version": "4.54.0", 775 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.54.0.tgz", 776 + "integrity": "sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==", 777 + "cpu": [ 778 + "arm64" 779 + ], 780 + "dev": true, 781 + "license": "MIT", 782 + "optional": true, 783 + "os": [ 784 + "win32" 785 + ] 786 + }, 787 + "node_modules/@rollup/rollup-win32-ia32-msvc": { 788 + "version": "4.54.0", 789 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.54.0.tgz", 790 + "integrity": "sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==", 791 + "cpu": [ 792 + "ia32" 793 + ], 794 + "dev": true, 795 + "license": "MIT", 796 + "optional": true, 797 + "os": [ 798 + "win32" 799 + ] 800 + }, 801 + "node_modules/@rollup/rollup-win32-x64-gnu": { 802 + "version": "4.54.0", 803 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.54.0.tgz", 804 + "integrity": "sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==", 805 + "cpu": [ 806 + "x64" 807 + ], 808 + "dev": true, 809 + "license": "MIT", 810 + "optional": true, 811 + "os": [ 812 + "win32" 813 + ] 814 + }, 815 + "node_modules/@rollup/rollup-win32-x64-msvc": { 816 + "version": "4.54.0", 817 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.54.0.tgz", 818 + "integrity": "sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==", 819 + "cpu": [ 820 + "x64" 821 + ], 822 + "dev": true, 823 + "license": "MIT", 824 + "optional": true, 825 + "os": [ 826 + "win32" 827 + ] 828 + }, 829 + "node_modules/@standard-schema/spec": { 830 + "version": "1.1.0", 831 + "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz", 832 + "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==", 833 + "dev": true, 834 + "license": "MIT" 835 + }, 836 + "node_modules/@sveltejs/acorn-typescript": { 837 + "version": "1.0.8", 838 + "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.8.tgz", 839 + "integrity": "sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==", 840 + "dev": true, 841 + "license": "MIT", 842 + "peerDependencies": { 843 + "acorn": "^8.9.0" 844 + } 845 + }, 846 + "node_modules/@sveltejs/adapter-auto": { 847 + "version": "7.0.0", 848 + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-7.0.0.tgz", 849 + "integrity": "sha512-ImDWaErTOCkRS4Gt+5gZuymKFBobnhChXUZ9lhUZLahUgvA4OOvRzi3sahzYgbxGj5nkA6OV0GAW378+dl/gyw==", 850 + "dev": true, 851 + "license": "MIT", 852 + "peerDependencies": { 853 + "@sveltejs/kit": "^2.0.0" 854 + } 855 + }, 856 + "node_modules/@sveltejs/kit": { 857 + "version": "2.49.2", 858 + "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.49.2.tgz", 859 + "integrity": "sha512-Vp3zX/qlwerQmHMP6x0Ry1oY7eKKRcOWGc2P59srOp4zcqyn+etJyQpELgOi4+ZSUgteX8Y387NuwruLgGXLUQ==", 860 + "dev": true, 861 + "license": "MIT", 862 + "peer": true, 863 + "dependencies": { 864 + "@standard-schema/spec": "^1.0.0", 865 + "@sveltejs/acorn-typescript": "^1.0.5", 866 + "@types/cookie": "^0.6.0", 867 + "acorn": "^8.14.1", 868 + "cookie": "^0.6.0", 869 + "devalue": "^5.3.2", 870 + "esm-env": "^1.2.2", 871 + "kleur": "^4.1.5", 872 + "magic-string": "^0.30.5", 873 + "mrmime": "^2.0.0", 874 + "sade": "^1.8.1", 875 + "set-cookie-parser": "^2.6.0", 876 + "sirv": "^3.0.0" 877 + }, 878 + "bin": { 879 + "svelte-kit": "svelte-kit.js" 880 + }, 881 + "engines": { 882 + "node": ">=18.13" 883 + }, 884 + "peerDependencies": { 885 + "@opentelemetry/api": "^1.0.0", 886 + "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0", 887 + "svelte": "^4.0.0 || ^5.0.0-next.0", 888 + "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0" 889 + }, 890 + "peerDependenciesMeta": { 891 + "@opentelemetry/api": { 892 + "optional": true 893 + } 894 + } 895 + }, 896 + "node_modules/@sveltejs/vite-plugin-svelte": { 897 + "version": "6.2.1", 898 + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-6.2.1.tgz", 899 + "integrity": "sha512-YZs/OSKOQAQCnJvM/P+F1URotNnYNeU3P2s4oIpzm1uFaqUEqRxUB0g5ejMjEb5Gjb9/PiBI5Ktrq4rUUF8UVQ==", 900 + "dev": true, 901 + "license": "MIT", 902 + "peer": true, 903 + "dependencies": { 904 + "@sveltejs/vite-plugin-svelte-inspector": "^5.0.0", 905 + "debug": "^4.4.1", 906 + "deepmerge": "^4.3.1", 907 + "magic-string": "^0.30.17", 908 + "vitefu": "^1.1.1" 909 + }, 910 + "engines": { 911 + "node": "^20.19 || ^22.12 || >=24" 912 + }, 913 + "peerDependencies": { 914 + "svelte": "^5.0.0", 915 + "vite": "^6.3.0 || ^7.0.0" 916 + } 917 + }, 918 + "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 919 + "version": "5.0.1", 920 + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-5.0.1.tgz", 921 + "integrity": "sha512-ubWshlMk4bc8mkwWbg6vNvCeT7lGQojE3ijDh3QTR6Zr/R+GXxsGbyH4PExEPpiFmqPhYiVSVmHBjUcVc1JIrA==", 922 + "dev": true, 923 + "license": "MIT", 924 + "dependencies": { 925 + "debug": "^4.4.1" 926 + }, 927 + "engines": { 928 + "node": "^20.19 || ^22.12 || >=24" 929 + }, 930 + "peerDependencies": { 931 + "@sveltejs/vite-plugin-svelte": "^6.0.0-next.0", 932 + "svelte": "^5.0.0", 933 + "vite": "^6.3.0 || ^7.0.0" 934 + } 935 + }, 936 + "node_modules/@types/cookie": { 937 + "version": "0.6.0", 938 + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 939 + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", 940 + "dev": true, 941 + "license": "MIT" 942 + }, 943 + "node_modules/@types/estree": { 944 + "version": "1.0.8", 945 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 946 + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 947 + "dev": true, 948 + "license": "MIT" 949 + }, 950 + "node_modules/acorn": { 951 + "version": "8.15.0", 952 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 953 + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 954 + "dev": true, 955 + "license": "MIT", 956 + "peer": true, 957 + "bin": { 958 + "acorn": "bin/acorn" 959 + }, 960 + "engines": { 961 + "node": ">=0.4.0" 962 + } 963 + }, 964 + "node_modules/aria-query": { 965 + "version": "5.3.2", 966 + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 967 + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 968 + "dev": true, 969 + "license": "Apache-2.0", 970 + "engines": { 971 + "node": ">= 0.4" 972 + } 973 + }, 974 + "node_modules/axobject-query": { 975 + "version": "4.1.0", 976 + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 977 + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 978 + "dev": true, 979 + "license": "Apache-2.0", 980 + "engines": { 981 + "node": ">= 0.4" 982 + } 983 + }, 984 + "node_modules/chokidar": { 985 + "version": "4.0.3", 986 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", 987 + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", 988 + "dev": true, 989 + "license": "MIT", 990 + "dependencies": { 991 + "readdirp": "^4.0.1" 992 + }, 993 + "engines": { 994 + "node": ">= 14.16.0" 995 + }, 996 + "funding": { 997 + "url": "https://paulmillr.com/funding/" 998 + } 999 + }, 1000 + "node_modules/clsx": { 1001 + "version": "2.1.1", 1002 + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 1003 + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 1004 + "dev": true, 1005 + "license": "MIT", 1006 + "engines": { 1007 + "node": ">=6" 1008 + } 1009 + }, 1010 + "node_modules/cookie": { 1011 + "version": "0.6.0", 1012 + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 1013 + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 1014 + "dev": true, 1015 + "license": "MIT", 1016 + "engines": { 1017 + "node": ">= 0.6" 1018 + } 1019 + }, 1020 + "node_modules/debug": { 1021 + "version": "4.4.3", 1022 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", 1023 + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", 1024 + "dev": true, 1025 + "license": "MIT", 1026 + "dependencies": { 1027 + "ms": "^2.1.3" 1028 + }, 1029 + "engines": { 1030 + "node": ">=6.0" 1031 + }, 1032 + "peerDependenciesMeta": { 1033 + "supports-color": { 1034 + "optional": true 1035 + } 1036 + } 1037 + }, 1038 + "node_modules/deepmerge": { 1039 + "version": "4.3.1", 1040 + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1041 + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1042 + "dev": true, 1043 + "license": "MIT", 1044 + "engines": { 1045 + "node": ">=0.10.0" 1046 + } 1047 + }, 1048 + "node_modules/devalue": { 1049 + "version": "5.6.1", 1050 + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.6.1.tgz", 1051 + "integrity": "sha512-jDwizj+IlEZBunHcOuuFVBnIMPAEHvTsJj0BcIp94xYguLRVBcXO853px/MyIJvbVzWdsGvrRweIUWJw8hBP7A==", 1052 + "dev": true, 1053 + "license": "MIT" 1054 + }, 1055 + "node_modules/esbuild": { 1056 + "version": "0.27.2", 1057 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz", 1058 + "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==", 1059 + "dev": true, 1060 + "hasInstallScript": true, 1061 + "license": "MIT", 1062 + "bin": { 1063 + "esbuild": "bin/esbuild" 1064 + }, 1065 + "engines": { 1066 + "node": ">=18" 1067 + }, 1068 + "optionalDependencies": { 1069 + "@esbuild/aix-ppc64": "0.27.2", 1070 + "@esbuild/android-arm": "0.27.2", 1071 + "@esbuild/android-arm64": "0.27.2", 1072 + "@esbuild/android-x64": "0.27.2", 1073 + "@esbuild/darwin-arm64": "0.27.2", 1074 + "@esbuild/darwin-x64": "0.27.2", 1075 + "@esbuild/freebsd-arm64": "0.27.2", 1076 + "@esbuild/freebsd-x64": "0.27.2", 1077 + "@esbuild/linux-arm": "0.27.2", 1078 + "@esbuild/linux-arm64": "0.27.2", 1079 + "@esbuild/linux-ia32": "0.27.2", 1080 + "@esbuild/linux-loong64": "0.27.2", 1081 + "@esbuild/linux-mips64el": "0.27.2", 1082 + "@esbuild/linux-ppc64": "0.27.2", 1083 + "@esbuild/linux-riscv64": "0.27.2", 1084 + "@esbuild/linux-s390x": "0.27.2", 1085 + "@esbuild/linux-x64": "0.27.2", 1086 + "@esbuild/netbsd-arm64": "0.27.2", 1087 + "@esbuild/netbsd-x64": "0.27.2", 1088 + "@esbuild/openbsd-arm64": "0.27.2", 1089 + "@esbuild/openbsd-x64": "0.27.2", 1090 + "@esbuild/openharmony-arm64": "0.27.2", 1091 + "@esbuild/sunos-x64": "0.27.2", 1092 + "@esbuild/win32-arm64": "0.27.2", 1093 + "@esbuild/win32-ia32": "0.27.2", 1094 + "@esbuild/win32-x64": "0.27.2" 1095 + } 1096 + }, 1097 + "node_modules/esm-env": { 1098 + "version": "1.2.2", 1099 + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz", 1100 + "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==", 1101 + "dev": true, 1102 + "license": "MIT" 1103 + }, 1104 + "node_modules/esrap": { 1105 + "version": "2.2.1", 1106 + "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.2.1.tgz", 1107 + "integrity": "sha512-GiYWG34AN/4CUyaWAgunGt0Rxvr1PTMlGC0vvEov/uOQYWne2bpN03Um+k8jT+q3op33mKouP2zeJ6OlM+qeUg==", 1108 + "dev": true, 1109 + "license": "MIT", 1110 + "dependencies": { 1111 + "@jridgewell/sourcemap-codec": "^1.4.15" 1112 + } 1113 + }, 1114 + "node_modules/fdir": { 1115 + "version": "6.5.0", 1116 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 1117 + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 1118 + "dev": true, 1119 + "license": "MIT", 1120 + "engines": { 1121 + "node": ">=12.0.0" 1122 + }, 1123 + "peerDependencies": { 1124 + "picomatch": "^3 || ^4" 1125 + }, 1126 + "peerDependenciesMeta": { 1127 + "picomatch": { 1128 + "optional": true 1129 + } 1130 + } 1131 + }, 1132 + "node_modules/fsevents": { 1133 + "version": "2.3.3", 1134 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1135 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1136 + "dev": true, 1137 + "hasInstallScript": true, 1138 + "license": "MIT", 1139 + "optional": true, 1140 + "os": [ 1141 + "darwin" 1142 + ], 1143 + "engines": { 1144 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1145 + } 1146 + }, 1147 + "node_modules/is-reference": { 1148 + "version": "3.0.3", 1149 + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", 1150 + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", 1151 + "dev": true, 1152 + "license": "MIT", 1153 + "dependencies": { 1154 + "@types/estree": "^1.0.6" 1155 + } 1156 + }, 1157 + "node_modules/kleur": { 1158 + "version": "4.1.5", 1159 + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 1160 + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 1161 + "dev": true, 1162 + "license": "MIT", 1163 + "engines": { 1164 + "node": ">=6" 1165 + } 1166 + }, 1167 + "node_modules/locate-character": { 1168 + "version": "3.0.0", 1169 + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 1170 + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 1171 + "dev": true, 1172 + "license": "MIT" 1173 + }, 1174 + "node_modules/magic-string": { 1175 + "version": "0.30.21", 1176 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", 1177 + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", 1178 + "dev": true, 1179 + "license": "MIT", 1180 + "dependencies": { 1181 + "@jridgewell/sourcemap-codec": "^1.5.5" 1182 + } 1183 + }, 1184 + "node_modules/mri": { 1185 + "version": "1.2.0", 1186 + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 1187 + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 1188 + "dev": true, 1189 + "license": "MIT", 1190 + "engines": { 1191 + "node": ">=4" 1192 + } 1193 + }, 1194 + "node_modules/mrmime": { 1195 + "version": "2.0.1", 1196 + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 1197 + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 1198 + "dev": true, 1199 + "license": "MIT", 1200 + "engines": { 1201 + "node": ">=10" 1202 + } 1203 + }, 1204 + "node_modules/ms": { 1205 + "version": "2.1.3", 1206 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1207 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1208 + "dev": true, 1209 + "license": "MIT" 1210 + }, 1211 + "node_modules/nanoid": { 1212 + "version": "3.3.11", 1213 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 1214 + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 1215 + "dev": true, 1216 + "funding": [ 1217 + { 1218 + "type": "github", 1219 + "url": "https://github.com/sponsors/ai" 1220 + } 1221 + ], 1222 + "license": "MIT", 1223 + "bin": { 1224 + "nanoid": "bin/nanoid.cjs" 1225 + }, 1226 + "engines": { 1227 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1228 + } 1229 + }, 1230 + "node_modules/picocolors": { 1231 + "version": "1.1.1", 1232 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1233 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1234 + "dev": true, 1235 + "license": "ISC" 1236 + }, 1237 + "node_modules/picomatch": { 1238 + "version": "4.0.3", 1239 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 1240 + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 1241 + "dev": true, 1242 + "license": "MIT", 1243 + "peer": true, 1244 + "engines": { 1245 + "node": ">=12" 1246 + }, 1247 + "funding": { 1248 + "url": "https://github.com/sponsors/jonschlinkert" 1249 + } 1250 + }, 1251 + "node_modules/postcss": { 1252 + "version": "8.5.6", 1253 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", 1254 + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", 1255 + "dev": true, 1256 + "funding": [ 1257 + { 1258 + "type": "opencollective", 1259 + "url": "https://opencollective.com/postcss/" 1260 + }, 1261 + { 1262 + "type": "tidelift", 1263 + "url": "https://tidelift.com/funding/github/npm/postcss" 1264 + }, 1265 + { 1266 + "type": "github", 1267 + "url": "https://github.com/sponsors/ai" 1268 + } 1269 + ], 1270 + "license": "MIT", 1271 + "dependencies": { 1272 + "nanoid": "^3.3.11", 1273 + "picocolors": "^1.1.1", 1274 + "source-map-js": "^1.2.1" 1275 + }, 1276 + "engines": { 1277 + "node": "^10 || ^12 || >=14" 1278 + } 1279 + }, 1280 + "node_modules/prettier": { 1281 + "version": "3.7.4", 1282 + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.4.tgz", 1283 + "integrity": "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==", 1284 + "dev": true, 1285 + "license": "MIT", 1286 + "peer": true, 1287 + "bin": { 1288 + "prettier": "bin/prettier.cjs" 1289 + }, 1290 + "engines": { 1291 + "node": ">=14" 1292 + }, 1293 + "funding": { 1294 + "url": "https://github.com/prettier/prettier?sponsor=1" 1295 + } 1296 + }, 1297 + "node_modules/prettier-plugin-svelte": { 1298 + "version": "3.4.1", 1299 + "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.4.1.tgz", 1300 + "integrity": "sha512-xL49LCloMoZRvSwa6IEdN2GV6cq2IqpYGstYtMT+5wmml1/dClEoI0MZR78MiVPpu6BdQFfN0/y73yO6+br5Pg==", 1301 + "dev": true, 1302 + "license": "MIT", 1303 + "peerDependencies": { 1304 + "prettier": "^3.0.0", 1305 + "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0" 1306 + } 1307 + }, 1308 + "node_modules/readdirp": { 1309 + "version": "4.1.2", 1310 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", 1311 + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", 1312 + "dev": true, 1313 + "license": "MIT", 1314 + "engines": { 1315 + "node": ">= 14.18.0" 1316 + }, 1317 + "funding": { 1318 + "type": "individual", 1319 + "url": "https://paulmillr.com/funding/" 1320 + } 1321 + }, 1322 + "node_modules/rollup": { 1323 + "version": "4.54.0", 1324 + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.54.0.tgz", 1325 + "integrity": "sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==", 1326 + "dev": true, 1327 + "license": "MIT", 1328 + "dependencies": { 1329 + "@types/estree": "1.0.8" 1330 + }, 1331 + "bin": { 1332 + "rollup": "dist/bin/rollup" 1333 + }, 1334 + "engines": { 1335 + "node": ">=18.0.0", 1336 + "npm": ">=8.0.0" 1337 + }, 1338 + "optionalDependencies": { 1339 + "@rollup/rollup-android-arm-eabi": "4.54.0", 1340 + "@rollup/rollup-android-arm64": "4.54.0", 1341 + "@rollup/rollup-darwin-arm64": "4.54.0", 1342 + "@rollup/rollup-darwin-x64": "4.54.0", 1343 + "@rollup/rollup-freebsd-arm64": "4.54.0", 1344 + "@rollup/rollup-freebsd-x64": "4.54.0", 1345 + "@rollup/rollup-linux-arm-gnueabihf": "4.54.0", 1346 + "@rollup/rollup-linux-arm-musleabihf": "4.54.0", 1347 + "@rollup/rollup-linux-arm64-gnu": "4.54.0", 1348 + "@rollup/rollup-linux-arm64-musl": "4.54.0", 1349 + "@rollup/rollup-linux-loong64-gnu": "4.54.0", 1350 + "@rollup/rollup-linux-ppc64-gnu": "4.54.0", 1351 + "@rollup/rollup-linux-riscv64-gnu": "4.54.0", 1352 + "@rollup/rollup-linux-riscv64-musl": "4.54.0", 1353 + "@rollup/rollup-linux-s390x-gnu": "4.54.0", 1354 + "@rollup/rollup-linux-x64-gnu": "4.54.0", 1355 + "@rollup/rollup-linux-x64-musl": "4.54.0", 1356 + "@rollup/rollup-openharmony-arm64": "4.54.0", 1357 + "@rollup/rollup-win32-arm64-msvc": "4.54.0", 1358 + "@rollup/rollup-win32-ia32-msvc": "4.54.0", 1359 + "@rollup/rollup-win32-x64-gnu": "4.54.0", 1360 + "@rollup/rollup-win32-x64-msvc": "4.54.0", 1361 + "fsevents": "~2.3.2" 1362 + } 1363 + }, 1364 + "node_modules/sade": { 1365 + "version": "1.8.1", 1366 + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 1367 + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 1368 + "dev": true, 1369 + "license": "MIT", 1370 + "dependencies": { 1371 + "mri": "^1.1.0" 1372 + }, 1373 + "engines": { 1374 + "node": ">=6" 1375 + } 1376 + }, 1377 + "node_modules/set-cookie-parser": { 1378 + "version": "2.7.2", 1379 + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz", 1380 + "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==", 1381 + "dev": true, 1382 + "license": "MIT" 1383 + }, 1384 + "node_modules/sirv": { 1385 + "version": "3.0.2", 1386 + "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz", 1387 + "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==", 1388 + "dev": true, 1389 + "license": "MIT", 1390 + "dependencies": { 1391 + "@polka/url": "^1.0.0-next.24", 1392 + "mrmime": "^2.0.0", 1393 + "totalist": "^3.0.0" 1394 + }, 1395 + "engines": { 1396 + "node": ">=18" 1397 + } 1398 + }, 1399 + "node_modules/source-map-js": { 1400 + "version": "1.2.1", 1401 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 1402 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 1403 + "dev": true, 1404 + "license": "BSD-3-Clause", 1405 + "engines": { 1406 + "node": ">=0.10.0" 1407 + } 1408 + }, 1409 + "node_modules/svelte": { 1410 + "version": "5.46.1", 1411 + "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.46.1.tgz", 1412 + "integrity": "sha512-ynjfCHD3nP2el70kN5Pmg37sSi0EjOm9FgHYQdC4giWG/hzO3AatzXXJJgP305uIhGQxSufJLuYWtkY8uK/8RA==", 1413 + "dev": true, 1414 + "license": "MIT", 1415 + "peer": true, 1416 + "dependencies": { 1417 + "@jridgewell/remapping": "^2.3.4", 1418 + "@jridgewell/sourcemap-codec": "^1.5.0", 1419 + "@sveltejs/acorn-typescript": "^1.0.5", 1420 + "@types/estree": "^1.0.5", 1421 + "acorn": "^8.12.1", 1422 + "aria-query": "^5.3.1", 1423 + "axobject-query": "^4.1.0", 1424 + "clsx": "^2.1.1", 1425 + "devalue": "^5.5.0", 1426 + "esm-env": "^1.2.1", 1427 + "esrap": "^2.2.1", 1428 + "is-reference": "^3.0.3", 1429 + "locate-character": "^3.0.0", 1430 + "magic-string": "^0.30.11", 1431 + "zimmerframe": "^1.1.2" 1432 + }, 1433 + "engines": { 1434 + "node": ">=18" 1435 + } 1436 + }, 1437 + "node_modules/svelte-check": { 1438 + "version": "4.3.5", 1439 + "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-4.3.5.tgz", 1440 + "integrity": "sha512-e4VWZETyXaKGhpkxOXP+B/d0Fp/zKViZoJmneZWe/05Y2aqSKj3YN2nLfYPJBQ87WEiY4BQCQ9hWGu9mPT1a1Q==", 1441 + "dev": true, 1442 + "license": "MIT", 1443 + "dependencies": { 1444 + "@jridgewell/trace-mapping": "^0.3.25", 1445 + "chokidar": "^4.0.1", 1446 + "fdir": "^6.2.0", 1447 + "picocolors": "^1.0.0", 1448 + "sade": "^1.7.4" 1449 + }, 1450 + "bin": { 1451 + "svelte-check": "bin/svelte-check" 1452 + }, 1453 + "engines": { 1454 + "node": ">= 18.0.0" 1455 + }, 1456 + "peerDependencies": { 1457 + "svelte": "^4.0.0 || ^5.0.0-next.0", 1458 + "typescript": ">=5.0.0" 1459 + } 1460 + }, 1461 + "node_modules/tinyglobby": { 1462 + "version": "0.2.15", 1463 + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", 1464 + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", 1465 + "dev": true, 1466 + "license": "MIT", 1467 + "dependencies": { 1468 + "fdir": "^6.5.0", 1469 + "picomatch": "^4.0.3" 1470 + }, 1471 + "engines": { 1472 + "node": ">=12.0.0" 1473 + }, 1474 + "funding": { 1475 + "url": "https://github.com/sponsors/SuperchupuDev" 1476 + } 1477 + }, 1478 + "node_modules/totalist": { 1479 + "version": "3.0.1", 1480 + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 1481 + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 1482 + "dev": true, 1483 + "license": "MIT", 1484 + "engines": { 1485 + "node": ">=6" 1486 + } 1487 + }, 1488 + "node_modules/typescript": { 1489 + "version": "5.9.3", 1490 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", 1491 + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", 1492 + "dev": true, 1493 + "license": "Apache-2.0", 1494 + "peer": true, 1495 + "bin": { 1496 + "tsc": "bin/tsc", 1497 + "tsserver": "bin/tsserver" 1498 + }, 1499 + "engines": { 1500 + "node": ">=14.17" 1501 + } 1502 + }, 1503 + "node_modules/vite": { 1504 + "version": "7.3.0", 1505 + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.0.tgz", 1506 + "integrity": "sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==", 1507 + "dev": true, 1508 + "license": "MIT", 1509 + "peer": true, 1510 + "dependencies": { 1511 + "esbuild": "^0.27.0", 1512 + "fdir": "^6.5.0", 1513 + "picomatch": "^4.0.3", 1514 + "postcss": "^8.5.6", 1515 + "rollup": "^4.43.0", 1516 + "tinyglobby": "^0.2.15" 1517 + }, 1518 + "bin": { 1519 + "vite": "bin/vite.js" 1520 + }, 1521 + "engines": { 1522 + "node": "^20.19.0 || >=22.12.0" 1523 + }, 1524 + "funding": { 1525 + "url": "https://github.com/vitejs/vite?sponsor=1" 1526 + }, 1527 + "optionalDependencies": { 1528 + "fsevents": "~2.3.3" 1529 + }, 1530 + "peerDependencies": { 1531 + "@types/node": "^20.19.0 || >=22.12.0", 1532 + "jiti": ">=1.21.0", 1533 + "less": "^4.0.0", 1534 + "lightningcss": "^1.21.0", 1535 + "sass": "^1.70.0", 1536 + "sass-embedded": "^1.70.0", 1537 + "stylus": ">=0.54.8", 1538 + "sugarss": "^5.0.0", 1539 + "terser": "^5.16.0", 1540 + "tsx": "^4.8.1", 1541 + "yaml": "^2.4.2" 1542 + }, 1543 + "peerDependenciesMeta": { 1544 + "@types/node": { 1545 + "optional": true 1546 + }, 1547 + "jiti": { 1548 + "optional": true 1549 + }, 1550 + "less": { 1551 + "optional": true 1552 + }, 1553 + "lightningcss": { 1554 + "optional": true 1555 + }, 1556 + "sass": { 1557 + "optional": true 1558 + }, 1559 + "sass-embedded": { 1560 + "optional": true 1561 + }, 1562 + "stylus": { 1563 + "optional": true 1564 + }, 1565 + "sugarss": { 1566 + "optional": true 1567 + }, 1568 + "terser": { 1569 + "optional": true 1570 + }, 1571 + "tsx": { 1572 + "optional": true 1573 + }, 1574 + "yaml": { 1575 + "optional": true 1576 + } 1577 + } 1578 + }, 1579 + "node_modules/vitefu": { 1580 + "version": "1.1.1", 1581 + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz", 1582 + "integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==", 1583 + "dev": true, 1584 + "license": "MIT", 1585 + "workspaces": [ 1586 + "tests/deps/*", 1587 + "tests/projects/*", 1588 + "tests/projects/workspace/packages/*" 1589 + ], 1590 + "peerDependencies": { 1591 + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" 1592 + }, 1593 + "peerDependenciesMeta": { 1594 + "vite": { 1595 + "optional": true 1596 + } 1597 + } 1598 + }, 1599 + "node_modules/zimmerframe": { 1600 + "version": "1.1.4", 1601 + "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz", 1602 + "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==", 1603 + "dev": true, 1604 + "license": "MIT" 1605 + } 1606 + } 1607 + }
+27
AtmoType.Frontend/package.json
··· 1 + { 2 + "name": "atmotype.frontend", 3 + "private": true, 4 + "version": "0.0.1", 5 + "type": "module", 6 + "scripts": { 7 + "dev": "vite dev", 8 + "build": "vite build", 9 + "preview": "vite preview", 10 + "prepare": "svelte-kit sync || echo ''", 11 + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 12 + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 13 + "format": "prettier --write .", 14 + "lint": "prettier --check ." 15 + }, 16 + "devDependencies": { 17 + "@sveltejs/adapter-auto": "^7.0.0", 18 + "@sveltejs/kit": "^2.49.1", 19 + "@sveltejs/vite-plugin-svelte": "^6.2.1", 20 + "prettier": "^3.7.4", 21 + "prettier-plugin-svelte": "^3.4.0", 22 + "svelte": "^5.45.6", 23 + "svelte-check": "^4.3.4", 24 + "typescript": "^5.9.3", 25 + "vite": "^7.2.6" 26 + } 27 + }
+13
AtmoType.Frontend/src/app.d.ts
··· 1 + // See https://svelte.dev/docs/kit/types#app.d.ts 2 + // for information about these interfaces 3 + declare global { 4 + namespace App { 5 + // interface Error {} 6 + // interface Locals {} 7 + // interface PageData {} 8 + // interface PageState {} 9 + // interface Platform {} 10 + } 11 + } 12 + 13 + export {};
+11
AtmoType.Frontend/src/app.html
··· 1 + <!doctype html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="utf-8" /> 5 + <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 + %sveltekit.head% 7 + </head> 8 + <body data-sveltekit-preload-data="hover"> 9 + <div style="display: contents">%sveltekit.body%</div> 10 + </body> 11 + </html>
+1
AtmoType.Frontend/src/lib/assets/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" width="107" height="128" viewBox="0 0 107 128"><title>svelte-logo</title><path d="M94.157 22.819c-10.4-14.885-30.94-19.297-45.792-9.835L22.282 29.608A29.92 29.92 0 0 0 8.764 49.65a31.5 31.5 0 0 0 3.108 20.231 30 30 0 0 0-4.477 11.183 31.9 31.9 0 0 0 5.448 24.116c10.402 14.887 30.942 19.297 45.791 9.835l26.083-16.624A29.92 29.92 0 0 0 98.235 78.35a31.53 31.53 0 0 0-3.105-20.232 30 30 0 0 0 4.474-11.182 31.88 31.88 0 0 0-5.447-24.116" style="fill:#ff3e00"/><path d="M45.817 106.582a20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.503 18 18 0 0 1 .624-2.435l.49-1.498 1.337.981a33.6 33.6 0 0 0 10.203 5.098l.97.294-.09.968a5.85 5.85 0 0 0 1.052 3.878 6.24 6.24 0 0 0 6.695 2.485 5.8 5.8 0 0 0 1.603-.704L69.27 76.28a5.43 5.43 0 0 0 2.45-3.631 5.8 5.8 0 0 0-.987-4.371 6.24 6.24 0 0 0-6.698-2.487 5.7 5.7 0 0 0-1.6.704l-9.953 6.345a19 19 0 0 1-5.296 2.326 20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.502 17.99 17.99 0 0 1 8.13-12.052l26.081-16.623a19 19 0 0 1 5.3-2.329 20.72 20.72 0 0 1 22.237 8.243 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-.624 2.435l-.49 1.498-1.337-.98a33.6 33.6 0 0 0-10.203-5.1l-.97-.294.09-.968a5.86 5.86 0 0 0-1.052-3.878 6.24 6.24 0 0 0-6.696-2.485 5.8 5.8 0 0 0-1.602.704L37.73 51.72a5.42 5.42 0 0 0-2.449 3.63 5.79 5.79 0 0 0 .986 4.372 6.24 6.24 0 0 0 6.698 2.486 5.8 5.8 0 0 0 1.602-.704l9.952-6.342a19 19 0 0 1 5.295-2.328 20.72 20.72 0 0 1 22.237 8.242 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-8.13 12.053l-26.081 16.622a19 19 0 0 1-5.3 2.328" style="fill:#fff"/></svg>
+1
AtmoType.Frontend/src/lib/index.ts
··· 1 + // place files you want to import through the `$lib` alias in this folder.
+11
AtmoType.Frontend/src/routes/+layout.svelte
··· 1 + <script lang="ts"> 2 + import favicon from '$lib/assets/favicon.svg'; 3 + 4 + let { children } = $props(); 5 + </script> 6 + 7 + <svelte:head> 8 + <link rel="icon" href={favicon} /> 9 + </svelte:head> 10 + 11 + {@render children()}
+2
AtmoType.Frontend/src/routes/+page.svelte
··· 1 + <h1>Welcome to SvelteKit</h1> 2 + <p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
+3
AtmoType.Frontend/static/robots.txt
··· 1 + # allow crawling everything by default 2 + User-agent: * 3 + Disallow:
+18
AtmoType.Frontend/svelte.config.js
··· 1 + import adapter from '@sveltejs/adapter-auto'; 2 + import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 + 4 + /** @type {import('@sveltejs/kit').Config} */ 5 + const config = { 6 + // Consult https://svelte.dev/docs/kit/integrations 7 + // for more information about preprocessors 8 + preprocess: vitePreprocess(), 9 + 10 + kit: { 11 + // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. 12 + // If your environment is not supported, or you settled on a specific environment, switch out the adapter. 13 + // See https://svelte.dev/docs/kit/adapters for more information about adapters. 14 + adapter: adapter() 15 + } 16 + }; 17 + 18 + export default config;
+20
AtmoType.Frontend/tsconfig.json
··· 1 + { 2 + "extends": "./.svelte-kit/tsconfig.json", 3 + "compilerOptions": { 4 + "rewriteRelativeImportExtensions": true, 5 + "allowJs": true, 6 + "checkJs": true, 7 + "esModuleInterop": true, 8 + "forceConsistentCasingInFileNames": true, 9 + "resolveJsonModule": true, 10 + "skipLibCheck": true, 11 + "sourceMap": true, 12 + "strict": true, 13 + "moduleResolution": "bundler" 14 + } 15 + // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias 16 + // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files 17 + // 18 + // To make changes to top-level options such as include and exclude, we recommend extending 19 + // the generated config; see https://svelte.dev/docs/kit/configuration#typescript 20 + }
+6
AtmoType.Frontend/vite.config.ts
··· 1 + import { sveltekit } from '@sveltejs/kit/vite'; 2 + import { defineConfig } from 'vite'; 3 + 4 + export default defineConfig({ 5 + plugins: [sveltekit()] 6 + });
+34
AtmoType.sln
··· 1 +  2 + Microsoft Visual Studio Solution File, Format Version 12.00 3 + # Visual Studio Version 17 4 + VisualStudioVersion = 17.0.31903.59 5 + MinimumVisualStudioVersion = 10.0.40219.1 6 + Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AtmoType", "AtmoType\AtmoType.csproj", "{86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}" 7 + EndProject 8 + Global 9 + GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 + Debug|Any CPU = Debug|Any CPU 11 + Debug|x64 = Debug|x64 12 + Debug|x86 = Debug|x86 13 + Release|Any CPU = Release|Any CPU 14 + Release|x64 = Release|x64 15 + Release|x86 = Release|x86 16 + EndGlobalSection 17 + GlobalSection(ProjectConfigurationPlatforms) = postSolution 18 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Debug|x64.ActiveCfg = Debug|Any CPU 21 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Debug|x64.Build.0 = Debug|Any CPU 22 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Debug|x86.ActiveCfg = Debug|Any CPU 23 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Debug|x86.Build.0 = Debug|Any CPU 24 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Release|Any CPU.ActiveCfg = Release|Any CPU 25 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Release|Any CPU.Build.0 = Release|Any CPU 26 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Release|x64.ActiveCfg = Release|Any CPU 27 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Release|x64.Build.0 = Release|Any CPU 28 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Release|x86.ActiveCfg = Release|Any CPU 29 + {86A1B4E7-7E47-492B-A8D5-C0C17E5B9AC3}.Release|x86.Build.0 = Release|Any CPU 30 + EndGlobalSection 31 + GlobalSection(SolutionProperties) = preSolution 32 + HideSolutionNode = FALSE 33 + EndGlobalSection 34 + EndGlobal
+9
AtmoType/AtmoType.csproj
··· 1 + <Project Sdk="Microsoft.NET.Sdk.Web"> 2 + 3 + <PropertyGroup> 4 + <TargetFramework>net10.0</TargetFramework> 5 + <Nullable>enable</Nullable> 6 + <ImplicitUsings>enable</ImplicitUsings> 7 + </PropertyGroup> 8 + 9 + </Project>
+6
AtmoType/Program.cs
··· 1 + var builder = WebApplication.CreateBuilder(args); 2 + var app = builder.Build(); 3 + 4 + app.MapGet("/", () => "Hello World!"); 5 + 6 + app.Run();
+23
AtmoType/Properties/launchSettings.json
··· 1 + { 2 + "$schema": "https://json.schemastore.org/launchsettings.json", 3 + "profiles": { 4 + "http": { 5 + "commandName": "Project", 6 + "dotnetRunMessages": true, 7 + "launchBrowser": true, 8 + "applicationUrl": "http://localhost:5044", 9 + "environmentVariables": { 10 + "ASPNETCORE_ENVIRONMENT": "Development" 11 + } 12 + }, 13 + "https": { 14 + "commandName": "Project", 15 + "dotnetRunMessages": true, 16 + "launchBrowser": true, 17 + "applicationUrl": "https://localhost:7145;http://localhost:5044", 18 + "environmentVariables": { 19 + "ASPNETCORE_ENVIRONMENT": "Development" 20 + } 21 + } 22 + } 23 + }
+8
AtmoType/appsettings.Development.json
··· 1 + { 2 + "Logging": { 3 + "LogLevel": { 4 + "Default": "Information", 5 + "Microsoft.AspNetCore": "Warning" 6 + } 7 + } 8 + }
+9
AtmoType/appsettings.json
··· 1 + { 2 + "Logging": { 3 + "LogLevel": { 4 + "Default": "Information", 5 + "Microsoft.AspNetCore": "Warning" 6 + } 7 + }, 8 + "AllowedHosts": "*" 9 + }
+662
LICENSE
··· 1 + GNU AFFERO GENERAL PUBLIC LICENSE 2 + Version 3, 19 November 2007 3 + 4 + Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> 5 + Everyone is permitted to copy and distribute verbatim copies 6 + of this license document, but changing it is not allowed. 7 + 8 + Preamble 9 + 10 + The GNU Affero General Public License is a free, copyleft license for 11 + software and other kinds of works, specifically designed to ensure 12 + cooperation with the community in the case of network server software. 13 + 14 + The licenses for most software and other practical works are designed 15 + to take away your freedom to share and change the works. By contrast, 16 + our General Public Licenses are intended to guarantee your freedom to 17 + share and change all versions of a program--to make sure it remains free 18 + software for all its users. 19 + 20 + When we speak of free software, we are referring to freedom, not 21 + price. Our General Public Licenses are designed to make sure that you 22 + have the freedom to distribute copies of free software (and charge for 23 + them if you wish), that you receive source code or can get it if you 24 + want it, that you can change the software or use pieces of it in new 25 + free programs, and that you know you can do these things. 26 + 27 + Developers that use our General Public Licenses protect your rights 28 + with two steps: (1) assert copyright on the software, and (2) offer 29 + you this License which gives you legal permission to copy, distribute 30 + and/or modify the software. 31 + 32 + A secondary benefit of defending all users' freedom is that 33 + improvements made in alternate versions of the program, if they 34 + receive widespread use, become available for other developers to 35 + incorporate. Many developers of free software are heartened and 36 + encouraged by the resulting cooperation. However, in the case of 37 + software used on network servers, this result may fail to come about. 38 + The GNU General Public License permits making a modified version and 39 + letting the public access it on a server without ever releasing its 40 + source code to the public. 41 + 42 + The GNU Affero General Public License is designed specifically to 43 + ensure that, in such cases, the modified source code becomes available 44 + to the community. It requires the operator of a network server to 45 + provide the source code of the modified version running there to the 46 + users of that server. Therefore, public use of a modified version, on 47 + a publicly accessible server, gives the public access to the source 48 + code of the modified version. 49 + 50 + An older license, called the Affero General Public License and 51 + published by Affero, was designed to accomplish similar goals. This is 52 + a different license, not a version of the Affero GPL, but Affero has 53 + released a new version of the Affero GPL which permits relicensing under 54 + this license. 55 + 56 + The precise terms and conditions for copying, distribution and 57 + modification follow. 58 + 59 + TERMS AND CONDITIONS 60 + 61 + 0. Definitions. 62 + 63 + "This License" refers to version 3 of the GNU Affero General Public License. 64 + 65 + "Copyright" also means copyright-like laws that apply to other kinds of 66 + works, such as semiconductor masks. 67 + 68 + "The Program" refers to any copyrightable work licensed under this 69 + License. Each licensee is addressed as "you". "Licensees" and 70 + "recipients" may be individuals or organizations. 71 + 72 + To "modify" a work means to copy from or adapt all or part of the work 73 + in a fashion requiring copyright permission, other than the making of an 74 + exact copy. The resulting work is called a "modified version" of the 75 + earlier work or a work "based on" the earlier work. 76 + 77 + A "covered work" means either the unmodified Program or a work based 78 + on the Program. 79 + 80 + To "propagate" a work means to do anything with it that, without 81 + permission, would make you directly or secondarily liable for 82 + infringement under applicable copyright law, except executing it on a 83 + computer or modifying a private copy. Propagation includes copying, 84 + distribution (with or without modification), making available to the 85 + public, and in some countries other activities as well. 86 + 87 + To "convey" a work means any kind of propagation that enables other 88 + parties to make or receive copies. Mere interaction with a user through 89 + a computer network, with no transfer of a copy, is not conveying. 90 + 91 + An interactive user interface displays "Appropriate Legal Notices" 92 + to the extent that it includes a convenient and prominently visible 93 + feature that (1) displays an appropriate copyright notice, and (2) 94 + tells the user that there is no warranty for the work (except to the 95 + extent that warranties are provided), that licensees may convey the 96 + work under this License, and how to view a copy of this License. If 97 + the interface presents a list of user commands or options, such as a 98 + menu, a prominent item in the list meets this criterion. 99 + 100 + 1. Source Code. 101 + 102 + The "source code" for a work means the preferred form of the work 103 + for making modifications to it. "Object code" means any non-source 104 + form of a work. 105 + 106 + A "Standard Interface" means an interface that either is an official 107 + standard defined by a recognized standards body, or, in the case of 108 + interfaces specified for a particular programming language, one that 109 + is widely used among developers working in that language. 110 + 111 + The "System Libraries" of an executable work include anything, other 112 + than the work as a whole, that (a) is included in the normal form of 113 + packaging a Major Component, but which is not part of that Major 114 + Component, and (b) serves only to enable use of the work with that 115 + Major Component, or to implement a Standard Interface for which an 116 + implementation is available to the public in source code form. A 117 + "Major Component", in this context, means a major essential component 118 + (kernel, window system, and so on) of the specific operating system 119 + (if any) on which the executable work runs, or a compiler used to 120 + produce the work, or an object code interpreter used to run it. 121 + 122 + The "Corresponding Source" for a work in object code form means all 123 + the source code needed to generate, install, and (for an executable 124 + work) run the object code and to modify the work, including scripts to 125 + control those activities. However, it does not include the work's 126 + System Libraries, or general-purpose tools or generally available free 127 + programs which are used unmodified in performing those activities but 128 + which are not part of the work. For example, Corresponding Source 129 + includes interface definition files associated with source files for 130 + the work, and the source code for shared libraries and dynamically 131 + linked subprograms that the work is specifically designed to require, 132 + such as by intimate data communication or control flow between those 133 + subprograms and other parts of the work. 134 + 135 + The Corresponding Source need not include anything that users 136 + can regenerate automatically from other parts of the Corresponding 137 + Source. 138 + 139 + The Corresponding Source for a work in source code form is that 140 + same work. 141 + 142 + 2. Basic Permissions. 143 + 144 + All rights granted under this License are granted for the term of 145 + copyright on the Program, and are irrevocable provided the stated 146 + conditions are met. This License explicitly affirms your unlimited 147 + permission to run the unmodified Program. The output from running a 148 + covered work is covered by this License only if the output, given its 149 + content, constitutes a covered work. This License acknowledges your 150 + rights of fair use or other equivalent, as provided by copyright law. 151 + 152 + You may make, run and propagate covered works that you do not 153 + convey, without conditions so long as your license otherwise remains 154 + in force. You may convey covered works to others for the sole purpose 155 + of having them make modifications exclusively for you, or provide you 156 + with facilities for running those works, provided that you comply with 157 + the terms of this License in conveying all material for which you do 158 + not control copyright. Those thus making or running the covered works 159 + for you must do so exclusively on your behalf, under your direction 160 + and control, on terms that prohibit them from making any copies of 161 + your copyrighted material outside their relationship with you. 162 + 163 + Conveying under any other circumstances is permitted solely under 164 + the conditions stated below. Sublicensing is not allowed; section 10 165 + makes it unnecessary. 166 + 167 + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 + 169 + No covered work shall be deemed part of an effective technological 170 + measure under any applicable law fulfilling obligations under article 171 + 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 + similar laws prohibiting or restricting circumvention of such 173 + measures. 174 + 175 + When you convey a covered work, you waive any legal power to forbid 176 + circumvention of technological measures to the extent such circumvention 177 + is effected by exercising rights under this License with respect to 178 + the covered work, and you disclaim any intention to limit operation or 179 + modification of the work as a means of enforcing, against the work's 180 + users, your or third parties' legal rights to forbid circumvention of 181 + technological measures. 182 + 183 + 4. Conveying Verbatim Copies. 184 + 185 + You may convey verbatim copies of the Program's source code as you 186 + receive it, in any medium, provided that you conspicuously and 187 + appropriately publish on each copy an appropriate copyright notice; 188 + keep intact all notices stating that this License and any 189 + non-permissive terms added in accord with section 7 apply to the code; 190 + keep intact all notices of the absence of any warranty; and give all 191 + recipients a copy of this License along with the Program. 192 + 193 + You may charge any price or no price for each copy that you convey, 194 + and you may offer support or warranty protection for a fee. 195 + 196 + 5. Conveying Modified Source Versions. 197 + 198 + You may convey a work based on the Program, or the modifications to 199 + produce it from the Program, in the form of source code under the 200 + terms of section 4, provided that you also meet all of these conditions: 201 + 202 + a) The work must carry prominent notices stating that you modified 203 + it, and giving a relevant date. 204 + 205 + b) The work must carry prominent notices stating that it is 206 + released under this License and any conditions added under section 207 + 7. This requirement modifies the requirement in section 4 to 208 + "keep intact all notices". 209 + 210 + c) You must license the entire work, as a whole, under this 211 + License to anyone who comes into possession of a copy. This 212 + License will therefore apply, along with any applicable section 7 213 + additional terms, to the whole of the work, and all its parts, 214 + regardless of how they are packaged. This License gives no 215 + permission to license the work in any other way, but it does not 216 + invalidate such permission if you have separately received it. 217 + 218 + d) If the work has interactive user interfaces, each must display 219 + Appropriate Legal Notices; however, if the Program has interactive 220 + interfaces that do not display Appropriate Legal Notices, your 221 + work need not make them do so. 222 + 223 + A compilation of a covered work with other separate and independent 224 + works, which are not by their nature extensions of the covered work, 225 + and which are not combined with it such as to form a larger program, 226 + in or on a volume of a storage or distribution medium, is called an 227 + "aggregate" if the compilation and its resulting copyright are not 228 + used to limit the access or legal rights of the compilation's users 229 + beyond what the individual works permit. Inclusion of a covered work 230 + in an aggregate does not cause this License to apply to the other 231 + parts of the aggregate. 232 + 233 + 6. Conveying Non-Source Forms. 234 + 235 + You may convey a covered work in object code form under the terms 236 + of sections 4 and 5, provided that you also convey the 237 + machine-readable Corresponding Source under the terms of this License, 238 + in one of these ways: 239 + 240 + a) Convey the object code in, or embodied in, a physical product 241 + (including a physical distribution medium), accompanied by the 242 + Corresponding Source fixed on a durable physical medium 243 + customarily used for software interchange. 244 + 245 + b) Convey the object code in, or embodied in, a physical product 246 + (including a physical distribution medium), accompanied by a 247 + written offer, valid for at least three years and valid for as 248 + long as you offer spare parts or customer support for that product 249 + model, to give anyone who possesses the object code either (1) a 250 + copy of the Corresponding Source for all the software in the 251 + product that is covered by this License, on a durable physical 252 + medium customarily used for software interchange, for a price no 253 + more than your reasonable cost of physically performing this 254 + conveying of source, or (2) access to copy the 255 + Corresponding Source from a network server at no charge. 256 + 257 + c) Convey individual copies of the object code with a copy of the 258 + written offer to provide the Corresponding Source. This 259 + alternative is allowed only occasionally and noncommercially, and 260 + only if you received the object code with such an offer, in accord 261 + with subsection 6b. 262 + 263 + d) Convey the object code by offering access from a designated 264 + place (gratis or for a charge), and offer equivalent access to the 265 + Corresponding Source in the same way through the same place at no 266 + further charge. You need not require recipients to copy the 267 + Corresponding Source along with the object code. If the place to 268 + copy the object code is a network server, the Corresponding Source 269 + may be on a different server (operated by you or a third party) 270 + that supports equivalent copying facilities, provided you maintain 271 + clear directions next to the object code saying where to find the 272 + Corresponding Source. Regardless of what server hosts the 273 + Corresponding Source, you remain obligated to ensure that it is 274 + available for as long as needed to satisfy these requirements. 275 + 276 + e) Convey the object code using peer-to-peer transmission, provided 277 + you inform other peers where the object code and Corresponding 278 + Source of the work are being offered to the general public at no 279 + charge under subsection 6d. 280 + 281 + A separable portion of the object code, whose source code is excluded 282 + from the Corresponding Source as a System Library, need not be 283 + included in conveying the object code work. 284 + 285 + A "User Product" is either (1) a "consumer product", which means any 286 + tangible personal property which is normally used for personal, family, 287 + or household purposes, or (2) anything designed or sold for incorporation 288 + into a dwelling. In determining whether a product is a consumer product, 289 + doubtful cases shall be resolved in favor of coverage. For a particular 290 + product received by a particular user, "normally used" refers to a 291 + typical or common use of that class of product, regardless of the status 292 + of the particular user or of the way in which the particular user 293 + actually uses, or expects or is expected to use, the product. A product 294 + is a consumer product regardless of whether the product has substantial 295 + commercial, industrial or non-consumer uses, unless such uses represent 296 + the only significant mode of use of the product. 297 + 298 + "Installation Information" for a User Product means any methods, 299 + procedures, authorization keys, or other information required to install 300 + and execute modified versions of a covered work in that User Product from 301 + a modified version of its Corresponding Source. The information must 302 + suffice to ensure that the continued functioning of the modified object 303 + code is in no case prevented or interfered with solely because 304 + modification has been made. 305 + 306 + If you convey an object code work under this section in, or with, or 307 + specifically for use in, a User Product, and the conveying occurs as 308 + part of a transaction in which the right of possession and use of the 309 + User Product is transferred to the recipient in perpetuity or for a 310 + fixed term (regardless of how the transaction is characterized), the 311 + Corresponding Source conveyed under this section must be accompanied 312 + by the Installation Information. But this requirement does not apply 313 + if neither you nor any third party retains the ability to install 314 + modified object code on the User Product (for example, the work has 315 + been installed in ROM). 316 + 317 + The requirement to provide Installation Information does not include a 318 + requirement to continue to provide support service, warranty, or updates 319 + for a work that has been modified or installed by the recipient, or for 320 + the User Product in which it has been modified or installed. Access to a 321 + network may be denied when the modification itself materially and 322 + adversely affects the operation of the network or violates the rules and 323 + protocols for communication across the network. 324 + 325 + Corresponding Source conveyed, and Installation Information provided, 326 + in accord with this section must be in a format that is publicly 327 + documented (and with an implementation available to the public in 328 + source code form), and must require no special password or key for 329 + unpacking, reading or copying. 330 + 331 + 7. Additional Terms. 332 + 333 + "Additional permissions" are terms that supplement the terms of this 334 + License by making exceptions from one or more of its conditions. 335 + Additional permissions that are applicable to the entire Program shall 336 + be treated as though they were included in this License, to the extent 337 + that they are valid under applicable law. If additional permissions 338 + apply only to part of the Program, that part may be used separately 339 + under those permissions, but the entire Program remains governed by 340 + this License without regard to the additional permissions. 341 + 342 + When you convey a copy of a covered work, you may at your option 343 + remove any additional permissions from that copy, or from any part of 344 + it. (Additional permissions may be written to require their own 345 + removal in certain cases when you modify the work.) You may place 346 + additional permissions on material, added by you to a covered work, 347 + for which you have or can give appropriate copyright permission. 348 + 349 + Notwithstanding any other provision of this License, for material you 350 + add to a covered work, you may (if authorized by the copyright holders of 351 + that material) supplement the terms of this License with terms: 352 + 353 + a) Disclaiming warranty or limiting liability differently from the 354 + terms of sections 15 and 16 of this License; or 355 + 356 + b) Requiring preservation of specified reasonable legal notices or 357 + author attributions in that material or in the Appropriate Legal 358 + Notices displayed by works containing it; or 359 + 360 + c) Prohibiting misrepresentation of the origin of that material, or 361 + requiring that modified versions of such material be marked in 362 + reasonable ways as different from the original version; or 363 + 364 + d) Limiting the use for publicity purposes of names of licensors or 365 + authors of the material; or 366 + 367 + e) Declining to grant rights under trademark law for use of some 368 + trade names, trademarks, or service marks; or 369 + 370 + f) Requiring indemnification of licensors and authors of that 371 + material by anyone who conveys the material (or modified versions of 372 + it) with contractual assumptions of liability to the recipient, for 373 + any liability that these contractual assumptions directly impose on 374 + those licensors and authors. 375 + 376 + All other non-permissive additional terms are considered "further 377 + restrictions" within the meaning of section 10. If the Program as you 378 + received it, or any part of it, contains a notice stating that it is 379 + governed by this License along with a term that is a further 380 + restriction, you may remove that term. If a license document contains 381 + a further restriction but permits relicensing or conveying under this 382 + License, you may add to a covered work material governed by the terms 383 + of that license document, provided that the further restriction does 384 + not survive such relicensing or conveying. 385 + 386 + If you add terms to a covered work in accord with this section, you 387 + must place, in the relevant source files, a statement of the 388 + additional terms that apply to those files, or a notice indicating 389 + where to find the applicable terms. 390 + 391 + Additional terms, permissive or non-permissive, may be stated in the 392 + form of a separately written license, or stated as exceptions; 393 + the above requirements apply either way. 394 + 395 + 8. Termination. 396 + 397 + You may not propagate or modify a covered work except as expressly 398 + provided under this License. Any attempt otherwise to propagate or 399 + modify it is void, and will automatically terminate your rights under 400 + this License (including any patent licenses granted under the third 401 + paragraph of section 11). 402 + 403 + However, if you cease all violation of this License, then your 404 + license from a particular copyright holder is reinstated (a) 405 + provisionally, unless and until the copyright holder explicitly and 406 + finally terminates your license, and (b) permanently, if the copyright 407 + holder fails to notify you of the violation by some reasonable means 408 + prior to 60 days after the cessation. 409 + 410 + Moreover, your license from a particular copyright holder is 411 + reinstated permanently if the copyright holder notifies you of the 412 + violation by some reasonable means, this is the first time you have 413 + received notice of violation of this License (for any work) from that 414 + copyright holder, and you cure the violation prior to 30 days after 415 + your receipt of the notice. 416 + 417 + Termination of your rights under this section does not terminate the 418 + licenses of parties who have received copies or rights from you under 419 + this License. If your rights have been terminated and not permanently 420 + reinstated, you do not qualify to receive new licenses for the same 421 + material under section 10. 422 + 423 + 9. Acceptance Not Required for Having Copies. 424 + 425 + You are not required to accept this License in order to receive or 426 + run a copy of the Program. Ancillary propagation of a covered work 427 + occurring solely as a consequence of using peer-to-peer transmission 428 + to receive a copy likewise does not require acceptance. However, 429 + nothing other than this License grants you permission to propagate or 430 + modify any covered work. These actions infringe copyright if you do 431 + not accept this License. Therefore, by modifying or propagating a 432 + covered work, you indicate your acceptance of this License to do so. 433 + 434 + 10. Automatic Licensing of Downstream Recipients. 435 + 436 + Each time you convey a covered work, the recipient automatically 437 + receives a license from the original licensors, to run, modify and 438 + propagate that work, subject to this License. You are not responsible 439 + for enforcing compliance by third parties with this License. 440 + 441 + An "entity transaction" is a transaction transferring control of an 442 + organization, or substantially all assets of one, or subdividing an 443 + organization, or merging organizations. If propagation of a covered 444 + work results from an entity transaction, each party to that 445 + transaction who receives a copy of the work also receives whatever 446 + licenses to the work the party's predecessor in interest had or could 447 + give under the previous paragraph, plus a right to possession of the 448 + Corresponding Source of the work from the predecessor in interest, if 449 + the predecessor has it or can get it with reasonable efforts. 450 + 451 + You may not impose any further restrictions on the exercise of the 452 + rights granted or affirmed under this License. For example, you may 453 + not impose a license fee, royalty, or other charge for exercise of 454 + rights granted under this License, and you may not initiate litigation 455 + (including a cross-claim or counterclaim in a lawsuit) alleging that 456 + any patent claim is infringed by making, using, selling, offering for 457 + sale, or importing the Program or any portion of it. 458 + 459 + 11. Patents. 460 + 461 + A "contributor" is a copyright holder who authorizes use under this 462 + License of the Program or a work on which the Program is based. The 463 + work thus licensed is called the contributor's "contributor version". 464 + 465 + A contributor's "essential patent claims" are all patent claims 466 + owned or controlled by the contributor, whether already acquired or 467 + hereafter acquired, that would be infringed by some manner, permitted 468 + by this License, of making, using, or selling its contributor version, 469 + but do not include claims that would be infringed only as a 470 + consequence of further modification of the contributor version. For 471 + purposes of this definition, "control" includes the right to grant 472 + patent sublicenses in a manner consistent with the requirements of 473 + this License. 474 + 475 + Each contributor grants you a non-exclusive, worldwide, royalty-free 476 + patent license under the contributor's essential patent claims, to 477 + make, use, sell, offer for sale, import and otherwise run, modify and 478 + propagate the contents of its contributor version. 479 + 480 + In the following three paragraphs, a "patent license" is any express 481 + agreement or commitment, however denominated, not to enforce a patent 482 + (such as an express permission to practice a patent or covenant not to 483 + sue for patent infringement). To "grant" such a patent license to a 484 + party means to make such an agreement or commitment not to enforce a 485 + patent against the party. 486 + 487 + If you convey a covered work, knowingly relying on a patent license, 488 + and the Corresponding Source of the work is not available for anyone 489 + to copy, free of charge and under the terms of this License, through a 490 + publicly available network server or other readily accessible means, 491 + then you must either (1) cause the Corresponding Source to be so 492 + available, or (2) arrange to deprive yourself of the benefit of the 493 + patent license for this particular work, or (3) arrange, in a manner 494 + consistent with the requirements of this License, to extend the patent 495 + license to downstream recipients. "Knowingly relying" means you have 496 + actual knowledge that, but for the patent license, your conveying the 497 + covered work in a country, or your recipient's use of the covered work 498 + in a country, would infringe one or more identifiable patents in that 499 + country that you have reason to believe are valid. 500 + 501 + If, pursuant to or in connection with a single transaction or 502 + arrangement, you convey, or propagate by procuring conveyance of, a 503 + covered work, and grant a patent license to some of the parties 504 + receiving the covered work authorizing them to use, propagate, modify 505 + or convey a specific copy of the covered work, then the patent license 506 + you grant is automatically extended to all recipients of the covered 507 + work and works based on it. 508 + 509 + A patent license is "discriminatory" if it does not include within 510 + the scope of its coverage, prohibits the exercise of, or is 511 + conditioned on the non-exercise of one or more of the rights that are 512 + specifically granted under this License. You may not convey a covered 513 + work if you are a party to an arrangement with a third party that is 514 + in the business of distributing software, under which you make payment 515 + to the third party based on the extent of your activity of conveying 516 + the work, and under which the third party grants, to any of the 517 + parties who would receive the covered work from you, a discriminatory 518 + patent license (a) in connection with copies of the covered work 519 + conveyed by you (or copies made from those copies), or (b) primarily 520 + for and in connection with specific products or compilations that 521 + contain the covered work, unless you entered into that arrangement, 522 + or that patent license was granted, prior to 28 March 2007. 523 + 524 + Nothing in this License shall be construed as excluding or limiting 525 + any implied license or other defenses to infringement that may 526 + otherwise be available to you under applicable patent law. 527 + 528 + 12. No Surrender of Others' Freedom. 529 + 530 + If conditions are imposed on you (whether by court order, agreement or 531 + otherwise) that contradict the conditions of this License, they do not 532 + excuse you from the conditions of this License. If you cannot convey a 533 + covered work so as to satisfy simultaneously your obligations under this 534 + License and any other pertinent obligations, then as a consequence you may 535 + not convey it at all. For example, if you agree to terms that obligate you 536 + to collect a royalty for further conveying from those to whom you convey 537 + the Program, the only way you could satisfy both those terms and this 538 + License would be to refrain entirely from conveying the Program. 539 + 540 + 13. Remote Network Interaction; Use with the GNU General Public License. 541 + 542 + Notwithstanding any other provision of this License, if you modify the 543 + Program, your modified version must prominently offer all users 544 + interacting with it remotely through a computer network (if your version 545 + supports such interaction) an opportunity to receive the Corresponding 546 + Source of your version by providing access to the Corresponding Source 547 + from a network server at no charge, through some standard or customary 548 + means of facilitating copying of software. This Corresponding Source 549 + shall include the Corresponding Source for any work covered by version 3 550 + of the GNU General Public License that is incorporated pursuant to the 551 + following paragraph. 552 + 553 + Notwithstanding any other provision of this License, you have 554 + permission to link or combine any covered work with a work licensed 555 + under version 3 of the GNU General Public License into a single 556 + combined work, and to convey the resulting work. The terms of this 557 + License will continue to apply to the part which is the covered work, 558 + but the work with which it is combined will remain governed by version 559 + 3 of the GNU General Public License. 560 + 561 + 14. Revised Versions of this License. 562 + 563 + The Free Software Foundation may publish revised and/or new versions of 564 + the GNU Affero General Public License from time to time. Such new versions 565 + will be similar in spirit to the present version, but may differ in detail to 566 + address new problems or concerns. 567 + 568 + Each version is given a distinguishing version number. If the 569 + Program specifies that a certain numbered version of the GNU Affero General 570 + Public License "or any later version" applies to it, you have the 571 + option of following the terms and conditions either of that numbered 572 + version or of any later version published by the Free Software 573 + Foundation. If the Program does not specify a version number of the 574 + GNU Affero General Public License, you may choose any version ever published 575 + by the Free Software Foundation. 576 + 577 + If the Program specifies that a proxy can decide which future 578 + versions of the GNU Affero General Public License can be used, that proxy's 579 + public statement of acceptance of a version permanently authorizes you 580 + to choose that version for the Program. 581 + 582 + Later license versions may give you additional or different 583 + permissions. However, no additional obligations are imposed on any 584 + author or copyright holder as a result of your choosing to follow a 585 + later version. 586 + 587 + 15. Disclaimer of Warranty. 588 + 589 + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 + 598 + 16. Limitation of Liability. 599 + 600 + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 + SUCH DAMAGES. 609 + 610 + 17. Interpretation of Sections 15 and 16. 611 + 612 + If the disclaimer of warranty and limitation of liability provided 613 + above cannot be given local legal effect according to their terms, 614 + reviewing courts shall apply local law that most closely approximates 615 + an absolute waiver of all civil liability in connection with the 616 + Program, unless a warranty or assumption of liability accompanies a 617 + copy of the Program in return for a fee. 618 + 619 + END OF TERMS AND CONDITIONS 620 + 621 + How to Apply These Terms to Your New Programs 622 + 623 + If you develop a new program, and you want it to be of the greatest 624 + possible use to the public, the best way to achieve this is to make it 625 + free software which everyone can redistribute and change under these terms. 626 + 627 + To do so, attach the following notices to the program. It is safest 628 + to attach them to the start of each source file to most effectively 629 + state the exclusion of warranty; and each file should have at least 630 + the "copyright" line and a pointer to where the full notice is found. 631 + 632 + <one line to give the program's name and a brief idea of what it does.> 633 + Copyright (C) <year> <name of author> 634 + 635 + This program is free software: you can redistribute it and/or modify 636 + it under the terms of the GNU Affero General Public License as published by 637 + the Free Software Foundation, either version 3 of the License, or 638 + (at your option) any later version. 639 + 640 + This program is distributed in the hope that it will be useful, 641 + but WITHOUT ANY WARRANTY; without even the implied warranty of 642 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 + GNU Affero General Public License for more details. 644 + 645 + You should have received a copy of the GNU Affero General Public License 646 + along with this program. If not, see <https://www.gnu.org/licenses/>. 647 + 648 + Also add information on how to contact you by electronic and paper mail. 649 + 650 + If your software can interact with users remotely through a computer 651 + network, you should also make sure that it provides a way for users to 652 + get its source. For example, if your program is a web application, its 653 + interface could display a "Source" link that leads users to an archive 654 + of the code. There are many ways you could offer source, and different 655 + solutions will be better for different programs; see section 13 for the 656 + specific requirements. 657 + 658 + You should also get your employer (if you work as a programmer) or school, 659 + if any, to sign a "copyright disclaimer" for the program, if necessary. 660 + For more information on this, and how to apply and follow the GNU AGPL, see 661 + <https://www.gnu.org/licenses/>. 662 +
+6
README.md
··· 1 + AtmoType 2 + ======== 3 + 4 + AtmoType is a font sharing website through ATProto. 5 + 6 + (under construction)