@tsparticles/basic 4.1.2 → 4.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/browser/index.js CHANGED
@@ -9,7 +9,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
9
9
  import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
10
10
  import { loadSizeUpdater } from "@tsparticles/updater-size";
11
11
  export async function loadBasic(engine) {
12
- engine.checkVersion("4.1.2");
12
+ engine.checkVersion("4.2.0");
13
13
  await engine.pluginManager.register(async (e) => {
14
14
  await Promise.all([
15
15
  loadBlendPlugin(e),
@@ -1,5 +1,5 @@
1
1
  export async function loadBasic(engine) {
2
- engine.checkVersion("4.1.2");
2
+ engine.checkVersion("4.2.0");
3
3
  await engine.pluginManager.register(async (e) => {
4
4
  const [{ loadBlendPlugin }, { loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
5
5
  import("@tsparticles/plugin-blend/lazy"),
package/cjs/index.js CHANGED
@@ -9,7 +9,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
9
9
  import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
10
10
  import { loadSizeUpdater } from "@tsparticles/updater-size";
11
11
  export async function loadBasic(engine) {
12
- engine.checkVersion("4.1.2");
12
+ engine.checkVersion("4.2.0");
13
13
  await engine.pluginManager.register(async (e) => {
14
14
  await Promise.all([
15
15
  loadBlendPlugin(e),
package/cjs/index.lazy.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadBasic(engine) {
2
- engine.checkVersion("4.1.2");
2
+ engine.checkVersion("4.2.0");
3
3
  await engine.pluginManager.register(async (e) => {
4
4
  const [{ loadBlendPlugin }, { loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
5
5
  import("@tsparticles/plugin-blend/lazy"),
package/esm/index.js CHANGED
@@ -9,7 +9,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
9
9
  import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
10
10
  import { loadSizeUpdater } from "@tsparticles/updater-size";
11
11
  export async function loadBasic(engine) {
12
- engine.checkVersion("4.1.2");
12
+ engine.checkVersion("4.2.0");
13
13
  await engine.pluginManager.register(async (e) => {
14
14
  await Promise.all([
15
15
  loadBlendPlugin(e),
package/esm/index.lazy.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadBasic(engine) {
2
- engine.checkVersion("4.1.2");
2
+ engine.checkVersion("4.2.0");
3
3
  await engine.pluginManager.register(async (e) => {
4
4
  const [{ loadBlendPlugin }, { loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
5
5
  import("@tsparticles/plugin-blend/lazy"),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tsparticles/basic",
3
- "version": "4.1.2",
4
- "description": "Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.",
3
+ "version": "4.2.0",
4
+ "description": "Basic tsParticles bundle minimal core engine with only the essential features for fast, lightweight particle animations. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
7
7
  "type": "git",
@@ -105,17 +105,17 @@
105
105
  "./package.json": "./package.json"
106
106
  },
107
107
  "dependencies": {
108
- "@tsparticles/engine": "4.1.2",
109
- "@tsparticles/plugin-blend": "4.1.2",
110
- "@tsparticles/plugin-hex-color": "4.1.2",
111
- "@tsparticles/plugin-hsl-color": "4.1.2",
112
- "@tsparticles/plugin-move": "4.1.2",
113
- "@tsparticles/plugin-rgb-color": "4.1.2",
114
- "@tsparticles/shape-circle": "4.1.2",
115
- "@tsparticles/updater-opacity": "4.1.2",
116
- "@tsparticles/updater-out-modes": "4.1.2",
117
- "@tsparticles/updater-paint": "4.1.2",
118
- "@tsparticles/updater-size": "4.1.2"
108
+ "@tsparticles/engine": "4.2.0",
109
+ "@tsparticles/plugin-blend": "4.2.0",
110
+ "@tsparticles/plugin-hex-color": "4.2.0",
111
+ "@tsparticles/plugin-hsl-color": "4.2.0",
112
+ "@tsparticles/plugin-move": "4.2.0",
113
+ "@tsparticles/plugin-rgb-color": "4.2.0",
114
+ "@tsparticles/shape-circle": "4.2.0",
115
+ "@tsparticles/updater-opacity": "4.2.0",
116
+ "@tsparticles/updater-out-modes": "4.2.0",
117
+ "@tsparticles/updater-paint": "4.2.0",
118
+ "@tsparticles/updater-size": "4.2.0"
119
119
  },
120
120
  "publishConfig": {
121
121
  "access": "public"
package/report.html CHANGED
@@ -4930,7 +4930,7 @@ var drawChart = (function (exports) {
4930
4930
  </script>
4931
4931
  <script>
4932
4932
  /*<!--*/
4933
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"tsparticles.basic.bundle.js","children":[{"name":"home/workflows/workspace","children":[{"name":"engine/dist/browser","children":[{"name":"Core","children":[{"name":"Utils","children":[{"uid":"d7a8f194-1","name":"Constants.js"},{"uid":"d7a8f194-5","name":"Vectors.js"},{"uid":"d7a8f194-29","name":"PluginManager.js"},{"uid":"d7a8f194-39","name":"Ranges.js"},{"uid":"d7a8f194-191","name":"EventListeners.js"},{"uid":"d7a8f194-195","name":"SpatialHashGrid.js"}]},{"uid":"d7a8f194-33","name":"Engine.js"},{"uid":"d7a8f194-187","name":"RenderManager.js"},{"uid":"d7a8f194-189","name":"CanvasManager.js"},{"uid":"d7a8f194-193","name":"Particle.js"},{"uid":"d7a8f194-197","name":"ParticlesManager.js"},{"uid":"d7a8f194-199","name":"Retina.js"},{"uid":"d7a8f194-201","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"d7a8f194-3","name":"MoveDirection.js"},{"uid":"d7a8f194-17","name":"OutModeDirection.js"},{"uid":"d7a8f194-41","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"d7a8f194-11","name":"AnimationMode.js"},{"uid":"d7a8f194-19","name":"PixelMode.js"},{"uid":"d7a8f194-43","name":"LimitMode.js"},{"uid":"d7a8f194-45","name":"OutMode.js"}]},{"uid":"d7a8f194-13","name":"AnimationStatus.js"},{"name":"Types","children":[{"uid":"d7a8f194-15","name":"DestroyType.js"},{"uid":"d7a8f194-21","name":"StartValueType.js"},{"uid":"d7a8f194-27","name":"EventType.js"},{"uid":"d7a8f194-47","name":"AlterType.js"},{"uid":"d7a8f194-49","name":"GradientType.js"},{"uid":"d7a8f194-51","name":"ParticleOutType.js"},{"uid":"d7a8f194-53","name":"EasingType.js"}]},{"uid":"d7a8f194-37","name":"RangeType.js"}]},{"name":"Utils","children":[{"uid":"d7a8f194-7","name":"TypeUtils.js"},{"uid":"d7a8f194-9","name":"MathUtils.js"},{"uid":"d7a8f194-23","name":"Utils.js"},{"uid":"d7a8f194-25","name":"EventDispatcher.js"},{"uid":"d7a8f194-31","name":"LogUtils.js"},{"uid":"d7a8f194-111","name":"OptionsUtils.js"},{"uid":"d7a8f194-115","name":"CanvasUtils.js"},{"uid":"d7a8f194-117","name":"ColorUtils.js"}]},{"uid":"d7a8f194-35","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"d7a8f194-55","name":"AnimationOptions.js"},{"uid":"d7a8f194-57","name":"ColorAnimation.js"},{"uid":"d7a8f194-59","name":"HslAnimation.js"},{"uid":"d7a8f194-61","name":"OptionsColor.js"},{"uid":"d7a8f194-63","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"d7a8f194-65"},{"name":"FullScreen/FullScreen.js","uid":"d7a8f194-67"},{"uid":"d7a8f194-69","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"d7a8f194-71"},{"uid":"d7a8f194-73","name":"Fill.js"},{"name":"Move","children":[{"uid":"d7a8f194-75","name":"MoveAngle.js"},{"uid":"d7a8f194-77","name":"MoveCenter.js"},{"uid":"d7a8f194-79","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"d7a8f194-83"},{"uid":"d7a8f194-85","name":"OutModes.js"},{"uid":"d7a8f194-87","name":"Spin.js"},{"uid":"d7a8f194-89","name":"Move.js"}]},{"uid":"d7a8f194-91","name":"Stroke.js"},{"uid":"d7a8f194-93","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"d7a8f194-95","name":"ParticlesBounceFactor.js"},{"uid":"d7a8f194-97","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"d7a8f194-99","name":"ParticlesDensity.js"},{"uid":"d7a8f194-101","name":"ParticlesNumberLimit.js"},{"uid":"d7a8f194-103","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"d7a8f194-105"},{"name":"ZIndex/ZIndex.js","uid":"d7a8f194-107"},{"uid":"d7a8f194-109","name":"ParticlesOptions.js"}]},{"uid":"d7a8f194-81","name":"ValueWithRandom.js"},{"uid":"d7a8f194-113","name":"Options.js"}]},{"uid":"d7a8f194-119","name":"index.js"}]},{"name":"plugins","children":[{"name":"blend/dist/browser","children":[{"name":"Options/Classes/Blend.js","uid":"d7a8f194-121"},{"uid":"d7a8f194-123","name":"BlendPlugin.js"},{"uid":"d7a8f194-125","name":"index.js"},{"uid":"d7a8f194-203","name":"BlendPluginInstance.js"}]},{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"d7a8f194-133","name":"HexColorManager.js"},{"uid":"d7a8f194-135","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"d7a8f194-137","name":"HslColorManager.js"},{"uid":"d7a8f194-139","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"d7a8f194-171","name":"RgbColorManager.js"},{"uid":"d7a8f194-173","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"d7a8f194-141","name":"MovePlugin.js"},{"uid":"d7a8f194-143","name":"index.js"},{"uid":"d7a8f194-205","name":"Utils.js"},{"uid":"d7a8f194-207","name":"MovePluginInstance.js"}]}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"d7a8f194-127","name":"Utils.js"},{"uid":"d7a8f194-129","name":"CircleDrawer.js"},{"uid":"d7a8f194-131","name":"index.js"}]},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"d7a8f194-145","name":"OpacityAnimation.js"},{"uid":"d7a8f194-147","name":"Opacity.js"}]},{"uid":"d7a8f194-149","name":"OpacityUpdater.js"},{"uid":"d7a8f194-151","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"d7a8f194-153","name":"Utils.js"},{"uid":"d7a8f194-155","name":"BounceOutMode.js"},{"uid":"d7a8f194-157","name":"DestroyOutMode.js"},{"uid":"d7a8f194-159","name":"NoneOutMode.js"},{"uid":"d7a8f194-161","name":"OutOutMode.js"},{"uid":"d7a8f194-163","name":"OutOfCanvasUpdater.js"},{"uid":"d7a8f194-165","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"d7a8f194-167","name":"PaintUpdater.js"},{"uid":"d7a8f194-169","name":"index.js"}]},{"name":"size/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"d7a8f194-175","name":"SizeAnimation.js"},{"uid":"d7a8f194-177","name":"Size.js"}]},{"uid":"d7a8f194-179","name":"SizeUpdater.js"},{"uid":"d7a8f194-181","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"d7a8f194-183","name":"index.js"},{"uid":"d7a8f194-185","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"d7a8f194-1":{"renderedLength":1562,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-0"},"d7a8f194-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-2"},"d7a8f194-5":{"renderedLength":3316,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-4"},"d7a8f194-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-6"},"d7a8f194-9":{"renderedLength":6134,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-8"},"d7a8f194-11":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-10"},"d7a8f194-13":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-12"},"d7a8f194-15":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-14"},"d7a8f194-17":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-16"},"d7a8f194-19":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-18"},"d7a8f194-21":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-20"},"d7a8f194-23":{"renderedLength":17344,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-22"},"d7a8f194-25":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-24"},"d7a8f194-27":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-26"},"d7a8f194-29":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-28"},"d7a8f194-31":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-30"},"d7a8f194-33":{"renderedLength":6107,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-32"},"d7a8f194-35":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-34"},"d7a8f194-37":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-36"},"d7a8f194-39":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-38"},"d7a8f194-41":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-40"},"d7a8f194-43":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-42"},"d7a8f194-45":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-44"},"d7a8f194-47":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-46"},"d7a8f194-49":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-48"},"d7a8f194-51":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-50"},"d7a8f194-53":{"renderedLength":2524,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-52"},"d7a8f194-55":{"renderedLength":1698,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-54"},"d7a8f194-57":{"renderedLength":711,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-56"},"d7a8f194-59":{"renderedLength":362,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-58"},"d7a8f194-61":{"renderedLength":708,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-60"},"d7a8f194-63":{"renderedLength":1063,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-62"},"d7a8f194-65":{"renderedLength":1129,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-64"},"d7a8f194-67":{"renderedLength":460,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-66"},"d7a8f194-69":{"renderedLength":458,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-68"},"d7a8f194-71":{"renderedLength":850,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-70"},"d7a8f194-73":{"renderedLength":624,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-72"},"d7a8f194-75":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-74"},"d7a8f194-77":{"renderedLength":717,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-76"},"d7a8f194-79":{"renderedLength":839,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-78"},"d7a8f194-81":{"renderedLength":989,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-80"},"d7a8f194-83":{"renderedLength":790,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-82"},"d7a8f194-85":{"renderedLength":597,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-84"},"d7a8f194-87":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-86"},"d7a8f194-89":{"renderedLength":3032,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-88"},"d7a8f194-91":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-90"},"d7a8f194-93":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-92"},"d7a8f194-95":{"renderedLength":146,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-94"},"d7a8f194-97":{"renderedLength":420,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-96"},"d7a8f194-99":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-98"},"d7a8f194-101":{"renderedLength":475,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-100"},"d7a8f194-103":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-102"},"d7a8f194-105":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-104"},"d7a8f194-107":{"renderedLength":740,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-106"},"d7a8f194-109":{"renderedLength":5295,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-108"},"d7a8f194-111":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-110"},"d7a8f194-113":{"renderedLength":4492,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-112"},"d7a8f194-115":{"renderedLength":4116,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-114"},"d7a8f194-117":{"renderedLength":14196,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-116"},"d7a8f194-119":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-118"},"d7a8f194-121":{"renderedLength":462,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-120"},"d7a8f194-123":{"renderedLength":938,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-122"},"d7a8f194-125":{"renderedLength":209,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-124"},"d7a8f194-127":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-126"},"d7a8f194-129":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-128"},"d7a8f194-131":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-130"},"d7a8f194-133":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-132"},"d7a8f194-135":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-134"},"d7a8f194-137":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-136"},"d7a8f194-139":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-138"},"d7a8f194-141":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-140"},"d7a8f194-143":{"renderedLength":1076,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-142"},"d7a8f194-145":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-144"},"d7a8f194-147":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-146"},"d7a8f194-149":{"renderedLength":1973,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-148"},"d7a8f194-151":{"renderedLength":314,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-150"},"d7a8f194-153":{"renderedLength":3420,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-152"},"d7a8f194-155":{"renderedLength":1412,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-154"},"d7a8f194-157":{"renderedLength":1304,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-156"},"d7a8f194-159":{"renderedLength":2071,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-158"},"d7a8f194-161":{"renderedLength":6702,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-160"},"d7a8f194-163":{"renderedLength":2205,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-162"},"d7a8f194-165":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-164"},"d7a8f194-167":{"renderedLength":3448,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-166"},"d7a8f194-169":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-168"},"d7a8f194-171":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-170"},"d7a8f194-173":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-172"},"d7a8f194-175":{"renderedLength":451,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-174"},"d7a8f194-177":{"renderedLength":495,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-176"},"d7a8f194-179":{"renderedLength":2126,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-178"},"d7a8f194-181":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-180"},"d7a8f194-183":{"renderedLength":577,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-182"},"d7a8f194-185":{"renderedLength":120,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-184"},"d7a8f194-187":{"renderedLength":11692,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-186"},"d7a8f194-189":{"renderedLength":12702,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-188"},"d7a8f194-191":{"renderedLength":3151,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-190"},"d7a8f194-193":{"renderedLength":21931,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-192"},"d7a8f194-195":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-194"},"d7a8f194-197":{"renderedLength":18216,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-196"},"d7a8f194-199":{"renderedLength":1506,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-198"},"d7a8f194-201":{"renderedLength":13453,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-200"},"d7a8f194-203":{"renderedLength":1301,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-202"},"d7a8f194-205":{"renderedLength":6783,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-204"},"d7a8f194-207":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-206"}},"nodeMetas":{"d7a8f194-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-1"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-38"},{"uid":"d7a8f194-4"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-114"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-24"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-190"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-198"},{"uid":"d7a8f194-186"},{"uid":"d7a8f194-192"}]},"d7a8f194-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-3"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-192"}]},"d7a8f194-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-5"},"imported":[{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-192"}]},"d7a8f194-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-7"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-64"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-66"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-60"},{"uid":"d7a8f194-96"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-102"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-98"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-106"},{"uid":"d7a8f194-68"},{"uid":"d7a8f194-80"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-70"}]},"d7a8f194-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-9"},"imported":[{"uid":"d7a8f194-2"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-4"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-38"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-80"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-198"},{"uid":"d7a8f194-192"}]},"d7a8f194-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-11"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-22"}]},"d7a8f194-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-13"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-22"}]},"d7a8f194-14":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-15"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-22"}]},"d7a8f194-16":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-17"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-192"}]},"d7a8f194-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-19"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-22"}]},"d7a8f194-20":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-21"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-22"}]},"d7a8f194-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-23"},"imported":[{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-10"},{"uid":"d7a8f194-12"},{"uid":"d7a8f194-14"},{"uid":"d7a8f194-16"},{"uid":"d7a8f194-18"},{"uid":"d7a8f194-20"},{"uid":"d7a8f194-4"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-28"},{"uid":"d7a8f194-70"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-190"},{"uid":"d7a8f194-192"}]},"d7a8f194-24":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-25"},"imported":[{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-32"}]},"d7a8f194-26":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-27"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-28"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-192"}]},"d7a8f194-28":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-29"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-26"}],"importedBy":[{"uid":"d7a8f194-32"}]},"d7a8f194-30":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-31"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-196"}]},"d7a8f194-32":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-33"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-24"},{"uid":"d7a8f194-28"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-200","dynamic":true}],"importedBy":[{"uid":"d7a8f194-34"}]},"d7a8f194-34":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-35"},"imported":[{"uid":"d7a8f194-32"}],"importedBy":[{"uid":"d7a8f194-118"}]},"d7a8f194-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-37"},"imported":[],"importedBy":[{"uid":"d7a8f194-38"}]},"d7a8f194-38":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-39"},"imported":[{"uid":"d7a8f194-36"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-194"}]},"d7a8f194-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-41"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"}]},"d7a8f194-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-43"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-196"}]},"d7a8f194-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-45"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-192"}]},"d7a8f194-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-47"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-116"}]},"d7a8f194-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-49"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"}]},"d7a8f194-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-51"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-192"}]},"d7a8f194-52":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EasingType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-53"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"}]},"d7a8f194-54":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-55"},"imported":[{"uid":"d7a8f194-10"},{"uid":"d7a8f194-20"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-80"}]},"d7a8f194-56":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-57"},"imported":[{"uid":"d7a8f194-54"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-58"}]},"d7a8f194-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-59"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-62"}]},"d7a8f194-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-61"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-64"}]},"d7a8f194-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-63"},"imported":[{"uid":"d7a8f194-6"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-60"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-90"}]},"d7a8f194-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-65"},"imported":[{"uid":"d7a8f194-60"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"}]},"d7a8f194-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-67"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"}]},"d7a8f194-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-69"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"}]},"d7a8f194-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-71"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-108"}]},"d7a8f194-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-73"},"imported":[{"uid":"d7a8f194-62"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-92"}]},"d7a8f194-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-75"},"imported":[{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-77"},"imported":[{"uid":"d7a8f194-18"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-79"},"imported":[{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-81"},"imported":[{"uid":"d7a8f194-54"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-94"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-106"}]},"d7a8f194-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-83"},"imported":[{"uid":"d7a8f194-80"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-85"},"imported":[{"uid":"d7a8f194-44"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-87"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-89"},"imported":[{"uid":"d7a8f194-2"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-91"},"imported":[{"uid":"d7a8f194-62"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-92"}]},"d7a8f194-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-93"},"imported":[{"uid":"d7a8f194-62"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-95"},"imported":[{"uid":"d7a8f194-80"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-96"}]},"d7a8f194-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-97"},"imported":[{"uid":"d7a8f194-94"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-99"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-102"}]},"d7a8f194-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-101"},"imported":[{"uid":"d7a8f194-42"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-102"}]},"d7a8f194-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-103"},"imported":[{"uid":"d7a8f194-98"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-105"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-107"},"imported":[{"uid":"d7a8f194-80"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-109"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-70"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-96"},{"uid":"d7a8f194-102"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-106"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-110"}]},"d7a8f194-110":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-111"},"imported":[{"uid":"d7a8f194-108"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-192"}]},"d7a8f194-112":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-113"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-64"},{"uid":"d7a8f194-66"},{"uid":"d7a8f194-68"},{"uid":"d7a8f194-110"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-200"}]},"d7a8f194-114":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/CanvasUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-115"},"imported":[{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-186"}]},"d7a8f194-116":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-117"},"imported":[{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-46"},{"uid":"d7a8f194-12"},{"uid":"d7a8f194-22"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-186"},{"uid":"d7a8f194-192"}]},"d7a8f194-118":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-119"},"imported":[{"uid":"d7a8f194-34"},{"uid":"d7a8f194-208"}],"importedBy":[{"uid":"d7a8f194-184"},{"uid":"d7a8f194-142"},{"uid":"d7a8f194-128"},{"uid":"d7a8f194-136"},{"uid":"d7a8f194-148"},{"uid":"d7a8f194-162"},{"uid":"d7a8f194-166"},{"uid":"d7a8f194-170"},{"uid":"d7a8f194-178"},{"uid":"d7a8f194-120"},{"uid":"d7a8f194-202"},{"uid":"d7a8f194-126"},{"uid":"d7a8f194-206"},{"uid":"d7a8f194-146"},{"uid":"d7a8f194-154"},{"uid":"d7a8f194-156"},{"uid":"d7a8f194-158"},{"uid":"d7a8f194-160"},{"uid":"d7a8f194-176"},{"uid":"d7a8f194-204"},{"uid":"d7a8f194-144"},{"uid":"d7a8f194-152"},{"uid":"d7a8f194-174"}]},"d7a8f194-120":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/Options/Classes/Blend.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-121"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-122"}]},"d7a8f194-122":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-123"},"imported":[{"uid":"d7a8f194-120"},{"uid":"d7a8f194-202","dynamic":true}],"importedBy":[{"uid":"d7a8f194-124"}]},"d7a8f194-124":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-125"},"imported":[{"uid":"d7a8f194-122"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-126":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-127"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-128"}]},"d7a8f194-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-129"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-126"}],"importedBy":[{"uid":"d7a8f194-130"}]},"d7a8f194-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-131"},"imported":[{"uid":"d7a8f194-128"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-132":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-133"},"imported":[],"importedBy":[{"uid":"d7a8f194-134"}]},"d7a8f194-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-135"},"imported":[{"uid":"d7a8f194-132"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-136":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-137"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-138"}]},"d7a8f194-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-139"},"imported":[{"uid":"d7a8f194-136"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-140":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-141"},"imported":[{"uid":"d7a8f194-206","dynamic":true}],"importedBy":[{"uid":"d7a8f194-142"}]},"d7a8f194-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-143"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-140"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-144":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-145"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-146"}]},"d7a8f194-146":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-147"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-144"}],"importedBy":[{"uid":"d7a8f194-148"}]},"d7a8f194-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-149"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-146"}],"importedBy":[{"uid":"d7a8f194-150"}]},"d7a8f194-150":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-151"},"imported":[{"uid":"d7a8f194-148"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-152":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-153"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-154"}]},"d7a8f194-154":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-155"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-152"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-157"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-159"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-161"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-163"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-154"},{"uid":"d7a8f194-156"},{"uid":"d7a8f194-158"},{"uid":"d7a8f194-160"}],"importedBy":[{"uid":"d7a8f194-164"}]},"d7a8f194-164":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-165"},"imported":[{"uid":"d7a8f194-162"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-166":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-167"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-168"}]},"d7a8f194-168":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-169"},"imported":[{"uid":"d7a8f194-166"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-170":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-171"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-172"}]},"d7a8f194-172":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-173"},"imported":[{"uid":"d7a8f194-170"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-174":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-175"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-176"}]},"d7a8f194-176":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-177"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-174"}],"importedBy":[{"uid":"d7a8f194-178"}]},"d7a8f194-178":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-179"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-176"}],"importedBy":[{"uid":"d7a8f194-180"}]},"d7a8f194-180":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-181"},"imported":[{"uid":"d7a8f194-178"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-182":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-183"},"imported":[{"uid":"d7a8f194-124"},{"uid":"d7a8f194-130"},{"uid":"d7a8f194-134"},{"uid":"d7a8f194-138"},{"uid":"d7a8f194-142"},{"uid":"d7a8f194-150"},{"uid":"d7a8f194-164"},{"uid":"d7a8f194-168"},{"uid":"d7a8f194-172"},{"uid":"d7a8f194-180"}],"importedBy":[{"uid":"d7a8f194-184"}]},"d7a8f194-184":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-185"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-182"}],"importedBy":[],"isEntry":true},"d7a8f194-186":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-187"},"imported":[{"uid":"d7a8f194-114"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-116"}],"importedBy":[{"uid":"d7a8f194-188"}]},"d7a8f194-188":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-189"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-186"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-191"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-193"},"imported":[{"uid":"d7a8f194-4"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-2"},{"uid":"d7a8f194-44"},{"uid":"d7a8f194-16"},{"uid":"d7a8f194-50"},{"uid":"d7a8f194-110"}],"importedBy":[{"uid":"d7a8f194-196"}]},"d7a8f194-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-195"},"imported":[{"uid":"d7a8f194-38"}],"importedBy":[{"uid":"d7a8f194-196"}]},"d7a8f194-196":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-197"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-42"},{"uid":"d7a8f194-192"},{"uid":"d7a8f194-194"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-110"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-198":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-199"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-200":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-201"},"imported":[{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-190"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-198"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-110"}],"importedBy":[{"uid":"d7a8f194-32"}]},"d7a8f194-202":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-203"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-122"}]},"d7a8f194-204":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-205"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-206"}]},"d7a8f194-206":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-207"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-204"}],"importedBy":[{"uid":"d7a8f194-140"}]},"d7a8f194-208":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-38"},{"uid":"d7a8f194-4"},{"uid":"d7a8f194-2"},{"uid":"d7a8f194-40"},{"uid":"d7a8f194-16"},{"uid":"d7a8f194-10"},{"uid":"d7a8f194-42"},{"uid":"d7a8f194-44"},{"uid":"d7a8f194-18"},{"uid":"d7a8f194-46"},{"uid":"d7a8f194-14"},{"uid":"d7a8f194-48"},{"uid":"d7a8f194-50"},{"uid":"d7a8f194-20"},{"uid":"d7a8f194-52"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-12"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-64"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-66"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-60"},{"uid":"d7a8f194-96"},{"uid":"d7a8f194-94"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-102"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-98"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-106"},{"uid":"d7a8f194-68"},{"uid":"d7a8f194-80"},{"uid":"d7a8f194-114"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-110"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-118"}]}},"env":{"rollup":"4.60.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4933
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"tsparticles.basic.bundle.js","children":[{"name":"home/workflows/workspace","children":[{"name":"engine/dist/browser","children":[{"name":"Core","children":[{"name":"Utils","children":[{"uid":"a5cb34e8-1","name":"Constants.js"},{"uid":"a5cb34e8-5","name":"Vectors.js"},{"uid":"a5cb34e8-21","name":"PluginManager.js"},{"uid":"a5cb34e8-31","name":"Ranges.js"},{"uid":"a5cb34e8-193","name":"EventListeners.js"},{"uid":"a5cb34e8-197","name":"SpatialHashGrid.js"}]},{"uid":"a5cb34e8-25","name":"Engine.js"},{"uid":"a5cb34e8-189","name":"RenderManager.js"},{"uid":"a5cb34e8-191","name":"CanvasManager.js"},{"uid":"a5cb34e8-195","name":"Particle.js"},{"uid":"a5cb34e8-199","name":"ParticlesManager.js"},{"uid":"a5cb34e8-201","name":"Retina.js"},{"uid":"a5cb34e8-203","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"a5cb34e8-3","name":"MoveDirection.js"},{"uid":"a5cb34e8-11","name":"OutModeDirection.js"},{"uid":"a5cb34e8-33","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"a5cb34e8-13","name":"PixelMode.js"},{"uid":"a5cb34e8-35","name":"AnimationMode.js"},{"uid":"a5cb34e8-37","name":"LimitMode.js"},{"uid":"a5cb34e8-39","name":"OutMode.js"}]},{"name":"Types","children":[{"uid":"a5cb34e8-19","name":"EventType.js"},{"uid":"a5cb34e8-41","name":"AlterType.js"},{"uid":"a5cb34e8-43","name":"DestroyType.js"},{"uid":"a5cb34e8-45","name":"GradientType.js"},{"uid":"a5cb34e8-47","name":"ParticleOutType.js"},{"uid":"a5cb34e8-49","name":"StartValueType.js"}]},{"uid":"a5cb34e8-29","name":"RangeType.js"},{"uid":"a5cb34e8-51","name":"AnimationStatus.js"}]},{"name":"Utils","children":[{"uid":"a5cb34e8-7","name":"TypeUtils.js"},{"uid":"a5cb34e8-9","name":"MathUtils.js"},{"uid":"a5cb34e8-15","name":"Utils.js"},{"uid":"a5cb34e8-17","name":"EventDispatcher.js"},{"uid":"a5cb34e8-23","name":"LogUtils.js"},{"uid":"a5cb34e8-53","name":"OptionLoader.js"},{"uid":"a5cb34e8-55","name":"OptionsUtils.js"},{"uid":"a5cb34e8-113","name":"ParticlesOptionsLoader.js"},{"uid":"a5cb34e8-117","name":"ColorUtils.js"}]},{"uid":"a5cb34e8-27","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"a5cb34e8-57","name":"AnimationOptions.js"},{"uid":"a5cb34e8-59","name":"ColorAnimation.js"},{"uid":"a5cb34e8-61","name":"HslAnimation.js"},{"uid":"a5cb34e8-63","name":"OptionsColor.js"},{"uid":"a5cb34e8-65","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"a5cb34e8-67"},{"name":"FullScreen/FullScreen.js","uid":"a5cb34e8-69"},{"uid":"a5cb34e8-71","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"a5cb34e8-73"},{"uid":"a5cb34e8-75","name":"Fill.js"},{"name":"Move","children":[{"uid":"a5cb34e8-77","name":"MoveAngle.js"},{"uid":"a5cb34e8-79","name":"MoveCenter.js"},{"uid":"a5cb34e8-81","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"a5cb34e8-85"},{"uid":"a5cb34e8-87","name":"OutModes.js"},{"uid":"a5cb34e8-89","name":"Spin.js"},{"uid":"a5cb34e8-91","name":"Move.js"}]},{"uid":"a5cb34e8-93","name":"Stroke.js"},{"uid":"a5cb34e8-95","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"a5cb34e8-97","name":"ParticlesBounceFactor.js"},{"uid":"a5cb34e8-99","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"a5cb34e8-101","name":"ParticlesDensity.js"},{"uid":"a5cb34e8-103","name":"ParticlesNumberLimit.js"},{"uid":"a5cb34e8-105","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"a5cb34e8-107"},{"name":"ZIndex/ZIndex.js","uid":"a5cb34e8-109"},{"uid":"a5cb34e8-111","name":"ParticlesOptions.js"}]},{"uid":"a5cb34e8-83","name":"ValueWithRandom.js"},{"uid":"a5cb34e8-115","name":"Options.js"}]},{"uid":"a5cb34e8-119","name":"index.js"}]},{"name":"plugins","children":[{"name":"blend/dist/browser","children":[{"name":"Options/Classes/Blend.js","uid":"a5cb34e8-121"},{"uid":"a5cb34e8-123","name":"BlendPlugin.js"},{"uid":"a5cb34e8-125","name":"index.js"},{"uid":"a5cb34e8-205","name":"BlendPluginInstance.js"}]},{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"a5cb34e8-133","name":"HexColorManager.js"},{"uid":"a5cb34e8-135","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"a5cb34e8-137","name":"HslColorManager.js"},{"uid":"a5cb34e8-139","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"a5cb34e8-173","name":"RgbColorManager.js"},{"uid":"a5cb34e8-175","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"a5cb34e8-141","name":"MovePlugin.js"},{"uid":"a5cb34e8-143","name":"index.js"},{"uid":"a5cb34e8-207","name":"Utils.js"},{"uid":"a5cb34e8-209","name":"MovePluginInstance.js"}]}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"a5cb34e8-127","name":"Utils.js"},{"uid":"a5cb34e8-129","name":"CircleDrawer.js"},{"uid":"a5cb34e8-131","name":"index.js"}]},{"name":"utils/animationUtils/dist/browser/Utils.js","uid":"a5cb34e8-145"},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"a5cb34e8-147","name":"OpacityAnimation.js"},{"uid":"a5cb34e8-149","name":"Opacity.js"}]},{"uid":"a5cb34e8-151","name":"OpacityUpdater.js"},{"uid":"a5cb34e8-153","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"a5cb34e8-155","name":"Utils.js"},{"uid":"a5cb34e8-157","name":"BounceOutMode.js"},{"uid":"a5cb34e8-159","name":"DestroyOutMode.js"},{"uid":"a5cb34e8-161","name":"NoneOutMode.js"},{"uid":"a5cb34e8-163","name":"OutOutMode.js"},{"uid":"a5cb34e8-165","name":"OutOfCanvasUpdater.js"},{"uid":"a5cb34e8-167","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"a5cb34e8-169","name":"PaintUpdater.js"},{"uid":"a5cb34e8-171","name":"index.js"}]},{"name":"size/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"a5cb34e8-177","name":"SizeAnimation.js"},{"uid":"a5cb34e8-179","name":"Size.js"}]},{"uid":"a5cb34e8-181","name":"SizeUpdater.js"},{"uid":"a5cb34e8-183","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"a5cb34e8-185","name":"index.js"},{"uid":"a5cb34e8-187","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"a5cb34e8-1":{"renderedLength":1607,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-0"},"a5cb34e8-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-2"},"a5cb34e8-5":{"renderedLength":3212,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-4"},"a5cb34e8-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-6"},"a5cb34e8-9":{"renderedLength":5823,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-8"},"a5cb34e8-11":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-10"},"a5cb34e8-13":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-12"},"a5cb34e8-15":{"renderedLength":9220,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-14"},"a5cb34e8-17":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-16"},"a5cb34e8-19":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-18"},"a5cb34e8-21":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-20"},"a5cb34e8-23":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-22"},"a5cb34e8-25":{"renderedLength":6107,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-24"},"a5cb34e8-27":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-26"},"a5cb34e8-29":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-28"},"a5cb34e8-31":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-30"},"a5cb34e8-33":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-32"},"a5cb34e8-35":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-34"},"a5cb34e8-37":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-36"},"a5cb34e8-39":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-38"},"a5cb34e8-41":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-40"},"a5cb34e8-43":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-42"},"a5cb34e8-45":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-44"},"a5cb34e8-47":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-46"},"a5cb34e8-49":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-48"},"a5cb34e8-51":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-50"},"a5cb34e8-53":{"renderedLength":332,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-52"},"a5cb34e8-55":{"renderedLength":1074,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-54"},"a5cb34e8-57":{"renderedLength":888,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-56"},"a5cb34e8-59":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-58"},"a5cb34e8-61":{"renderedLength":315,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-60"},"a5cb34e8-63":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-62"},"a5cb34e8-65":{"renderedLength":914,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-64"},"a5cb34e8-67":{"renderedLength":743,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-66"},"a5cb34e8-69":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-68"},"a5cb34e8-71":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-70"},"a5cb34e8-73":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-72"},"a5cb34e8-75":{"renderedLength":387,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-74"},"a5cb34e8-77":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-76"},"a5cb34e8-79":{"renderedLength":372,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-78"},"a5cb34e8-81":{"renderedLength":432,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-80"},"a5cb34e8-83":{"renderedLength":590,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-82"},"a5cb34e8-85":{"renderedLength":517,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-84"},"a5cb34e8-87":{"renderedLength":490,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-86"},"a5cb34e8-89":{"renderedLength":381,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-88"},"a5cb34e8-91":{"renderedLength":2028,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-90"},"a5cb34e8-93":{"renderedLength":384,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-92"},"a5cb34e8-95":{"renderedLength":409,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-94"},"a5cb34e8-97":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-96"},"a5cb34e8-99":{"renderedLength":283,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-98"},"a5cb34e8-101":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-100"},"a5cb34e8-103":{"renderedLength":256,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-102"},"a5cb34e8-105":{"renderedLength":331,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-104"},"a5cb34e8-107":{"renderedLength":606,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-106"},"a5cb34e8-109":{"renderedLength":377,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-108"},"a5cb34e8-111":{"renderedLength":5055,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-110"},"a5cb34e8-113":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-112"},"a5cb34e8-115":{"renderedLength":3365,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-114"},"a5cb34e8-117":{"renderedLength":13734,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-116"},"a5cb34e8-119":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-118"},"a5cb34e8-121":{"renderedLength":288,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-120"},"a5cb34e8-123":{"renderedLength":938,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-122"},"a5cb34e8-125":{"renderedLength":209,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-124"},"a5cb34e8-127":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-126"},"a5cb34e8-129":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-128"},"a5cb34e8-131":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-130"},"a5cb34e8-133":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-132"},"a5cb34e8-135":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-134"},"a5cb34e8-137":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-136"},"a5cb34e8-139":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-138"},"a5cb34e8-141":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-140"},"a5cb34e8-143":{"renderedLength":1076,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-142"},"a5cb34e8-145":{"renderedLength":4856,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-144"},"a5cb34e8-147":{"renderedLength":297,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-146"},"a5cb34e8-149":{"renderedLength":409,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-148"},"a5cb34e8-151":{"renderedLength":1886,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-150"},"a5cb34e8-153":{"renderedLength":314,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-152"},"a5cb34e8-155":{"renderedLength":3393,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-154"},"a5cb34e8-157":{"renderedLength":1412,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-156"},"a5cb34e8-159":{"renderedLength":1267,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-158"},"a5cb34e8-161":{"renderedLength":2034,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-160"},"a5cb34e8-163":{"renderedLength":6658,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-162"},"a5cb34e8-165":{"renderedLength":2191,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-164"},"a5cb34e8-167":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-166"},"a5cb34e8-169":{"renderedLength":3448,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-168"},"a5cb34e8-171":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-170"},"a5cb34e8-173":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-172"},"a5cb34e8-175":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-174"},"a5cb34e8-177":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-176"},"a5cb34e8-179":{"renderedLength":403,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-178"},"a5cb34e8-181":{"renderedLength":2045,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-180"},"a5cb34e8-183":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-182"},"a5cb34e8-185":{"renderedLength":577,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-184"},"a5cb34e8-187":{"renderedLength":120,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-186"},"a5cb34e8-189":{"renderedLength":16041,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-188"},"a5cb34e8-191":{"renderedLength":12591,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-190"},"a5cb34e8-193":{"renderedLength":3127,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-192"},"a5cb34e8-195":{"renderedLength":22650,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-194"},"a5cb34e8-197":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-196"},"a5cb34e8-199":{"renderedLength":17468,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-198"},"a5cb34e8-201":{"renderedLength":1506,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-200"},"a5cb34e8-203":{"renderedLength":13446,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-202"},"a5cb34e8-205":{"renderedLength":1301,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-204"},"a5cb34e8-207":{"renderedLength":6752,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-206"},"a5cb34e8-209":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"a5cb34e8-208"}},"nodeMetas":{"a5cb34e8-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-1"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-24"},{"uid":"a5cb34e8-30"},{"uid":"a5cb34e8-4"},{"uid":"a5cb34e8-60"},{"uid":"a5cb34e8-116"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-16"},{"uid":"a5cb34e8-202"},{"uid":"a5cb34e8-190"},{"uid":"a5cb34e8-192"},{"uid":"a5cb34e8-198"},{"uid":"a5cb34e8-200"},{"uid":"a5cb34e8-188"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-3"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-90"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-5"},"imported":[{"uid":"a5cb34e8-0"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-7"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-64"},{"uid":"a5cb34e8-114"},{"uid":"a5cb34e8-62"},{"uid":"a5cb34e8-110"},{"uid":"a5cb34e8-90"},{"uid":"a5cb34e8-82"},{"uid":"a5cb34e8-116"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-14"}]},"a5cb34e8-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-9"},"imported":[{"uid":"a5cb34e8-2"},{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-4"},{"uid":"a5cb34e8-6"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-24"},{"uid":"a5cb34e8-30"},{"uid":"a5cb34e8-82"},{"uid":"a5cb34e8-116"},{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-202"},{"uid":"a5cb34e8-200"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-11"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-13"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-78"},{"uid":"a5cb34e8-14"}]},"a5cb34e8-14":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-15"},"imported":[{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-6"},{"uid":"a5cb34e8-10"},{"uid":"a5cb34e8-12"},{"uid":"a5cb34e8-4"},{"uid":"a5cb34e8-0"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-24"},{"uid":"a5cb34e8-114"},{"uid":"a5cb34e8-110"},{"uid":"a5cb34e8-84"},{"uid":"a5cb34e8-88"},{"uid":"a5cb34e8-106"},{"uid":"a5cb34e8-116"},{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-20"},{"uid":"a5cb34e8-72"},{"uid":"a5cb34e8-190"},{"uid":"a5cb34e8-192"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-16":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-17"},"imported":[{"uid":"a5cb34e8-0"}],"importedBy":[{"uid":"a5cb34e8-24"}]},"a5cb34e8-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-19"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-20"},{"uid":"a5cb34e8-202"},{"uid":"a5cb34e8-198"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-20":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-21"},"imported":[{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-18"}],"importedBy":[{"uid":"a5cb34e8-24"}]},"a5cb34e8-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-23"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-24"},{"uid":"a5cb34e8-202"},{"uid":"a5cb34e8-198"}]},"a5cb34e8-24":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-25"},"imported":[{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-16"},{"uid":"a5cb34e8-20"},{"uid":"a5cb34e8-22"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-202","dynamic":true}],"importedBy":[{"uid":"a5cb34e8-26"}]},"a5cb34e8-26":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-27"},"imported":[{"uid":"a5cb34e8-24"}],"importedBy":[{"uid":"a5cb34e8-118"}]},"a5cb34e8-28":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-29"},"imported":[],"importedBy":[{"uid":"a5cb34e8-30"}]},"a5cb34e8-30":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-31"},"imported":[{"uid":"a5cb34e8-28"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-0"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-196"}]},"a5cb34e8-32":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-33"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"}]},"a5cb34e8-34":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-35"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-56"}]},"a5cb34e8-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-37"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-102"},{"uid":"a5cb34e8-198"}]},"a5cb34e8-38":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-39"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-86"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-41"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-116"}]},"a5cb34e8-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-43"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"}]},"a5cb34e8-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-45"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"}]},"a5cb34e8-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-47"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-49"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-56"}]},"a5cb34e8-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-51"},"imported":[],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-116"}]},"a5cb34e8-52":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionLoader.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-53"},"imported":[{"uid":"a5cb34e8-6"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-56"},{"uid":"a5cb34e8-60"},{"uid":"a5cb34e8-114"},{"uid":"a5cb34e8-62"},{"uid":"a5cb34e8-98"},{"uid":"a5cb34e8-110"},{"uid":"a5cb34e8-74"},{"uid":"a5cb34e8-94"},{"uid":"a5cb34e8-92"},{"uid":"a5cb34e8-90"},{"uid":"a5cb34e8-76"},{"uid":"a5cb34e8-78"},{"uid":"a5cb34e8-80"},{"uid":"a5cb34e8-86"},{"uid":"a5cb34e8-84"},{"uid":"a5cb34e8-88"},{"uid":"a5cb34e8-104"},{"uid":"a5cb34e8-102"},{"uid":"a5cb34e8-100"},{"uid":"a5cb34e8-106"},{"uid":"a5cb34e8-82"},{"uid":"a5cb34e8-112"},{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-72"}]},"a5cb34e8-54":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-55"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-8"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-56"},{"uid":"a5cb34e8-66"},{"uid":"a5cb34e8-58"},{"uid":"a5cb34e8-68"},{"uid":"a5cb34e8-114"},{"uid":"a5cb34e8-74"},{"uid":"a5cb34e8-94"},{"uid":"a5cb34e8-92"},{"uid":"a5cb34e8-90"},{"uid":"a5cb34e8-76"},{"uid":"a5cb34e8-78"},{"uid":"a5cb34e8-80"},{"uid":"a5cb34e8-84"},{"uid":"a5cb34e8-88"},{"uid":"a5cb34e8-104"},{"uid":"a5cb34e8-102"},{"uid":"a5cb34e8-100"},{"uid":"a5cb34e8-106"},{"uid":"a5cb34e8-108"},{"uid":"a5cb34e8-70"},{"uid":"a5cb34e8-82"},{"uid":"a5cb34e8-202"},{"uid":"a5cb34e8-72"}]},"a5cb34e8-56":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-57"},"imported":[{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-34"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-48"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-58"},{"uid":"a5cb34e8-82"}]},"a5cb34e8-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-59"},"imported":[{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-56"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-60"}]},"a5cb34e8-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-61"},"imported":[{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-58"},{"uid":"a5cb34e8-52"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-64"}]},"a5cb34e8-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-63"},"imported":[{"uid":"a5cb34e8-6"},{"uid":"a5cb34e8-52"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-64"},{"uid":"a5cb34e8-66"}]},"a5cb34e8-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-65"},"imported":[{"uid":"a5cb34e8-6"},{"uid":"a5cb34e8-60"},{"uid":"a5cb34e8-62"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"},{"uid":"a5cb34e8-74"},{"uid":"a5cb34e8-94"},{"uid":"a5cb34e8-92"}]},"a5cb34e8-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-67"},"imported":[{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-62"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-114"}]},"a5cb34e8-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-69"},"imported":[{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-114"}]},"a5cb34e8-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-71"},"imported":[{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-114"}]},"a5cb34e8-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-73"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-110"}]},"a5cb34e8-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-75"},"imported":[{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-64"},{"uid":"a5cb34e8-52"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"},{"uid":"a5cb34e8-94"}]},"a5cb34e8-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-77"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-90"}]},"a5cb34e8-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-79"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-12"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-90"}]},"a5cb34e8-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-81"},"imported":[{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-52"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-90"}]},"a5cb34e8-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-83"},"imported":[{"uid":"a5cb34e8-56"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-6"},{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-8"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-96"},{"uid":"a5cb34e8-84"},{"uid":"a5cb34e8-108"}]},"a5cb34e8-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-85"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-82"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-90"}]},"a5cb34e8-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-87"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-38"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-90"}]},"a5cb34e8-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-89"},"imported":[{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-14"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-90"}]},"a5cb34e8-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-91"},"imported":[{"uid":"a5cb34e8-2"},{"uid":"a5cb34e8-6"},{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-76"},{"uid":"a5cb34e8-78"},{"uid":"a5cb34e8-80"},{"uid":"a5cb34e8-84"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-86"},{"uid":"a5cb34e8-88"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"}]},"a5cb34e8-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-93"},"imported":[{"uid":"a5cb34e8-64"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-94"}]},"a5cb34e8-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-95"},"imported":[{"uid":"a5cb34e8-64"},{"uid":"a5cb34e8-74"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-92"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"}]},"a5cb34e8-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-97"},"imported":[{"uid":"a5cb34e8-82"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-98"}]},"a5cb34e8-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-99"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-96"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"}]},"a5cb34e8-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-101"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-104"}]},"a5cb34e8-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-103"},"imported":[{"uid":"a5cb34e8-36"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-104"}]},"a5cb34e8-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-105"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-100"},{"uid":"a5cb34e8-102"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"}]},"a5cb34e8-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-107"},"imported":[{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"}]},"a5cb34e8-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-109"},"imported":[{"uid":"a5cb34e8-82"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-110"}]},"a5cb34e8-110":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-111"},"imported":[{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-64"},{"uid":"a5cb34e8-72"},{"uid":"a5cb34e8-74"},{"uid":"a5cb34e8-90"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-94"},{"uid":"a5cb34e8-98"},{"uid":"a5cb34e8-104"},{"uid":"a5cb34e8-106"},{"uid":"a5cb34e8-108"},{"uid":"a5cb34e8-6"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-112"}]},"a5cb34e8-112":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ParticlesOptionsLoader.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-113"},"imported":[{"uid":"a5cb34e8-110"},{"uid":"a5cb34e8-52"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-114"},{"uid":"a5cb34e8-198"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-114":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-115"},"imported":[{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-66"},{"uid":"a5cb34e8-68"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-70"},{"uid":"a5cb34e8-6"},{"uid":"a5cb34e8-112"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-202"}]},"a5cb34e8-116":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-117"},"imported":[{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-6"},{"uid":"a5cb34e8-40"},{"uid":"a5cb34e8-50"},{"uid":"a5cb34e8-14"}],"importedBy":[{"uid":"a5cb34e8-210"},{"uid":"a5cb34e8-190"},{"uid":"a5cb34e8-188"},{"uid":"a5cb34e8-194"}]},"a5cb34e8-118":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-119"},"imported":[{"uid":"a5cb34e8-26"},{"uid":"a5cb34e8-210"}],"importedBy":[{"uid":"a5cb34e8-186"},{"uid":"a5cb34e8-142"},{"uid":"a5cb34e8-128"},{"uid":"a5cb34e8-136"},{"uid":"a5cb34e8-150"},{"uid":"a5cb34e8-164"},{"uid":"a5cb34e8-168"},{"uid":"a5cb34e8-172"},{"uid":"a5cb34e8-180"},{"uid":"a5cb34e8-120"},{"uid":"a5cb34e8-204"},{"uid":"a5cb34e8-126"},{"uid":"a5cb34e8-208"},{"uid":"a5cb34e8-148"},{"uid":"a5cb34e8-156"},{"uid":"a5cb34e8-158"},{"uid":"a5cb34e8-160"},{"uid":"a5cb34e8-162"},{"uid":"a5cb34e8-178"},{"uid":"a5cb34e8-206"},{"uid":"a5cb34e8-144"},{"uid":"a5cb34e8-146"},{"uid":"a5cb34e8-154"},{"uid":"a5cb34e8-176"}]},"a5cb34e8-120":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/Options/Classes/Blend.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-121"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-122"}]},"a5cb34e8-122":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-123"},"imported":[{"uid":"a5cb34e8-120"},{"uid":"a5cb34e8-204","dynamic":true}],"importedBy":[{"uid":"a5cb34e8-124"}]},"a5cb34e8-124":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-125"},"imported":[{"uid":"a5cb34e8-122"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-126":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-127"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-128"}]},"a5cb34e8-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-129"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-126"}],"importedBy":[{"uid":"a5cb34e8-130"}]},"a5cb34e8-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-131"},"imported":[{"uid":"a5cb34e8-128"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-132":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-133"},"imported":[],"importedBy":[{"uid":"a5cb34e8-134"}]},"a5cb34e8-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-135"},"imported":[{"uid":"a5cb34e8-132"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-136":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-137"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-138"}]},"a5cb34e8-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-139"},"imported":[{"uid":"a5cb34e8-136"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-140":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-141"},"imported":[{"uid":"a5cb34e8-208","dynamic":true}],"importedBy":[{"uid":"a5cb34e8-142"}]},"a5cb34e8-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-143"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-140"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-144":{"id":"/home/workflows/workspace/utils/animationUtils/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-145"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-211"}]},"a5cb34e8-146":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-147"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-148"}]},"a5cb34e8-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-149"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-146"}],"importedBy":[{"uid":"a5cb34e8-150"}]},"a5cb34e8-150":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-151"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-211"},{"uid":"a5cb34e8-148"}],"importedBy":[{"uid":"a5cb34e8-152"}]},"a5cb34e8-152":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-153"},"imported":[{"uid":"a5cb34e8-150"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-154":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-155"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-156"}]},"a5cb34e8-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-157"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-154"}],"importedBy":[{"uid":"a5cb34e8-164"}]},"a5cb34e8-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-159"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-164"}]},"a5cb34e8-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-161"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-164"}]},"a5cb34e8-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-163"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-164"}]},"a5cb34e8-164":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-165"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-156"},{"uid":"a5cb34e8-158"},{"uid":"a5cb34e8-160"},{"uid":"a5cb34e8-162"}],"importedBy":[{"uid":"a5cb34e8-166"}]},"a5cb34e8-166":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-167"},"imported":[{"uid":"a5cb34e8-164"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-168":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-169"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-170"}]},"a5cb34e8-170":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-171"},"imported":[{"uid":"a5cb34e8-168"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-172":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-173"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-174"}]},"a5cb34e8-174":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-175"},"imported":[{"uid":"a5cb34e8-172"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-176":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-177"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-178"}]},"a5cb34e8-178":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-179"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-176"}],"importedBy":[{"uid":"a5cb34e8-180"}]},"a5cb34e8-180":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-181"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-211"},{"uid":"a5cb34e8-178"}],"importedBy":[{"uid":"a5cb34e8-182"}]},"a5cb34e8-182":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-183"},"imported":[{"uid":"a5cb34e8-180"}],"importedBy":[{"uid":"a5cb34e8-184"}]},"a5cb34e8-184":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-185"},"imported":[{"uid":"a5cb34e8-124"},{"uid":"a5cb34e8-130"},{"uid":"a5cb34e8-134"},{"uid":"a5cb34e8-138"},{"uid":"a5cb34e8-142"},{"uid":"a5cb34e8-152"},{"uid":"a5cb34e8-166"},{"uid":"a5cb34e8-170"},{"uid":"a5cb34e8-174"},{"uid":"a5cb34e8-182"}],"importedBy":[{"uid":"a5cb34e8-186"}]},"a5cb34e8-186":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-187"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-184"}],"importedBy":[],"isEntry":true},"a5cb34e8-188":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-189"},"imported":[{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-116"}],"importedBy":[{"uid":"a5cb34e8-190"}]},"a5cb34e8-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-191"},"imported":[{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-116"},{"uid":"a5cb34e8-188"}],"importedBy":[{"uid":"a5cb34e8-202"}]},"a5cb34e8-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-193"},"imported":[{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-0"}],"importedBy":[{"uid":"a5cb34e8-202"}]},"a5cb34e8-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-195"},"imported":[{"uid":"a5cb34e8-4"},{"uid":"a5cb34e8-116"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-18"},{"uid":"a5cb34e8-2"},{"uid":"a5cb34e8-38"},{"uid":"a5cb34e8-10"},{"uid":"a5cb34e8-46"},{"uid":"a5cb34e8-112"}],"importedBy":[{"uid":"a5cb34e8-198"}]},"a5cb34e8-196":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-197"},"imported":[{"uid":"a5cb34e8-30"}],"importedBy":[{"uid":"a5cb34e8-198"}]},"a5cb34e8-198":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-199"},"imported":[{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-18"},{"uid":"a5cb34e8-36"},{"uid":"a5cb34e8-194"},{"uid":"a5cb34e8-196"},{"uid":"a5cb34e8-22"},{"uid":"a5cb34e8-112"}],"importedBy":[{"uid":"a5cb34e8-202"}]},"a5cb34e8-200":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-201"},"imported":[{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-8"}],"importedBy":[{"uid":"a5cb34e8-202"}]},"a5cb34e8-202":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-203"},"imported":[{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-190"},{"uid":"a5cb34e8-192"},{"uid":"a5cb34e8-18"},{"uid":"a5cb34e8-114"},{"uid":"a5cb34e8-198"},{"uid":"a5cb34e8-200"},{"uid":"a5cb34e8-22"},{"uid":"a5cb34e8-54"}],"importedBy":[{"uid":"a5cb34e8-24"}]},"a5cb34e8-204":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-205"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-122"}]},"a5cb34e8-206":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-207"},"imported":[{"uid":"a5cb34e8-118"}],"importedBy":[{"uid":"a5cb34e8-208"}]},"a5cb34e8-208":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"a5cb34e8-209"},"imported":[{"uid":"a5cb34e8-118"},{"uid":"a5cb34e8-206"}],"importedBy":[{"uid":"a5cb34e8-140"}]},"a5cb34e8-210":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"a5cb34e8-0"},{"uid":"a5cb34e8-30"},{"uid":"a5cb34e8-4"},{"uid":"a5cb34e8-2"},{"uid":"a5cb34e8-32"},{"uid":"a5cb34e8-10"},{"uid":"a5cb34e8-34"},{"uid":"a5cb34e8-36"},{"uid":"a5cb34e8-38"},{"uid":"a5cb34e8-12"},{"uid":"a5cb34e8-40"},{"uid":"a5cb34e8-42"},{"uid":"a5cb34e8-44"},{"uid":"a5cb34e8-46"},{"uid":"a5cb34e8-48"},{"uid":"a5cb34e8-18"},{"uid":"a5cb34e8-50"},{"uid":"a5cb34e8-64"},{"uid":"a5cb34e8-56"},{"uid":"a5cb34e8-66"},{"uid":"a5cb34e8-58"},{"uid":"a5cb34e8-68"},{"uid":"a5cb34e8-60"},{"uid":"a5cb34e8-114"},{"uid":"a5cb34e8-62"},{"uid":"a5cb34e8-98"},{"uid":"a5cb34e8-96"},{"uid":"a5cb34e8-110"},{"uid":"a5cb34e8-74"},{"uid":"a5cb34e8-94"},{"uid":"a5cb34e8-92"},{"uid":"a5cb34e8-90"},{"uid":"a5cb34e8-76"},{"uid":"a5cb34e8-78"},{"uid":"a5cb34e8-80"},{"uid":"a5cb34e8-86"},{"uid":"a5cb34e8-84"},{"uid":"a5cb34e8-88"},{"uid":"a5cb34e8-104"},{"uid":"a5cb34e8-102"},{"uid":"a5cb34e8-100"},{"uid":"a5cb34e8-106"},{"uid":"a5cb34e8-108"},{"uid":"a5cb34e8-70"},{"uid":"a5cb34e8-82"},{"uid":"a5cb34e8-116"},{"uid":"a5cb34e8-22"},{"uid":"a5cb34e8-8"},{"uid":"a5cb34e8-52"},{"uid":"a5cb34e8-112"},{"uid":"a5cb34e8-54"},{"uid":"a5cb34e8-14"},{"uid":"a5cb34e8-6"}],"importedBy":[{"uid":"a5cb34e8-118"}]},"a5cb34e8-211":{"id":"/home/workflows/workspace/utils/animationUtils/dist/browser/index.js","moduleParts":{},"imported":[{"uid":"a5cb34e8-144"}],"importedBy":[{"uid":"a5cb34e8-150"},{"uid":"a5cb34e8-180"}]}},"env":{"rollup":"4.62.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4934
4934
 
4935
4935
  const run = () => {
4936
4936
  const width = window.innerWidth;