@tsparticles/preset-squares 3.0.2 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  [tsParticles](https://github.com/tsparticles/tsparticles) preset creating a squares effect with falling particles.
8
8
 
9
- [![Slack](https://particles.js.org/images/slack.png)](https://join.slack.com/t/tsparticles/shared_invite/enQtOTcxNTQxNjQ4NzkxLWE2MTZhZWExMWRmOWI5MTMxNjczOGE1Yjk0MjViYjdkYTUzODM3OTc5MGQ5MjFlODc4MzE0N2Q1OWQxZDc1YzI) [![Discord](https://particles.js.org/images/discord.png)](https://discord.gg/hACwv45Hme) [![Telegram](https://particles.js.org/images/telegram.png)](https://t.me/tsparticles)
9
+ [![Discord](https://particles.js.org/images/discord.png)](https://discord.gg/hACwv45Hme) [![Telegram](https://particles.js.org/images/telegram.png)](https://t.me/tsparticles)
10
10
 
11
11
  [![tsParticles Product Hunt](https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=186113&theme=light)](https://www.producthunt.com/posts/tsparticles?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-tsparticles") <a href="https://www.buymeacoffee.com/matteobruni"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a beer&emoji=🍺&slug=matteobruni&button_colour=5F7FFF&font_colour=ffffff&font_family=Arial&outline_colour=000000&coffee_colour=FFDD00"></a>
12
12
 
@@ -27,12 +27,16 @@
27
27
  Once the scripts are loaded you can set up `tsParticles` like this:
28
28
 
29
29
  ```javascript
30
- tsParticles.load({
31
- id: "tsparticles",
32
- options: {
33
- preset: "squares",
34
- },
35
- });
30
+ (async () => {
31
+ await loadSquaresPreset(tsParticles);
32
+
33
+ await tsParticles.load({
34
+ id: "tsparticles",
35
+ options: {
36
+ preset: "squares",
37
+ },
38
+ });
39
+ })();
36
40
  ```
37
41
 
38
42
  #### Customization
package/browser/bundle.js CHANGED
@@ -1,4 +1,3 @@
1
1
  import { loadSquaresPreset } from "./index.js";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- void loadSquaresPreset(tsParticles);
4
3
  export { loadSquaresPreset, tsParticles };
package/browser/index.js CHANGED
@@ -1,14 +1,17 @@
1
1
  import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
2
+ import { loadHexColorPlugin } from "@tsparticles/plugin-hex-color";
2
3
  import { loadRotateUpdater } from "@tsparticles/updater-rotate";
3
4
  import { loadSizeUpdater } from "@tsparticles/updater-size";
4
5
  import { loadSquareShape } from "@tsparticles/shape-square";
5
6
  import { loadStrokeColorUpdater } from "@tsparticles/updater-stroke-color";
6
7
  import { options } from "./options.js";
7
8
  export async function loadSquaresPreset(engine, refresh = true) {
9
+ await loadHexColorPlugin(engine, false);
8
10
  await loadEmittersPlugin(engine, false);
9
11
  await loadSquareShape(engine, false);
10
12
  await loadRotateUpdater(engine, false);
11
13
  await loadSizeUpdater(engine, false);
12
14
  await loadStrokeColorUpdater(engine, false);
13
- await engine.addPreset("squares", options, refresh);
15
+ await engine.addPreset("squares", options, false);
16
+ await engine.refresh(refresh);
14
17
  }
@@ -1,3 +1,4 @@
1
+ import { DestroyType, RotateDirection, StartValueType } from "@tsparticles/engine";
1
2
  export const options = {
2
3
  particles: {
3
4
  stroke: {
@@ -26,7 +27,7 @@ export const options = {
26
27
  },
27
28
  rotate: {
28
29
  value: 0,
29
- direction: "counter-clockwise",
30
+ direction: RotateDirection.counterClockwise,
30
31
  animation: {
31
32
  enable: true,
32
33
  speed: 2,
@@ -37,10 +38,10 @@ export const options = {
37
38
  value: { min: 1, max: 500 },
38
39
  animation: {
39
40
  enable: true,
40
- startValue: "min",
41
+ startValue: StartValueType.min,
41
42
  speed: 60,
42
43
  sync: true,
43
- destroy: "max",
44
+ destroy: DestroyType.max,
44
45
  },
45
46
  },
46
47
  },
package/cjs/bundle.js CHANGED
@@ -5,4 +5,3 @@ const index_js_1 = require("./index.js");
5
5
  Object.defineProperty(exports, "loadSquaresPreset", { enumerable: true, get: function () { return index_js_1.loadSquaresPreset; } });
6
6
  const engine_1 = require("@tsparticles/engine");
7
7
  Object.defineProperty(exports, "tsParticles", { enumerable: true, get: function () { return engine_1.tsParticles; } });
8
- void (0, index_js_1.loadSquaresPreset)(engine_1.tsParticles);
package/cjs/index.js CHANGED
@@ -2,17 +2,20 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.loadSquaresPreset = void 0;
4
4
  const plugin_emitters_1 = require("@tsparticles/plugin-emitters");
5
+ const plugin_hex_color_1 = require("@tsparticles/plugin-hex-color");
5
6
  const updater_rotate_1 = require("@tsparticles/updater-rotate");
6
7
  const updater_size_1 = require("@tsparticles/updater-size");
7
8
  const shape_square_1 = require("@tsparticles/shape-square");
8
9
  const updater_stroke_color_1 = require("@tsparticles/updater-stroke-color");
9
10
  const options_js_1 = require("./options.js");
10
11
  async function loadSquaresPreset(engine, refresh = true) {
12
+ await (0, plugin_hex_color_1.loadHexColorPlugin)(engine, false);
11
13
  await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
12
14
  await (0, shape_square_1.loadSquareShape)(engine, false);
13
15
  await (0, updater_rotate_1.loadRotateUpdater)(engine, false);
14
16
  await (0, updater_size_1.loadSizeUpdater)(engine, false);
15
17
  await (0, updater_stroke_color_1.loadStrokeColorUpdater)(engine, false);
16
- await engine.addPreset("squares", options_js_1.options, refresh);
18
+ await engine.addPreset("squares", options_js_1.options, false);
19
+ await engine.refresh(refresh);
17
20
  }
18
21
  exports.loadSquaresPreset = loadSquaresPreset;
package/cjs/options.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.options = void 0;
4
+ const engine_1 = require("@tsparticles/engine");
4
5
  exports.options = {
5
6
  particles: {
6
7
  stroke: {
@@ -29,7 +30,7 @@ exports.options = {
29
30
  },
30
31
  rotate: {
31
32
  value: 0,
32
- direction: "counter-clockwise",
33
+ direction: engine_1.RotateDirection.counterClockwise,
33
34
  animation: {
34
35
  enable: true,
35
36
  speed: 2,
@@ -40,10 +41,10 @@ exports.options = {
40
41
  value: { min: 1, max: 500 },
41
42
  animation: {
42
43
  enable: true,
43
- startValue: "min",
44
+ startValue: engine_1.StartValueType.min,
44
45
  speed: 60,
45
46
  sync: true,
46
- destroy: "max",
47
+ destroy: engine_1.DestroyType.max,
47
48
  },
48
49
  },
49
50
  },
package/esm/bundle.js CHANGED
@@ -1,4 +1,3 @@
1
1
  import { loadSquaresPreset } from "./index.js";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- void loadSquaresPreset(tsParticles);
4
3
  export { loadSquaresPreset, tsParticles };
package/esm/index.js CHANGED
@@ -1,14 +1,17 @@
1
1
  import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
2
+ import { loadHexColorPlugin } from "@tsparticles/plugin-hex-color";
2
3
  import { loadRotateUpdater } from "@tsparticles/updater-rotate";
3
4
  import { loadSizeUpdater } from "@tsparticles/updater-size";
4
5
  import { loadSquareShape } from "@tsparticles/shape-square";
5
6
  import { loadStrokeColorUpdater } from "@tsparticles/updater-stroke-color";
6
7
  import { options } from "./options.js";
7
8
  export async function loadSquaresPreset(engine, refresh = true) {
9
+ await loadHexColorPlugin(engine, false);
8
10
  await loadEmittersPlugin(engine, false);
9
11
  await loadSquareShape(engine, false);
10
12
  await loadRotateUpdater(engine, false);
11
13
  await loadSizeUpdater(engine, false);
12
14
  await loadStrokeColorUpdater(engine, false);
13
- await engine.addPreset("squares", options, refresh);
15
+ await engine.addPreset("squares", options, false);
16
+ await engine.refresh(refresh);
14
17
  }
package/esm/options.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { DestroyType, RotateDirection, StartValueType } from "@tsparticles/engine";
1
2
  export const options = {
2
3
  particles: {
3
4
  stroke: {
@@ -26,7 +27,7 @@ export const options = {
26
27
  },
27
28
  rotate: {
28
29
  value: 0,
29
- direction: "counter-clockwise",
30
+ direction: RotateDirection.counterClockwise,
30
31
  animation: {
31
32
  enable: true,
32
33
  speed: 2,
@@ -37,10 +38,10 @@ export const options = {
37
38
  value: { min: 1, max: 500 },
38
39
  animation: {
39
40
  enable: true,
40
- startValue: "min",
41
+ startValue: StartValueType.min,
41
42
  speed: 60,
42
43
  sync: true,
43
- destroy: "max",
44
+ destroy: DestroyType.max,
44
45
  },
45
46
  },
46
47
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/preset-squares",
3
- "version": "3.0.2",
3
+ "version": "3.2.0",
4
4
  "description": "tsParticles squares preset",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -87,12 +87,13 @@
87
87
  "module": "esm/index.js",
88
88
  "types": "types/index.d.ts",
89
89
  "dependencies": {
90
- "@tsparticles/engine": "^3.0.3",
91
- "@tsparticles/plugin-emitters": "^3.0.3",
92
- "@tsparticles/shape-square": "^3.0.3",
93
- "@tsparticles/updater-rotate": "^3.0.3",
94
- "@tsparticles/updater-size": "^3.0.3",
95
- "@tsparticles/updater-stroke-color": "^3.0.3"
90
+ "@tsparticles/engine": "^3.7.1",
91
+ "@tsparticles/plugin-emitters": "^3.7.1",
92
+ "@tsparticles/plugin-hex-color": "^3.7.1",
93
+ "@tsparticles/shape-square": "^3.7.1",
94
+ "@tsparticles/updater-rotate": "^3.7.1",
95
+ "@tsparticles/updater-size": "^3.7.1",
96
+ "@tsparticles/updater-stroke-color": "^3.7.1"
96
97
  },
97
98
  "publishConfig": {
98
99
  "access": "public"
package/report.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8"/>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
- <title>@tsparticles/preset-squares [5 Jan 2024 at 01:12]</title>
6
+ <title>@tsparticles/preset-squares [25 Nov 2024 at 00:14]</title>
7
7
  <link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
8
8
 
9
9
  <script>
@@ -31,7 +31,7 @@
31
31
  <body>
32
32
  <div id="app"></div>
33
33
  <script>
34
- window.chartData = [{"label":"tsparticles.preset.squares.bundle.js","isAsset":true,"statSize":215593,"parsedSize":215986,"gzipSize":35868,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":215593,"groups":[{"id":860,"label":"bundle.js + 102 modules (concatenated)","path":"./dist/browser/bundle.js + 102 modules (concatenated)","statSize":215593,"parsedSize":215986,"gzipSize":35868,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser","statSize":1752,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/bundle.js","statSize":178,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/index.js","statSize":704,"parsedSize":705,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/options.js","statSize":870,"parsedSize":871,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":1755,"gzipSize":291,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm","statSize":213841,"groups":[{"label":"@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","statSize":175769,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":249,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":490,"gzipSize":81,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils","statSize":34158,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12040,"gzipSize":1999,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4649,"gzipSize":772,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4550,"gzipSize":755,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8736,"gzipSize":1450,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":451,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1386,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1224,"gzipSize":203,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1180,"gzipSize":195,"inaccurateSizes":true}],"parsedSize":34220,"gzipSize":5682,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4909,"gzipSize":815,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core","statSize":94383,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8657,"parsedSize":8672,"gzipSize":1440,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":23975,"groups":[{"id":null,"label":"Vector.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":369,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2741,"gzipSize":455,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":589,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1104,"gzipSize":183,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":912,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Range.js","statSize":126,"parsedSize":126,"gzipSize":20,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":135,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14151,"gzipSize":2350,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2065,"gzipSize":343,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1822,"gzipSize":302,"inaccurateSizes":true}],"parsedSize":24018,"gzipSize":3988,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15615,"gzipSize":2593,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16262,"gzipSize":2700,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12721,"parsedSize":12744,"gzipSize":2116,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1761,"gzipSize":292,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15452,"parsedSize":15480,"gzipSize":2570,"inaccurateSizes":true}],"parsedSize":94555,"gzipSize":15702,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":41588,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6195,"gzipSize":1028,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":951,"gzipSize":158,"inaccurateSizes":true}],"parsedSize":951,"gzipSize":158,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":620,"gzipSize":102,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1301,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":799,"gzipSize":132,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":503,"gzipSize":83,"inaccurateSizes":true}],"parsedSize":1303,"gzipSize":216,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4361,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":565,"gzipSize":93,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3197,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":923,"gzipSize":153,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":355,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":596,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":480,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":472,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":373,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3202,"gzipSize":531,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":4368,"gzipSize":725,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":475,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":690,"gzipSize":114,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":995,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":528,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":467,"gzipSize":77,"inaccurateSizes":true}],"parsedSize":996,"gzipSize":165,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21316,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3541,"gzipSize":588,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1623,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1007,"gzipSize":167,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":245,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":372,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":1625,"gzipSize":270,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":399,"gzipSize":66,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":190,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":590,"gzipSize":97,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8345,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3069,"gzipSize":509,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":450,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":847,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":734,"gzipSize":121,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":737,"gzipSize":122,"inaccurateSizes":true}],"parsedSize":737,"gzipSize":122,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":543,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":617,"gzipSize":102,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":551,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":441,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":366,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":8360,"gzipSize":1388,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":972,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":548,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":424,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":973,"gzipSize":161,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":878,"gzipSize":145,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":866,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":866,"gzipSize":143,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":957,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":536,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":421,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":958,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":602,"gzipSize":99,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":649,"gzipSize":107,"inaccurateSizes":true}],"parsedSize":649,"gzipSize":107,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1440,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":542,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":535,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1442,"gzipSize":239,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":21354,"gzipSize":3546,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1068,"gzipSize":177,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":388,"gzipSize":64,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":474,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1388,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1023,"gzipSize":170,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":41663,"gzipSize":6918,"inaccurateSizes":true}],"parsedSize":176089,"gzipSize":29242,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","statSize":25569,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4277,"gzipSize":710,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4578,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2078,"gzipSize":345,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":594,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":461,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":592,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":483,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":375,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":4586,"gzipSize":761,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4332,"gzipSize":719,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":443,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11953,"parsedSize":11974,"gzipSize":1988,"inaccurateSizes":true}],"parsedSize":25615,"gzipSize":4253,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser","statSize":4692,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":221,"parsedSize":221,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":3135,"parsedSize":3140,"gzipSize":521,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1336,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true}],"parsedSize":1338,"gzipSize":222,"inaccurateSizes":true}],"parsedSize":4700,"gzipSize":780,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","statSize":3318,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":193,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1128,"gzipSize":187,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2002,"gzipSize":332,"inaccurateSizes":true}],"parsedSize":3324,"gzipSize":552,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser","statSize":512,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser/index.js","statSize":192,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":320,"parsedSize":320,"gzipSize":53,"inaccurateSizes":true}],"parsedSize":512,"gzipSize":85,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser","statSize":3981,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":246,"parsedSize":246,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1549,"parsedSize":1551,"gzipSize":257,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/Utils.js","statSize":2186,"parsedSize":2189,"gzipSize":363,"inaccurateSizes":true}],"parsedSize":3988,"gzipSize":662,"inaccurateSizes":true}],"parsedSize":214230,"gzipSize":35576,"inaccurateSizes":true}]}],"parsedSize":215986,"gzipSize":35868}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
34
+ window.chartData = [{"label":"tsparticles.preset.squares.bundle.js","isAsset":true,"statSize":240552,"parsedSize":239165,"gzipSize":39999,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":240552,"groups":[{"id":99,"label":"bundle.js + 125 modules (concatenated)","path":"./dist/browser/bundle.js + 125 modules (concatenated)","statSize":240552,"parsedSize":239165,"gzipSize":39999,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser","statSize":1977,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/bundle.js","statSize":141,"parsedSize":140,"gzipSize":23,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/index.js","statSize":846,"parsedSize":841,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/options.js","statSize":990,"parsedSize":984,"gzipSize":164,"inaccurateSizes":true}],"parsedSize":1965,"gzipSize":328,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm","statSize":238575,"groups":[{"label":"@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser","statSize":200456,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":247,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/init.js","statSize":141,"parsedSize":140,"gzipSize":23,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils","statSize":40173,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":15567,"parsedSize":15477,"gzipSize":2588,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":5634,"parsedSize":5601,"gzipSize":936,"inaccurateSizes":true},{"id":null,"label":"TypeUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/TypeUtils.js","statSize":514,"parsedSize":511,"gzipSize":85,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":5115,"parsedSize":5085,"gzipSize":850,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":11656,"parsedSize":11588,"gzipSize":1938,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":448,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1236,"parsedSize":1228,"gzipSize":205,"inaccurateSizes":true}],"parsedSize":39941,"gzipSize":6679,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/exports.js","statSize":4728,"parsedSize":4700,"gzipSize":786,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core","statSize":102545,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":10126,"parsedSize":10067,"gzipSize":1683,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":25553,"groups":[{"id":null,"label":"Vectors.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Vectors.js","statSize":3289,"parsedSize":3270,"gzipSize":546,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":701,"parsedSize":696,"gzipSize":116,"inaccurateSizes":true},{"id":null,"label":"Ranges.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Ranges.js","statSize":2313,"parsedSize":2299,"gzipSize":384,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":134,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"ExternalInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/ExternalInteractorBase.js","statSize":226,"parsedSize":224,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"ParticlesInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/ParticlesInteractorBase.js","statSize":228,"parsedSize":226,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14482,"parsedSize":14398,"gzipSize":2408,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":2039,"parsedSize":2027,"gzipSize":339,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2140,"parsedSize":2127,"gzipSize":355,"inaccurateSizes":true}],"parsedSize":25405,"gzipSize":4248,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":16800,"parsedSize":16703,"gzipSize":2793,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":18658,"parsedSize":18550,"gzipSize":3102,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":13304,"parsedSize":13227,"gzipSize":2212,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1865,"parsedSize":1854,"gzipSize":310,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":16239,"parsedSize":16145,"gzipSize":2700,"inaccurateSizes":true}],"parsedSize":101953,"gzipSize":17051,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums","statSize":6446,"groups":[{"label":"Directions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions","statSize":1078,"groups":[{"id":null,"label":"MoveDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions/MoveDirection.js","statSize":551,"parsedSize":547,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OutModeDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions/OutModeDirection.js","statSize":269,"parsedSize":267,"gzipSize":44,"inaccurateSizes":true},{"id":null,"label":"RotateDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions/RotateDirection.js","statSize":258,"parsedSize":256,"gzipSize":42,"inaccurateSizes":true}],"parsedSize":1071,"gzipSize":179,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes","statSize":1379,"groups":[{"id":null,"label":"AnimationMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/AnimationMode.js","statSize":261,"parsedSize":259,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"PixelMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/PixelMode.js","statSize":157,"parsedSize":156,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"ResponsiveMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/ResponsiveMode.js","statSize":183,"parsedSize":181,"gzipSize":30,"inaccurateSizes":true},{"id":null,"label":"ThemeMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/ThemeMode.js","statSize":177,"parsedSize":175,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CollisionMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/CollisionMode.js","statSize":219,"parsedSize":217,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"OutMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/OutMode.js","statSize":233,"parsedSize":231,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"LimitMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/LimitMode.js","statSize":149,"parsedSize":148,"gzipSize":24,"inaccurateSizes":true}],"parsedSize":1371,"gzipSize":229,"inaccurateSizes":true},{"id":null,"label":"AnimationStatus.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/AnimationStatus.js","statSize":205,"parsedSize":203,"gzipSize":34,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types","statSize":3525,"groups":[{"id":null,"label":"DestroyType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/DestroyType.js","statSize":187,"parsedSize":185,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"StartValueType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/StartValueType.js","statSize":212,"parsedSize":210,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"AlterType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/AlterType.js","statSize":159,"parsedSize":158,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"EventType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/EventType.js","statSize":719,"parsedSize":714,"gzipSize":119,"inaccurateSizes":true},{"id":null,"label":"DivType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/DivType.js","statSize":147,"parsedSize":146,"gzipSize":24,"inaccurateSizes":true},{"id":null,"label":"InteractorType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/InteractorType.js","statSize":193,"parsedSize":191,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"ParticleOutType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/ParticleOutType.js","statSize":233,"parsedSize":231,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"GradientType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/GradientType.js","statSize":210,"parsedSize":208,"gzipSize":34,"inaccurateSizes":true},{"id":null,"label":"EasingType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/EasingType.js","statSize":1465,"parsedSize":1456,"gzipSize":243,"inaccurateSizes":true}],"parsedSize":3504,"gzipSize":586,"inaccurateSizes":true},{"id":null,"label":"InteractivityDetect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/InteractivityDetect.js","statSize":259,"parsedSize":257,"gzipSize":43,"inaccurateSizes":true}],"parsedSize":6408,"gzipSize":1071,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":46015,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6475,"parsedSize":6437,"gzipSize":1076,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":5018,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":720,"parsedSize":715,"gzipSize":119,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3634,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":984,"parsedSize":978,"gzipSize":163,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":727,"parsedSize":722,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":419,"parsedSize":416,"gzipSize":69,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":544,"parsedSize":540,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":536,"parsedSize":532,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":424,"parsedSize":421,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":3613,"gzipSize":604,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":664,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":664,"parsedSize":660,"gzipSize":110,"inaccurateSizes":true}],"parsedSize":660,"gzipSize":110,"inaccurateSizes":true}],"parsedSize":4989,"gzipSize":834,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":655,"parsedSize":651,"gzipSize":108,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":854,"parsedSize":849,"gzipSize":142,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":1188,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":589,"parsedSize":585,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":599,"parsedSize":595,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":1181,"gzipSize":197,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":23544,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3594,"parsedSize":3573,"gzipSize":597,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1901,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1156,"parsedSize":1149,"gzipSize":192,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":309,"parsedSize":307,"gzipSize":51,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":436,"parsedSize":433,"gzipSize":72,"inaccurateSizes":true}],"parsedSize":1890,"gzipSize":316,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":653,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":463,"parsedSize":460,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":188,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":649,"gzipSize":108,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":9176,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3174,"parsedSize":3155,"gzipSize":527,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":514,"parsedSize":511,"gzipSize":85,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":910,"parsedSize":904,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":688,"parsedSize":684,"gzipSize":114,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":797,"parsedSize":792,"gzipSize":132,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":803,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":803,"parsedSize":798,"gzipSize":133,"inaccurateSizes":true}],"parsedSize":798,"gzipSize":133,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":573,"parsedSize":569,"gzipSize":95,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":680,"parsedSize":676,"gzipSize":113,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":607,"parsedSize":603,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":430,"parsedSize":427,"gzipSize":71,"inaccurateSizes":true}],"parsedSize":9123,"gzipSize":1525,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":1180,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":612,"parsedSize":608,"gzipSize":101,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":568,"parsedSize":564,"gzipSize":94,"inaccurateSizes":true}],"parsedSize":1173,"gzipSize":196,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1706,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":606,"parsedSize":602,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":501,"parsedSize":498,"gzipSize":83,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":599,"parsedSize":595,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":1696,"gzipSize":283,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":929,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":929,"parsedSize":923,"gzipSize":154,"inaccurateSizes":true}],"parsedSize":923,"gzipSize":154,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":1165,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":600,"parsedSize":596,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":565,"parsedSize":561,"gzipSize":93,"inaccurateSizes":true}],"parsedSize":1158,"gzipSize":193,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":662,"parsedSize":658,"gzipSize":110,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":712,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":712,"parsedSize":707,"gzipSize":118,"inaccurateSizes":true}],"parsedSize":707,"gzipSize":118,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":938,"parsedSize":932,"gzipSize":155,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":928,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":928,"parsedSize":922,"gzipSize":154,"inaccurateSizes":true}],"parsedSize":922,"gzipSize":154,"inaccurateSizes":true}],"parsedSize":23408,"gzipSize":3914,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1086,"parsedSize":1079,"gzipSize":180,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":446,"parsedSize":443,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":532,"parsedSize":528,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1614,"parsedSize":1604,"gzipSize":268,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":667,"parsedSize":663,"gzipSize":110,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1082,"parsedSize":1075,"gzipSize":179,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":1011,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":1011,"parsedSize":1005,"gzipSize":168,"inaccurateSizes":true}],"parsedSize":1005,"gzipSize":168,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1421,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":846,"parsedSize":841,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":575,"parsedSize":571,"gzipSize":95,"inaccurateSizes":true}],"parsedSize":1412,"gzipSize":236,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":422,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":422,"parsedSize":419,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":419,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":45749,"gzipSize":7651,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Types","statSize":159,"groups":[{"id":null,"label":"RangeType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Types/RangeType.js","statSize":159,"parsedSize":158,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":158,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":199300,"gzipSize":33331,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser","statSize":27206,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":957,"parsedSize":951,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"EmittersPlugin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/EmittersPlugin.js","statSize":3629,"parsedSize":3608,"gzipSize":603,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Enums","statSize":154,"groups":[{"id":null,"label":"EmitterClickMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Enums/EmitterClickMode.js","statSize":154,"parsedSize":153,"gzipSize":25,"inaccurateSizes":true}],"parsedSize":153,"gzipSize":25,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":440,"gzipSize":73,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4735,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2088,"parsedSize":2075,"gzipSize":347,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":608,"parsedSize":604,"gzipSize":101,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":463,"parsedSize":460,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":606,"parsedSize":602,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":542,"parsedSize":538,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":428,"parsedSize":425,"gzipSize":71,"inaccurateSizes":true}],"parsedSize":4707,"gzipSize":787,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4539,"parsedSize":4512,"gzipSize":754,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":12749,"parsedSize":12675,"gzipSize":2119,"inaccurateSizes":true}],"parsedSize":27049,"gzipSize":4523,"inaccurateSizes":true},{"label":"@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser","statSize":1910,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser/index.js","statSize":290,"parsedSize":288,"gzipSize":48,"inaccurateSizes":true},{"id":null,"label":"HexColorManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser/HexColorManager.js","statSize":1620,"parsedSize":1610,"gzipSize":269,"inaccurateSizes":true}],"parsedSize":1898,"gzipSize":317,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser","statSize":4536,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":359,"parsedSize":356,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":2780,"parsedSize":2763,"gzipSize":462,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1397,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":714,"parsedSize":709,"gzipSize":118,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":683,"parsedSize":679,"gzipSize":113,"inaccurateSizes":true}],"parsedSize":1388,"gzipSize":232,"inaccurateSizes":true}],"parsedSize":4509,"gzipSize":754,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser","statSize":1627,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser/index.js","statSize":333,"parsedSize":331,"gzipSize":55,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1294,"parsedSize":1286,"gzipSize":215,"inaccurateSizes":true}],"parsedSize":1617,"gzipSize":270,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser","statSize":834,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser/index.js","statSize":271,"parsedSize":269,"gzipSize":45,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":259,"parsedSize":257,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser/Utils.js","statSize":304,"parsedSize":302,"gzipSize":50,"inaccurateSizes":true}],"parsedSize":829,"gzipSize":138,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser","statSize":2006,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":392,"parsedSize":389,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1614,"parsedSize":1604,"gzipSize":268,"inaccurateSizes":true}],"parsedSize":1994,"gzipSize":333,"inaccurateSizes":true}],"parsedSize":237199,"gzipSize":39670,"inaccurateSizes":true}]}],"parsedSize":239165,"gzipSize":39999}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
35
35
  window.entrypoints = ["tsparticles.preset.squares.bundle","tsparticles.preset.squares.bundle.min"];
36
36
  window.defaultSizes = "parsed";
37
37
  </script>