@tsparticles/basic 4.0.0-beta.16 → 4.0.0-beta.17
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 +1 -1
- package/browser/index.lazy.js +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.lazy.js +1 -1
- package/esm/index.js +1 -1
- package/esm/index.lazy.js +1 -1
- package/package.json +11 -11
- package/report.html +1 -1
- package/tsparticles.basic.bundle.js +255 -136
- package/tsparticles.basic.bundle.min.js +1 -1
- package/tsparticles.basic.js +2 -2
- package/tsparticles.basic.min.js +1 -1
package/browser/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
|
|
|
8
8
|
import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
|
|
9
9
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
10
10
|
export async function loadBasic(engine) {
|
|
11
|
-
engine.checkVersion("4.0.0-beta.
|
|
11
|
+
engine.checkVersion("4.0.0-beta.17");
|
|
12
12
|
await engine.pluginManager.register(async (e) => {
|
|
13
13
|
await Promise.all([
|
|
14
14
|
loadHexColorPlugin(e),
|
package/browser/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadBasic(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-beta.
|
|
2
|
+
engine.checkVersion("4.0.0-beta.17");
|
|
3
3
|
await engine.pluginManager.register(async (e) => {
|
|
4
4
|
const [{ loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
|
|
5
5
|
import("@tsparticles/plugin-hex-color/lazy"),
|
package/cjs/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
|
|
|
8
8
|
import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
|
|
9
9
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
10
10
|
export async function loadBasic(engine) {
|
|
11
|
-
engine.checkVersion("4.0.0-beta.
|
|
11
|
+
engine.checkVersion("4.0.0-beta.17");
|
|
12
12
|
await engine.pluginManager.register(async (e) => {
|
|
13
13
|
await Promise.all([
|
|
14
14
|
loadHexColorPlugin(e),
|
package/cjs/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadBasic(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-beta.
|
|
2
|
+
engine.checkVersion("4.0.0-beta.17");
|
|
3
3
|
await engine.pluginManager.register(async (e) => {
|
|
4
4
|
const [{ loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
|
|
5
5
|
import("@tsparticles/plugin-hex-color/lazy"),
|
package/esm/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
|
|
|
8
8
|
import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
|
|
9
9
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
10
10
|
export async function loadBasic(engine) {
|
|
11
|
-
engine.checkVersion("4.0.0-beta.
|
|
11
|
+
engine.checkVersion("4.0.0-beta.17");
|
|
12
12
|
await engine.pluginManager.register(async (e) => {
|
|
13
13
|
await Promise.all([
|
|
14
14
|
loadHexColorPlugin(e),
|
package/esm/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadBasic(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-beta.
|
|
2
|
+
engine.checkVersion("4.0.0-beta.17");
|
|
3
3
|
await engine.pluginManager.register(async (e) => {
|
|
4
4
|
const [{ loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
|
|
5
5
|
import("@tsparticles/plugin-hex-color/lazy"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/basic",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.17",
|
|
4
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.",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -105,16 +105,16 @@
|
|
|
105
105
|
"./package.json": "./package.json"
|
|
106
106
|
},
|
|
107
107
|
"dependencies": {
|
|
108
|
-
"@tsparticles/engine": "4.0.0-beta.
|
|
109
|
-
"@tsparticles/plugin-hex-color": "4.0.0-beta.
|
|
110
|
-
"@tsparticles/plugin-hsl-color": "4.0.0-beta.
|
|
111
|
-
"@tsparticles/plugin-move": "4.0.0-beta.
|
|
112
|
-
"@tsparticles/plugin-rgb-color": "4.0.0-beta.
|
|
113
|
-
"@tsparticles/shape-circle": "4.0.0-beta.
|
|
114
|
-
"@tsparticles/updater-opacity": "4.0.0-beta.
|
|
115
|
-
"@tsparticles/updater-out-modes": "4.0.0-beta.
|
|
116
|
-
"@tsparticles/updater-paint": "4.0.0-beta.
|
|
117
|
-
"@tsparticles/updater-size": "4.0.0-beta.
|
|
108
|
+
"@tsparticles/engine": "4.0.0-beta.17",
|
|
109
|
+
"@tsparticles/plugin-hex-color": "4.0.0-beta.17",
|
|
110
|
+
"@tsparticles/plugin-hsl-color": "4.0.0-beta.17",
|
|
111
|
+
"@tsparticles/plugin-move": "4.0.0-beta.17",
|
|
112
|
+
"@tsparticles/plugin-rgb-color": "4.0.0-beta.17",
|
|
113
|
+
"@tsparticles/shape-circle": "4.0.0-beta.17",
|
|
114
|
+
"@tsparticles/updater-opacity": "4.0.0-beta.17",
|
|
115
|
+
"@tsparticles/updater-out-modes": "4.0.0-beta.17",
|
|
116
|
+
"@tsparticles/updater-paint": "4.0.0-beta.17",
|
|
117
|
+
"@tsparticles/updater-size": "4.0.0-beta.17"
|
|
118
118
|
},
|
|
119
119
|
"publishConfig": {
|
|
120
120
|
"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":"dc054bf8-1","name":"Constants.js"},{"uid":"dc054bf8-5","name":"Vectors.js"},{"uid":"dc054bf8-29","name":"PluginManager.js"},{"uid":"dc054bf8-39","name":"Ranges.js"},{"uid":"dc054bf8-185","name":"EventListeners.js"},{"uid":"dc054bf8-189","name":"SpatialHashGrid.js"}]},{"uid":"dc054bf8-33","name":"Engine.js"},{"uid":"dc054bf8-181","name":"RenderManager.js"},{"uid":"dc054bf8-183","name":"CanvasManager.js"},{"uid":"dc054bf8-187","name":"Particle.js"},{"uid":"dc054bf8-191","name":"ParticlesManager.js"},{"uid":"dc054bf8-193","name":"Retina.js"},{"uid":"dc054bf8-195","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"dc054bf8-3","name":"MoveDirection.js"},{"uid":"dc054bf8-17","name":"OutModeDirection.js"},{"uid":"dc054bf8-41","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"dc054bf8-11","name":"AnimationMode.js"},{"uid":"dc054bf8-19","name":"PixelMode.js"},{"uid":"dc054bf8-43","name":"LimitMode.js"},{"uid":"dc054bf8-45","name":"OutMode.js"}]},{"uid":"dc054bf8-13","name":"AnimationStatus.js"},{"name":"Types","children":[{"uid":"dc054bf8-15","name":"DestroyType.js"},{"uid":"dc054bf8-21","name":"StartValueType.js"},{"uid":"dc054bf8-27","name":"EventType.js"},{"uid":"dc054bf8-47","name":"AlterType.js"},{"uid":"dc054bf8-49","name":"GradientType.js"},{"uid":"dc054bf8-51","name":"ParticleOutType.js"},{"uid":"dc054bf8-53","name":"EasingType.js"}]},{"uid":"dc054bf8-37","name":"RangeType.js"}]},{"name":"Utils","children":[{"uid":"dc054bf8-7","name":"TypeUtils.js"},{"uid":"dc054bf8-9","name":"MathUtils.js"},{"uid":"dc054bf8-23","name":"Utils.js"},{"uid":"dc054bf8-25","name":"EventDispatcher.js"},{"uid":"dc054bf8-31","name":"LogUtils.js"},{"uid":"dc054bf8-119","name":"OptionsUtils.js"},{"uid":"dc054bf8-123","name":"CanvasUtils.js"},{"uid":"dc054bf8-125","name":"ColorUtils.js"}]},{"uid":"dc054bf8-35","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"dc054bf8-55","name":"AnimationOptions.js"},{"uid":"dc054bf8-57","name":"ColorAnimation.js"},{"uid":"dc054bf8-59","name":"HslAnimation.js"},{"uid":"dc054bf8-61","name":"OptionsColor.js"},{"uid":"dc054bf8-63","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"dc054bf8-65"},{"name":"FullScreen/FullScreen.js","uid":"dc054bf8-67"},{"uid":"dc054bf8-69","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"dc054bf8-71"},{"uid":"dc054bf8-73","name":"Fill.js"},{"name":"Move","children":[{"uid":"dc054bf8-75","name":"MoveAngle.js"},{"uid":"dc054bf8-77","name":"MoveCenter.js"},{"uid":"dc054bf8-79","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"dc054bf8-83"},{"uid":"dc054bf8-85","name":"OutModes.js"},{"uid":"dc054bf8-87","name":"Spin.js"},{"uid":"dc054bf8-89","name":"Move.js"}]},{"name":"Opacity","children":[{"uid":"dc054bf8-91","name":"OpacityAnimation.js"},{"uid":"dc054bf8-93","name":"Opacity.js"}]},{"uid":"dc054bf8-95","name":"Stroke.js"},{"uid":"dc054bf8-97","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"dc054bf8-99","name":"ParticlesBounceFactor.js"},{"uid":"dc054bf8-101","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"dc054bf8-103","name":"ParticlesDensity.js"},{"uid":"dc054bf8-105","name":"ParticlesNumberLimit.js"},{"uid":"dc054bf8-107","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"dc054bf8-109"},{"name":"Size","children":[{"uid":"dc054bf8-111","name":"SizeAnimation.js"},{"uid":"dc054bf8-113","name":"Size.js"}]},{"name":"ZIndex/ZIndex.js","uid":"dc054bf8-115"},{"uid":"dc054bf8-117","name":"ParticlesOptions.js"}]},{"uid":"dc054bf8-81","name":"ValueWithRandom.js"},{"uid":"dc054bf8-121","name":"Options.js"}]},{"uid":"dc054bf8-127","name":"index.js"}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"dc054bf8-129","name":"Utils.js"},{"uid":"dc054bf8-131","name":"CircleDrawer.js"},{"uid":"dc054bf8-133","name":"index.js"}]},{"name":"plugins","children":[{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"dc054bf8-135","name":"HexColorManager.js"},{"uid":"dc054bf8-137","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"dc054bf8-139","name":"HslColorManager.js"},{"uid":"dc054bf8-141","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"dc054bf8-169","name":"RgbColorManager.js"},{"uid":"dc054bf8-171","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"dc054bf8-143","name":"MovePlugin.js"},{"uid":"dc054bf8-145","name":"index.js"},{"uid":"dc054bf8-197","name":"Utils.js"},{"uid":"dc054bf8-199","name":"MovePluginInstance.js"}]}]},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"uid":"dc054bf8-147","name":"OpacityUpdater.js"},{"uid":"dc054bf8-149","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"dc054bf8-151","name":"Utils.js"},{"uid":"dc054bf8-153","name":"BounceOutMode.js"},{"uid":"dc054bf8-155","name":"DestroyOutMode.js"},{"uid":"dc054bf8-157","name":"NoneOutMode.js"},{"uid":"dc054bf8-159","name":"OutOutMode.js"},{"uid":"dc054bf8-161","name":"OutOfCanvasUpdater.js"},{"uid":"dc054bf8-163","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"dc054bf8-165","name":"PaintUpdater.js"},{"uid":"dc054bf8-167","name":"index.js"}]},{"name":"size/dist/browser","children":[{"uid":"dc054bf8-173","name":"SizeUpdater.js"},{"uid":"dc054bf8-175","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"dc054bf8-177","name":"index.js"},{"uid":"dc054bf8-179","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"dc054bf8-1":{"renderedLength":1562,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-0"},"dc054bf8-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-2"},"dc054bf8-5":{"renderedLength":3316,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-4"},"dc054bf8-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-6"},"dc054bf8-9":{"renderedLength":6134,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-8"},"dc054bf8-11":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-10"},"dc054bf8-13":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-12"},"dc054bf8-15":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-14"},"dc054bf8-17":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-16"},"dc054bf8-19":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-18"},"dc054bf8-21":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-20"},"dc054bf8-23":{"renderedLength":17344,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-22"},"dc054bf8-25":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-24"},"dc054bf8-27":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-26"},"dc054bf8-29":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-28"},"dc054bf8-31":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-30"},"dc054bf8-33":{"renderedLength":5796,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-32"},"dc054bf8-35":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-34"},"dc054bf8-37":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-36"},"dc054bf8-39":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-38"},"dc054bf8-41":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-40"},"dc054bf8-43":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-42"},"dc054bf8-45":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-44"},"dc054bf8-47":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-46"},"dc054bf8-49":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-48"},"dc054bf8-51":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-50"},"dc054bf8-53":{"renderedLength":2524,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-52"},"dc054bf8-55":{"renderedLength":1698,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-54"},"dc054bf8-57":{"renderedLength":711,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-56"},"dc054bf8-59":{"renderedLength":362,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-58"},"dc054bf8-61":{"renderedLength":708,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-60"},"dc054bf8-63":{"renderedLength":1063,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-62"},"dc054bf8-65":{"renderedLength":1129,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-64"},"dc054bf8-67":{"renderedLength":460,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-66"},"dc054bf8-69":{"renderedLength":458,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-68"},"dc054bf8-71":{"renderedLength":850,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-70"},"dc054bf8-73":{"renderedLength":624,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-72"},"dc054bf8-75":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-74"},"dc054bf8-77":{"renderedLength":717,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-76"},"dc054bf8-79":{"renderedLength":839,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-78"},"dc054bf8-81":{"renderedLength":989,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-80"},"dc054bf8-83":{"renderedLength":790,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-82"},"dc054bf8-85":{"renderedLength":597,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-84"},"dc054bf8-87":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-86"},"dc054bf8-89":{"renderedLength":3032,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-88"},"dc054bf8-91":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-90"},"dc054bf8-93":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-92"},"dc054bf8-95":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-94"},"dc054bf8-97":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-96"},"dc054bf8-99":{"renderedLength":146,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-98"},"dc054bf8-101":{"renderedLength":420,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-100"},"dc054bf8-103":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-102"},"dc054bf8-105":{"renderedLength":475,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-104"},"dc054bf8-107":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-106"},"dc054bf8-109":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-108"},"dc054bf8-111":{"renderedLength":451,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-110"},"dc054bf8-113":{"renderedLength":495,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-112"},"dc054bf8-115":{"renderedLength":740,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-114"},"dc054bf8-117":{"renderedLength":5488,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-116"},"dc054bf8-119":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-118"},"dc054bf8-121":{"renderedLength":4492,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-120"},"dc054bf8-123":{"renderedLength":4116,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-122"},"dc054bf8-125":{"renderedLength":14196,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-124"},"dc054bf8-127":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-126"},"dc054bf8-129":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-128"},"dc054bf8-131":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-130"},"dc054bf8-133":{"renderedLength":292,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-132"},"dc054bf8-135":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-134"},"dc054bf8-137":{"renderedLength":237,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-136"},"dc054bf8-139":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-138"},"dc054bf8-141":{"renderedLength":237,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-140"},"dc054bf8-143":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-142"},"dc054bf8-145":{"renderedLength":1084,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-144"},"dc054bf8-147":{"renderedLength":1655,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-146"},"dc054bf8-149":{"renderedLength":322,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-148"},"dc054bf8-151":{"renderedLength":3630,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-150"},"dc054bf8-153":{"renderedLength":1313,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-152"},"dc054bf8-155":{"renderedLength":1456,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-154"},"dc054bf8-157":{"renderedLength":2068,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-156"},"dc054bf8-159":{"renderedLength":6747,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-158"},"dc054bf8-161":{"renderedLength":2202,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-160"},"dc054bf8-163":{"renderedLength":328,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-162"},"dc054bf8-165":{"renderedLength":3448,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-164"},"dc054bf8-167":{"renderedLength":333,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-166"},"dc054bf8-169":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-168"},"dc054bf8-171":{"renderedLength":237,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-170"},"dc054bf8-173":{"renderedLength":1388,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-172"},"dc054bf8-175":{"renderedLength":313,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-174"},"dc054bf8-177":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-176"},"dc054bf8-179":{"renderedLength":161,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-178"},"dc054bf8-181":{"renderedLength":11692,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-180"},"dc054bf8-183":{"renderedLength":11052,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-182"},"dc054bf8-185":{"renderedLength":3132,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-184"},"dc054bf8-187":{"renderedLength":18252,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-186"},"dc054bf8-189":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-188"},"dc054bf8-191":{"renderedLength":14586,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-190"},"dc054bf8-193":{"renderedLength":1621,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-192"},"dc054bf8-195":{"renderedLength":13443,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-194"},"dc054bf8-197":{"renderedLength":6783,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-196"},"dc054bf8-199":{"renderedLength":3830,"gzipLength":0,"brotliLength":0,"metaUid":"dc054bf8-198"}},"nodeMetas":{"dc054bf8-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-1"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-32"},{"uid":"dc054bf8-38"},{"uid":"dc054bf8-4"},{"uid":"dc054bf8-58"},{"uid":"dc054bf8-122"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-24"},{"uid":"dc054bf8-194"},{"uid":"dc054bf8-182"},{"uid":"dc054bf8-184"},{"uid":"dc054bf8-190"},{"uid":"dc054bf8-192"},{"uid":"dc054bf8-180"},{"uid":"dc054bf8-186"}]},"dc054bf8-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-3"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-88"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-186"}]},"dc054bf8-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-5"},"imported":[{"uid":"dc054bf8-0"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-186"}]},"dc054bf8-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-7"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-62"},{"uid":"dc054bf8-54"},{"uid":"dc054bf8-64"},{"uid":"dc054bf8-56"},{"uid":"dc054bf8-66"},{"uid":"dc054bf8-58"},{"uid":"dc054bf8-120"},{"uid":"dc054bf8-60"},{"uid":"dc054bf8-100"},{"uid":"dc054bf8-116"},{"uid":"dc054bf8-72"},{"uid":"dc054bf8-96"},{"uid":"dc054bf8-94"},{"uid":"dc054bf8-88"},{"uid":"dc054bf8-74"},{"uid":"dc054bf8-76"},{"uid":"dc054bf8-78"},{"uid":"dc054bf8-84"},{"uid":"dc054bf8-82"},{"uid":"dc054bf8-86"},{"uid":"dc054bf8-106"},{"uid":"dc054bf8-104"},{"uid":"dc054bf8-102"},{"uid":"dc054bf8-92"},{"uid":"dc054bf8-90"},{"uid":"dc054bf8-108"},{"uid":"dc054bf8-112"},{"uid":"dc054bf8-110"},{"uid":"dc054bf8-114"},{"uid":"dc054bf8-68"},{"uid":"dc054bf8-80"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-70"}]},"dc054bf8-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-9"},"imported":[{"uid":"dc054bf8-2"},{"uid":"dc054bf8-0"},{"uid":"dc054bf8-4"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-32"},{"uid":"dc054bf8-38"},{"uid":"dc054bf8-54"},{"uid":"dc054bf8-56"},{"uid":"dc054bf8-120"},{"uid":"dc054bf8-72"},{"uid":"dc054bf8-94"},{"uid":"dc054bf8-88"},{"uid":"dc054bf8-74"},{"uid":"dc054bf8-78"},{"uid":"dc054bf8-86"},{"uid":"dc054bf8-80"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-194"},{"uid":"dc054bf8-192"},{"uid":"dc054bf8-186"}]},"dc054bf8-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-11"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-54"},{"uid":"dc054bf8-22"}]},"dc054bf8-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-13"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-22"}]},"dc054bf8-14":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-15"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-90"},{"uid":"dc054bf8-110"},{"uid":"dc054bf8-22"}]},"dc054bf8-16":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-17"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-22"}]},"dc054bf8-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-19"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-76"},{"uid":"dc054bf8-22"}]},"dc054bf8-20":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-21"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-54"},{"uid":"dc054bf8-22"}]},"dc054bf8-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-23"},"imported":[{"uid":"dc054bf8-8"},{"uid":"dc054bf8-0"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-10"},{"uid":"dc054bf8-12"},{"uid":"dc054bf8-14"},{"uid":"dc054bf8-16"},{"uid":"dc054bf8-18"},{"uid":"dc054bf8-20"},{"uid":"dc054bf8-4"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-32"},{"uid":"dc054bf8-120"},{"uid":"dc054bf8-116"},{"uid":"dc054bf8-82"},{"uid":"dc054bf8-86"},{"uid":"dc054bf8-108"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-28"},{"uid":"dc054bf8-70"},{"uid":"dc054bf8-182"},{"uid":"dc054bf8-184"},{"uid":"dc054bf8-186"}]},"dc054bf8-24":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-25"},"imported":[{"uid":"dc054bf8-0"}],"importedBy":[{"uid":"dc054bf8-32"}]},"dc054bf8-26":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-27"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-28"},{"uid":"dc054bf8-194"},{"uid":"dc054bf8-190"},{"uid":"dc054bf8-186"}]},"dc054bf8-28":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-29"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-26"}],"importedBy":[{"uid":"dc054bf8-32"}]},"dc054bf8-30":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-31"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-32"},{"uid":"dc054bf8-194"},{"uid":"dc054bf8-190"}]},"dc054bf8-32":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-33"},"imported":[{"uid":"dc054bf8-0"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-24"},{"uid":"dc054bf8-28"},{"uid":"dc054bf8-30"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-194","dynamic":true}],"importedBy":[{"uid":"dc054bf8-34"}]},"dc054bf8-34":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-35"},"imported":[{"uid":"dc054bf8-32"}],"importedBy":[{"uid":"dc054bf8-126"}]},"dc054bf8-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-37"},"imported":[],"importedBy":[{"uid":"dc054bf8-38"}]},"dc054bf8-38":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-39"},"imported":[{"uid":"dc054bf8-36"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-0"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-188"}]},"dc054bf8-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-41"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"}]},"dc054bf8-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-43"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-104"},{"uid":"dc054bf8-190"}]},"dc054bf8-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-45"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-84"},{"uid":"dc054bf8-186"}]},"dc054bf8-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-47"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-124"}]},"dc054bf8-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-49"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"}]},"dc054bf8-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-51"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-186"}]},"dc054bf8-52":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EasingType.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-53"},"imported":[],"importedBy":[{"uid":"dc054bf8-200"}]},"dc054bf8-54":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-55"},"imported":[{"uid":"dc054bf8-10"},{"uid":"dc054bf8-20"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-56"},{"uid":"dc054bf8-90"},{"uid":"dc054bf8-110"},{"uid":"dc054bf8-80"}]},"dc054bf8-56":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-57"},"imported":[{"uid":"dc054bf8-54"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-58"}]},"dc054bf8-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-59"},"imported":[{"uid":"dc054bf8-0"},{"uid":"dc054bf8-56"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-62"}]},"dc054bf8-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-61"},"imported":[{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-62"},{"uid":"dc054bf8-64"}]},"dc054bf8-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-63"},"imported":[{"uid":"dc054bf8-6"},{"uid":"dc054bf8-58"},{"uid":"dc054bf8-60"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"},{"uid":"dc054bf8-72"},{"uid":"dc054bf8-96"},{"uid":"dc054bf8-94"}]},"dc054bf8-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-65"},"imported":[{"uid":"dc054bf8-60"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-120"}]},"dc054bf8-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-67"},"imported":[{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-120"}]},"dc054bf8-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-69"},"imported":[{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-120"}]},"dc054bf8-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-71"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-116"}]},"dc054bf8-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-73"},"imported":[{"uid":"dc054bf8-62"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"},{"uid":"dc054bf8-96"}]},"dc054bf8-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-75"},"imported":[{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-88"}]},"dc054bf8-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-77"},"imported":[{"uid":"dc054bf8-18"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-88"}]},"dc054bf8-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-79"},"imported":[{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-88"}]},"dc054bf8-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-81"},"imported":[{"uid":"dc054bf8-54"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-98"},{"uid":"dc054bf8-82"},{"uid":"dc054bf8-92"},{"uid":"dc054bf8-112"},{"uid":"dc054bf8-114"}]},"dc054bf8-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-83"},"imported":[{"uid":"dc054bf8-80"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-88"}]},"dc054bf8-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-85"},"imported":[{"uid":"dc054bf8-44"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-88"}]},"dc054bf8-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-87"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-88"}]},"dc054bf8-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-89"},"imported":[{"uid":"dc054bf8-2"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-74"},{"uid":"dc054bf8-76"},{"uid":"dc054bf8-78"},{"uid":"dc054bf8-82"},{"uid":"dc054bf8-84"},{"uid":"dc054bf8-86"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-91"},"imported":[{"uid":"dc054bf8-14"},{"uid":"dc054bf8-54"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-92"}]},"dc054bf8-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Opacity/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-93"},"imported":[{"uid":"dc054bf8-90"},{"uid":"dc054bf8-80"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-95"},"imported":[{"uid":"dc054bf8-62"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-96"}]},"dc054bf8-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-97"},"imported":[{"uid":"dc054bf8-62"},{"uid":"dc054bf8-72"},{"uid":"dc054bf8-94"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-99"},"imported":[{"uid":"dc054bf8-80"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-100"}]},"dc054bf8-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-101"},"imported":[{"uid":"dc054bf8-98"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-103"},"imported":[{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-106"}]},"dc054bf8-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-105"},"imported":[{"uid":"dc054bf8-42"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-106"}]},"dc054bf8-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-107"},"imported":[{"uid":"dc054bf8-102"},{"uid":"dc054bf8-104"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-109"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-110":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Size/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-111"},"imported":[{"uid":"dc054bf8-14"},{"uid":"dc054bf8-54"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-112"}]},"dc054bf8-112":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Size/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-113"},"imported":[{"uid":"dc054bf8-80"},{"uid":"dc054bf8-110"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-114":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-115"},"imported":[{"uid":"dc054bf8-80"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-116"}]},"dc054bf8-116":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-117"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-62"},{"uid":"dc054bf8-70"},{"uid":"dc054bf8-72"},{"uid":"dc054bf8-88"},{"uid":"dc054bf8-92"},{"uid":"dc054bf8-96"},{"uid":"dc054bf8-100"},{"uid":"dc054bf8-106"},{"uid":"dc054bf8-108"},{"uid":"dc054bf8-112"},{"uid":"dc054bf8-114"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-118"}]},"dc054bf8-118":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-119"},"imported":[{"uid":"dc054bf8-116"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-120"},{"uid":"dc054bf8-194"},{"uid":"dc054bf8-190"},{"uid":"dc054bf8-186"}]},"dc054bf8-120":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-121"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-64"},{"uid":"dc054bf8-66"},{"uid":"dc054bf8-68"},{"uid":"dc054bf8-118"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-194"}]},"dc054bf8-122":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/CanvasUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-123"},"imported":[{"uid":"dc054bf8-0"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-180"}]},"dc054bf8-124":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-125"},"imported":[{"uid":"dc054bf8-8"},{"uid":"dc054bf8-0"},{"uid":"dc054bf8-6"},{"uid":"dc054bf8-46"},{"uid":"dc054bf8-12"},{"uid":"dc054bf8-22"}],"importedBy":[{"uid":"dc054bf8-200"},{"uid":"dc054bf8-182"},{"uid":"dc054bf8-180"},{"uid":"dc054bf8-186"}]},"dc054bf8-126":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-127"},"imported":[{"uid":"dc054bf8-34"},{"uid":"dc054bf8-200"}],"importedBy":[{"uid":"dc054bf8-178"},{"uid":"dc054bf8-144"},{"uid":"dc054bf8-130"},{"uid":"dc054bf8-138"},{"uid":"dc054bf8-146"},{"uid":"dc054bf8-160"},{"uid":"dc054bf8-164"},{"uid":"dc054bf8-168"},{"uid":"dc054bf8-172"},{"uid":"dc054bf8-128"},{"uid":"dc054bf8-198"},{"uid":"dc054bf8-152"},{"uid":"dc054bf8-154"},{"uid":"dc054bf8-156"},{"uid":"dc054bf8-158"},{"uid":"dc054bf8-196"},{"uid":"dc054bf8-150"}]},"dc054bf8-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-129"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-130"}]},"dc054bf8-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-131"},"imported":[{"uid":"dc054bf8-126"},{"uid":"dc054bf8-128"}],"importedBy":[{"uid":"dc054bf8-132"}]},"dc054bf8-132":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-133"},"imported":[{"uid":"dc054bf8-130"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-135"},"imported":[],"importedBy":[{"uid":"dc054bf8-136"}]},"dc054bf8-136":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-137"},"imported":[{"uid":"dc054bf8-134"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-139"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-140"}]},"dc054bf8-140":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-141"},"imported":[{"uid":"dc054bf8-138"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-143"},"imported":[{"uid":"dc054bf8-198","dynamic":true}],"importedBy":[{"uid":"dc054bf8-144"}]},"dc054bf8-144":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-145"},"imported":[{"uid":"dc054bf8-126"},{"uid":"dc054bf8-142"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-146":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-147"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-148"}]},"dc054bf8-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-149"},"imported":[{"uid":"dc054bf8-146"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-150":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-151"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-152"}]},"dc054bf8-152":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-153"},"imported":[{"uid":"dc054bf8-126"},{"uid":"dc054bf8-150"}],"importedBy":[{"uid":"dc054bf8-160"}]},"dc054bf8-154":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-155"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-160"}]},"dc054bf8-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-157"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-160"}]},"dc054bf8-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-159"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-160"}]},"dc054bf8-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-161"},"imported":[{"uid":"dc054bf8-126"},{"uid":"dc054bf8-152"},{"uid":"dc054bf8-154"},{"uid":"dc054bf8-156"},{"uid":"dc054bf8-158"}],"importedBy":[{"uid":"dc054bf8-162"}]},"dc054bf8-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-163"},"imported":[{"uid":"dc054bf8-160"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-164":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-165"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-166"}]},"dc054bf8-166":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-167"},"imported":[{"uid":"dc054bf8-164"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-168":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-169"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-170"}]},"dc054bf8-170":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-171"},"imported":[{"uid":"dc054bf8-168"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-172":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-173"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-174"}]},"dc054bf8-174":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-175"},"imported":[{"uid":"dc054bf8-172"}],"importedBy":[{"uid":"dc054bf8-176"}]},"dc054bf8-176":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-177"},"imported":[{"uid":"dc054bf8-132"},{"uid":"dc054bf8-136"},{"uid":"dc054bf8-140"},{"uid":"dc054bf8-144"},{"uid":"dc054bf8-148"},{"uid":"dc054bf8-162"},{"uid":"dc054bf8-166"},{"uid":"dc054bf8-170"},{"uid":"dc054bf8-174"}],"importedBy":[{"uid":"dc054bf8-178"}]},"dc054bf8-178":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-179"},"imported":[{"uid":"dc054bf8-176"},{"uid":"dc054bf8-126"}],"importedBy":[],"isEntry":true},"dc054bf8-180":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-181"},"imported":[{"uid":"dc054bf8-122"},{"uid":"dc054bf8-0"},{"uid":"dc054bf8-124"}],"importedBy":[{"uid":"dc054bf8-182"}]},"dc054bf8-182":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-183"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-0"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-180"}],"importedBy":[{"uid":"dc054bf8-194"}]},"dc054bf8-184":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-185"},"imported":[{"uid":"dc054bf8-22"},{"uid":"dc054bf8-0"}],"importedBy":[{"uid":"dc054bf8-194"}]},"dc054bf8-186":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-187"},"imported":[{"uid":"dc054bf8-4"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-0"},{"uid":"dc054bf8-26"},{"uid":"dc054bf8-2"},{"uid":"dc054bf8-44"},{"uid":"dc054bf8-50"},{"uid":"dc054bf8-118"}],"importedBy":[{"uid":"dc054bf8-190"}]},"dc054bf8-188":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-189"},"imported":[{"uid":"dc054bf8-38"}],"importedBy":[{"uid":"dc054bf8-190"}]},"dc054bf8-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-191"},"imported":[{"uid":"dc054bf8-0"},{"uid":"dc054bf8-26"},{"uid":"dc054bf8-42"},{"uid":"dc054bf8-186"},{"uid":"dc054bf8-188"},{"uid":"dc054bf8-30"},{"uid":"dc054bf8-118"}],"importedBy":[{"uid":"dc054bf8-194"}]},"dc054bf8-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-193"},"imported":[{"uid":"dc054bf8-0"},{"uid":"dc054bf8-8"}],"importedBy":[{"uid":"dc054bf8-194"}]},"dc054bf8-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-195"},"imported":[{"uid":"dc054bf8-8"},{"uid":"dc054bf8-0"},{"uid":"dc054bf8-182"},{"uid":"dc054bf8-184"},{"uid":"dc054bf8-26"},{"uid":"dc054bf8-120"},{"uid":"dc054bf8-190"},{"uid":"dc054bf8-192"},{"uid":"dc054bf8-30"},{"uid":"dc054bf8-118"}],"importedBy":[{"uid":"dc054bf8-32"}]},"dc054bf8-196":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-197"},"imported":[{"uid":"dc054bf8-126"}],"importedBy":[{"uid":"dc054bf8-198"}]},"dc054bf8-198":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"dc054bf8-199"},"imported":[{"uid":"dc054bf8-126"},{"uid":"dc054bf8-196"}],"importedBy":[{"uid":"dc054bf8-142"}]},"dc054bf8-200":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"dc054bf8-0"},{"uid":"dc054bf8-38"},{"uid":"dc054bf8-4"},{"uid":"dc054bf8-2"},{"uid":"dc054bf8-40"},{"uid":"dc054bf8-16"},{"uid":"dc054bf8-10"},{"uid":"dc054bf8-42"},{"uid":"dc054bf8-44"},{"uid":"dc054bf8-18"},{"uid":"dc054bf8-46"},{"uid":"dc054bf8-14"},{"uid":"dc054bf8-48"},{"uid":"dc054bf8-50"},{"uid":"dc054bf8-20"},{"uid":"dc054bf8-52"},{"uid":"dc054bf8-26"},{"uid":"dc054bf8-12"},{"uid":"dc054bf8-62"},{"uid":"dc054bf8-54"},{"uid":"dc054bf8-64"},{"uid":"dc054bf8-56"},{"uid":"dc054bf8-66"},{"uid":"dc054bf8-58"},{"uid":"dc054bf8-120"},{"uid":"dc054bf8-60"},{"uid":"dc054bf8-100"},{"uid":"dc054bf8-98"},{"uid":"dc054bf8-116"},{"uid":"dc054bf8-72"},{"uid":"dc054bf8-96"},{"uid":"dc054bf8-94"},{"uid":"dc054bf8-88"},{"uid":"dc054bf8-74"},{"uid":"dc054bf8-76"},{"uid":"dc054bf8-78"},{"uid":"dc054bf8-84"},{"uid":"dc054bf8-82"},{"uid":"dc054bf8-86"},{"uid":"dc054bf8-106"},{"uid":"dc054bf8-104"},{"uid":"dc054bf8-102"},{"uid":"dc054bf8-92"},{"uid":"dc054bf8-90"},{"uid":"dc054bf8-108"},{"uid":"dc054bf8-112"},{"uid":"dc054bf8-110"},{"uid":"dc054bf8-114"},{"uid":"dc054bf8-68"},{"uid":"dc054bf8-80"},{"uid":"dc054bf8-122"},{"uid":"dc054bf8-124"},{"uid":"dc054bf8-30"},{"uid":"dc054bf8-8"},{"uid":"dc054bf8-118"},{"uid":"dc054bf8-22"},{"uid":"dc054bf8-6"}],"importedBy":[{"uid":"dc054bf8-126"}]}},"env":{"rollup":"4.60.3"},"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":"024a745f-1","name":"Constants.js"},{"uid":"024a745f-5","name":"Vectors.js"},{"uid":"024a745f-29","name":"PluginManager.js"},{"uid":"024a745f-39","name":"Ranges.js"},{"uid":"024a745f-185","name":"EventListeners.js"},{"uid":"024a745f-189","name":"SpatialHashGrid.js"}]},{"uid":"024a745f-33","name":"Engine.js"},{"uid":"024a745f-181","name":"RenderManager.js"},{"uid":"024a745f-183","name":"CanvasManager.js"},{"uid":"024a745f-187","name":"Particle.js"},{"uid":"024a745f-191","name":"ParticlesManager.js"},{"uid":"024a745f-193","name":"Retina.js"},{"uid":"024a745f-195","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"024a745f-3","name":"MoveDirection.js"},{"uid":"024a745f-17","name":"OutModeDirection.js"},{"uid":"024a745f-41","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"024a745f-11","name":"AnimationMode.js"},{"uid":"024a745f-19","name":"PixelMode.js"},{"uid":"024a745f-43","name":"LimitMode.js"},{"uid":"024a745f-45","name":"OutMode.js"}]},{"uid":"024a745f-13","name":"AnimationStatus.js"},{"name":"Types","children":[{"uid":"024a745f-15","name":"DestroyType.js"},{"uid":"024a745f-21","name":"StartValueType.js"},{"uid":"024a745f-27","name":"EventType.js"},{"uid":"024a745f-47","name":"AlterType.js"},{"uid":"024a745f-49","name":"GradientType.js"},{"uid":"024a745f-51","name":"ParticleOutType.js"},{"uid":"024a745f-53","name":"EasingType.js"}]},{"uid":"024a745f-37","name":"RangeType.js"}]},{"name":"Utils","children":[{"uid":"024a745f-7","name":"TypeUtils.js"},{"uid":"024a745f-9","name":"MathUtils.js"},{"uid":"024a745f-23","name":"Utils.js"},{"uid":"024a745f-25","name":"EventDispatcher.js"},{"uid":"024a745f-31","name":"LogUtils.js"},{"uid":"024a745f-119","name":"OptionsUtils.js"},{"uid":"024a745f-123","name":"CanvasUtils.js"},{"uid":"024a745f-125","name":"ColorUtils.js"}]},{"uid":"024a745f-35","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"024a745f-55","name":"AnimationOptions.js"},{"uid":"024a745f-57","name":"ColorAnimation.js"},{"uid":"024a745f-59","name":"HslAnimation.js"},{"uid":"024a745f-61","name":"OptionsColor.js"},{"uid":"024a745f-63","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"024a745f-65"},{"name":"FullScreen/FullScreen.js","uid":"024a745f-67"},{"uid":"024a745f-69","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"024a745f-71"},{"uid":"024a745f-73","name":"Fill.js"},{"name":"Move","children":[{"uid":"024a745f-75","name":"MoveAngle.js"},{"uid":"024a745f-77","name":"MoveCenter.js"},{"uid":"024a745f-79","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"024a745f-83"},{"uid":"024a745f-85","name":"OutModes.js"},{"uid":"024a745f-87","name":"Spin.js"},{"uid":"024a745f-89","name":"Move.js"}]},{"name":"Opacity","children":[{"uid":"024a745f-91","name":"OpacityAnimation.js"},{"uid":"024a745f-93","name":"Opacity.js"}]},{"uid":"024a745f-95","name":"Stroke.js"},{"uid":"024a745f-97","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"024a745f-99","name":"ParticlesBounceFactor.js"},{"uid":"024a745f-101","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"024a745f-103","name":"ParticlesDensity.js"},{"uid":"024a745f-105","name":"ParticlesNumberLimit.js"},{"uid":"024a745f-107","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"024a745f-109"},{"name":"Size","children":[{"uid":"024a745f-111","name":"SizeAnimation.js"},{"uid":"024a745f-113","name":"Size.js"}]},{"name":"ZIndex/ZIndex.js","uid":"024a745f-115"},{"uid":"024a745f-117","name":"ParticlesOptions.js"}]},{"uid":"024a745f-81","name":"ValueWithRandom.js"},{"uid":"024a745f-121","name":"Options.js"}]},{"uid":"024a745f-127","name":"index.js"}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"024a745f-129","name":"Utils.js"},{"uid":"024a745f-131","name":"CircleDrawer.js"},{"uid":"024a745f-133","name":"index.js"}]},{"name":"plugins","children":[{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"024a745f-135","name":"HexColorManager.js"},{"uid":"024a745f-137","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"024a745f-139","name":"HslColorManager.js"},{"uid":"024a745f-141","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"024a745f-169","name":"RgbColorManager.js"},{"uid":"024a745f-171","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"024a745f-143","name":"MovePlugin.js"},{"uid":"024a745f-145","name":"index.js"},{"uid":"024a745f-197","name":"Utils.js"},{"uid":"024a745f-199","name":"MovePluginInstance.js"}]}]},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"uid":"024a745f-147","name":"OpacityUpdater.js"},{"uid":"024a745f-149","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"024a745f-151","name":"Utils.js"},{"uid":"024a745f-153","name":"BounceOutMode.js"},{"uid":"024a745f-155","name":"DestroyOutMode.js"},{"uid":"024a745f-157","name":"NoneOutMode.js"},{"uid":"024a745f-159","name":"OutOutMode.js"},{"uid":"024a745f-161","name":"OutOfCanvasUpdater.js"},{"uid":"024a745f-163","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"024a745f-165","name":"PaintUpdater.js"},{"uid":"024a745f-167","name":"index.js"}]},{"name":"size/dist/browser","children":[{"uid":"024a745f-173","name":"SizeUpdater.js"},{"uid":"024a745f-175","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"024a745f-177","name":"index.js"},{"uid":"024a745f-179","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"024a745f-1":{"renderedLength":1562,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-0"},"024a745f-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-2"},"024a745f-5":{"renderedLength":3316,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-4"},"024a745f-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-6"},"024a745f-9":{"renderedLength":6134,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-8"},"024a745f-11":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-10"},"024a745f-13":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-12"},"024a745f-15":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-14"},"024a745f-17":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-16"},"024a745f-19":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-18"},"024a745f-21":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-20"},"024a745f-23":{"renderedLength":17344,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-22"},"024a745f-25":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-24"},"024a745f-27":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-26"},"024a745f-29":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-28"},"024a745f-31":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-30"},"024a745f-33":{"renderedLength":6113,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-32"},"024a745f-35":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-34"},"024a745f-37":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-36"},"024a745f-39":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-38"},"024a745f-41":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-40"},"024a745f-43":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-42"},"024a745f-45":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-44"},"024a745f-47":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-46"},"024a745f-49":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-48"},"024a745f-51":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-50"},"024a745f-53":{"renderedLength":2524,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-52"},"024a745f-55":{"renderedLength":1698,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-54"},"024a745f-57":{"renderedLength":711,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-56"},"024a745f-59":{"renderedLength":362,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-58"},"024a745f-61":{"renderedLength":708,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-60"},"024a745f-63":{"renderedLength":1063,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-62"},"024a745f-65":{"renderedLength":1129,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-64"},"024a745f-67":{"renderedLength":460,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-66"},"024a745f-69":{"renderedLength":458,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-68"},"024a745f-71":{"renderedLength":850,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-70"},"024a745f-73":{"renderedLength":624,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-72"},"024a745f-75":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-74"},"024a745f-77":{"renderedLength":717,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-76"},"024a745f-79":{"renderedLength":839,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-78"},"024a745f-81":{"renderedLength":989,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-80"},"024a745f-83":{"renderedLength":790,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-82"},"024a745f-85":{"renderedLength":597,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-84"},"024a745f-87":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-86"},"024a745f-89":{"renderedLength":3032,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-88"},"024a745f-91":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-90"},"024a745f-93":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-92"},"024a745f-95":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-94"},"024a745f-97":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-96"},"024a745f-99":{"renderedLength":146,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-98"},"024a745f-101":{"renderedLength":420,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-100"},"024a745f-103":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-102"},"024a745f-105":{"renderedLength":475,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-104"},"024a745f-107":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-106"},"024a745f-109":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-108"},"024a745f-111":{"renderedLength":451,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-110"},"024a745f-113":{"renderedLength":495,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-112"},"024a745f-115":{"renderedLength":740,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-114"},"024a745f-117":{"renderedLength":5488,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-116"},"024a745f-119":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-118"},"024a745f-121":{"renderedLength":4492,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-120"},"024a745f-123":{"renderedLength":4116,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-122"},"024a745f-125":{"renderedLength":14196,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-124"},"024a745f-127":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-126"},"024a745f-129":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-128"},"024a745f-131":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-130"},"024a745f-133":{"renderedLength":292,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-132"},"024a745f-135":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-134"},"024a745f-137":{"renderedLength":237,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-136"},"024a745f-139":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-138"},"024a745f-141":{"renderedLength":237,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-140"},"024a745f-143":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-142"},"024a745f-145":{"renderedLength":1084,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-144"},"024a745f-147":{"renderedLength":1655,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-146"},"024a745f-149":{"renderedLength":322,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-148"},"024a745f-151":{"renderedLength":3630,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-150"},"024a745f-153":{"renderedLength":1313,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-152"},"024a745f-155":{"renderedLength":1456,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-154"},"024a745f-157":{"renderedLength":2068,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-156"},"024a745f-159":{"renderedLength":6747,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-158"},"024a745f-161":{"renderedLength":2202,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-160"},"024a745f-163":{"renderedLength":328,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-162"},"024a745f-165":{"renderedLength":3448,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-164"},"024a745f-167":{"renderedLength":333,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-166"},"024a745f-169":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-168"},"024a745f-171":{"renderedLength":237,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-170"},"024a745f-173":{"renderedLength":1388,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-172"},"024a745f-175":{"renderedLength":313,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-174"},"024a745f-177":{"renderedLength":549,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-176"},"024a745f-179":{"renderedLength":161,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-178"},"024a745f-181":{"renderedLength":11692,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-180"},"024a745f-183":{"renderedLength":12698,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-182"},"024a745f-185":{"renderedLength":3135,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-184"},"024a745f-187":{"renderedLength":18159,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-186"},"024a745f-189":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-188"},"024a745f-191":{"renderedLength":18211,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-190"},"024a745f-193":{"renderedLength":1595,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-192"},"024a745f-195":{"renderedLength":13443,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-194"},"024a745f-197":{"renderedLength":6783,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-196"},"024a745f-199":{"renderedLength":3830,"gzipLength":0,"brotliLength":0,"metaUid":"024a745f-198"}},"nodeMetas":{"024a745f-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-1"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-32"},{"uid":"024a745f-38"},{"uid":"024a745f-4"},{"uid":"024a745f-58"},{"uid":"024a745f-122"},{"uid":"024a745f-124"},{"uid":"024a745f-8"},{"uid":"024a745f-22"},{"uid":"024a745f-24"},{"uid":"024a745f-194"},{"uid":"024a745f-182"},{"uid":"024a745f-184"},{"uid":"024a745f-190"},{"uid":"024a745f-192"},{"uid":"024a745f-180"},{"uid":"024a745f-186"}]},"024a745f-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-3"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-88"},{"uid":"024a745f-8"},{"uid":"024a745f-186"}]},"024a745f-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-5"},"imported":[{"uid":"024a745f-0"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-8"},{"uid":"024a745f-22"},{"uid":"024a745f-186"}]},"024a745f-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-7"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-62"},{"uid":"024a745f-54"},{"uid":"024a745f-64"},{"uid":"024a745f-56"},{"uid":"024a745f-66"},{"uid":"024a745f-58"},{"uid":"024a745f-120"},{"uid":"024a745f-60"},{"uid":"024a745f-100"},{"uid":"024a745f-116"},{"uid":"024a745f-72"},{"uid":"024a745f-96"},{"uid":"024a745f-94"},{"uid":"024a745f-88"},{"uid":"024a745f-74"},{"uid":"024a745f-76"},{"uid":"024a745f-78"},{"uid":"024a745f-84"},{"uid":"024a745f-82"},{"uid":"024a745f-86"},{"uid":"024a745f-106"},{"uid":"024a745f-104"},{"uid":"024a745f-102"},{"uid":"024a745f-92"},{"uid":"024a745f-90"},{"uid":"024a745f-108"},{"uid":"024a745f-112"},{"uid":"024a745f-110"},{"uid":"024a745f-114"},{"uid":"024a745f-68"},{"uid":"024a745f-80"},{"uid":"024a745f-124"},{"uid":"024a745f-8"},{"uid":"024a745f-22"},{"uid":"024a745f-70"}]},"024a745f-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-9"},"imported":[{"uid":"024a745f-2"},{"uid":"024a745f-0"},{"uid":"024a745f-4"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-32"},{"uid":"024a745f-38"},{"uid":"024a745f-54"},{"uid":"024a745f-56"},{"uid":"024a745f-120"},{"uid":"024a745f-72"},{"uid":"024a745f-94"},{"uid":"024a745f-88"},{"uid":"024a745f-74"},{"uid":"024a745f-78"},{"uid":"024a745f-86"},{"uid":"024a745f-80"},{"uid":"024a745f-124"},{"uid":"024a745f-22"},{"uid":"024a745f-194"},{"uid":"024a745f-192"},{"uid":"024a745f-186"}]},"024a745f-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-11"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-54"},{"uid":"024a745f-22"}]},"024a745f-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-13"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-124"},{"uid":"024a745f-22"}]},"024a745f-14":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-15"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-90"},{"uid":"024a745f-110"},{"uid":"024a745f-22"}]},"024a745f-16":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-17"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-22"}]},"024a745f-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-19"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-76"},{"uid":"024a745f-22"}]},"024a745f-20":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-21"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-54"},{"uid":"024a745f-22"}]},"024a745f-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-23"},"imported":[{"uid":"024a745f-8"},{"uid":"024a745f-0"},{"uid":"024a745f-6"},{"uid":"024a745f-10"},{"uid":"024a745f-12"},{"uid":"024a745f-14"},{"uid":"024a745f-16"},{"uid":"024a745f-18"},{"uid":"024a745f-20"},{"uid":"024a745f-4"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-32"},{"uid":"024a745f-120"},{"uid":"024a745f-116"},{"uid":"024a745f-82"},{"uid":"024a745f-86"},{"uid":"024a745f-108"},{"uid":"024a745f-124"},{"uid":"024a745f-28"},{"uid":"024a745f-70"},{"uid":"024a745f-182"},{"uid":"024a745f-184"},{"uid":"024a745f-186"}]},"024a745f-24":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-25"},"imported":[{"uid":"024a745f-0"}],"importedBy":[{"uid":"024a745f-32"}]},"024a745f-26":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-27"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-28"},{"uid":"024a745f-194"},{"uid":"024a745f-190"},{"uid":"024a745f-186"}]},"024a745f-28":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-29"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-26"}],"importedBy":[{"uid":"024a745f-32"}]},"024a745f-30":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-31"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-32"},{"uid":"024a745f-194"},{"uid":"024a745f-190"}]},"024a745f-32":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-33"},"imported":[{"uid":"024a745f-0"},{"uid":"024a745f-22"},{"uid":"024a745f-24"},{"uid":"024a745f-28"},{"uid":"024a745f-30"},{"uid":"024a745f-8"},{"uid":"024a745f-194","dynamic":true}],"importedBy":[{"uid":"024a745f-34"}]},"024a745f-34":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-35"},"imported":[{"uid":"024a745f-32"}],"importedBy":[{"uid":"024a745f-126"}]},"024a745f-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-37"},"imported":[],"importedBy":[{"uid":"024a745f-38"}]},"024a745f-38":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-39"},"imported":[{"uid":"024a745f-36"},{"uid":"024a745f-8"},{"uid":"024a745f-0"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-188"}]},"024a745f-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-41"},"imported":[],"importedBy":[{"uid":"024a745f-200"}]},"024a745f-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-43"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-104"},{"uid":"024a745f-190"}]},"024a745f-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-45"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-84"},{"uid":"024a745f-186"}]},"024a745f-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-47"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-124"}]},"024a745f-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-49"},"imported":[],"importedBy":[{"uid":"024a745f-200"}]},"024a745f-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-51"},"imported":[],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-186"}]},"024a745f-52":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EasingType.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-53"},"imported":[],"importedBy":[{"uid":"024a745f-200"}]},"024a745f-54":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-55"},"imported":[{"uid":"024a745f-10"},{"uid":"024a745f-20"},{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-56"},{"uid":"024a745f-90"},{"uid":"024a745f-110"},{"uid":"024a745f-80"}]},"024a745f-56":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-57"},"imported":[{"uid":"024a745f-54"},{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-58"}]},"024a745f-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-59"},"imported":[{"uid":"024a745f-0"},{"uid":"024a745f-56"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-62"}]},"024a745f-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-61"},"imported":[{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-62"},{"uid":"024a745f-64"}]},"024a745f-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-63"},"imported":[{"uid":"024a745f-6"},{"uid":"024a745f-58"},{"uid":"024a745f-60"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"},{"uid":"024a745f-72"},{"uid":"024a745f-96"},{"uid":"024a745f-94"}]},"024a745f-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-65"},"imported":[{"uid":"024a745f-60"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-120"}]},"024a745f-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-67"},"imported":[{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-120"}]},"024a745f-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-69"},"imported":[{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-120"}]},"024a745f-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-71"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-116"}]},"024a745f-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-73"},"imported":[{"uid":"024a745f-62"},{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"},{"uid":"024a745f-96"}]},"024a745f-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-75"},"imported":[{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-88"}]},"024a745f-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-77"},"imported":[{"uid":"024a745f-18"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-88"}]},"024a745f-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-79"},"imported":[{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-88"}]},"024a745f-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-81"},"imported":[{"uid":"024a745f-54"},{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-98"},{"uid":"024a745f-82"},{"uid":"024a745f-92"},{"uid":"024a745f-112"},{"uid":"024a745f-114"}]},"024a745f-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-83"},"imported":[{"uid":"024a745f-80"},{"uid":"024a745f-22"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-88"}]},"024a745f-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-85"},"imported":[{"uid":"024a745f-44"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-88"}]},"024a745f-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-87"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-88"}]},"024a745f-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-89"},"imported":[{"uid":"024a745f-2"},{"uid":"024a745f-6"},{"uid":"024a745f-74"},{"uid":"024a745f-76"},{"uid":"024a745f-78"},{"uid":"024a745f-82"},{"uid":"024a745f-84"},{"uid":"024a745f-86"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-91"},"imported":[{"uid":"024a745f-14"},{"uid":"024a745f-54"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-92"}]},"024a745f-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Opacity/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-93"},"imported":[{"uid":"024a745f-90"},{"uid":"024a745f-80"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-95"},"imported":[{"uid":"024a745f-62"},{"uid":"024a745f-6"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-96"}]},"024a745f-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-97"},"imported":[{"uid":"024a745f-62"},{"uid":"024a745f-72"},{"uid":"024a745f-94"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-99"},"imported":[{"uid":"024a745f-80"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-100"}]},"024a745f-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-101"},"imported":[{"uid":"024a745f-98"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-103"},"imported":[{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-106"}]},"024a745f-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-105"},"imported":[{"uid":"024a745f-42"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-106"}]},"024a745f-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-107"},"imported":[{"uid":"024a745f-102"},{"uid":"024a745f-104"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-109"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-110":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Size/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-111"},"imported":[{"uid":"024a745f-14"},{"uid":"024a745f-54"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-112"}]},"024a745f-112":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Size/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-113"},"imported":[{"uid":"024a745f-80"},{"uid":"024a745f-110"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-114":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-115"},"imported":[{"uid":"024a745f-80"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-116"}]},"024a745f-116":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-117"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-6"},{"uid":"024a745f-62"},{"uid":"024a745f-70"},{"uid":"024a745f-72"},{"uid":"024a745f-88"},{"uid":"024a745f-92"},{"uid":"024a745f-96"},{"uid":"024a745f-100"},{"uid":"024a745f-106"},{"uid":"024a745f-108"},{"uid":"024a745f-112"},{"uid":"024a745f-114"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-118"}]},"024a745f-118":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-119"},"imported":[{"uid":"024a745f-116"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-120"},{"uid":"024a745f-194"},{"uid":"024a745f-190"},{"uid":"024a745f-186"}]},"024a745f-120":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-121"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-6"},{"uid":"024a745f-64"},{"uid":"024a745f-66"},{"uid":"024a745f-68"},{"uid":"024a745f-118"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-194"}]},"024a745f-122":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/CanvasUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-123"},"imported":[{"uid":"024a745f-0"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-180"}]},"024a745f-124":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-125"},"imported":[{"uid":"024a745f-8"},{"uid":"024a745f-0"},{"uid":"024a745f-6"},{"uid":"024a745f-46"},{"uid":"024a745f-12"},{"uid":"024a745f-22"}],"importedBy":[{"uid":"024a745f-200"},{"uid":"024a745f-182"},{"uid":"024a745f-180"},{"uid":"024a745f-186"}]},"024a745f-126":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-127"},"imported":[{"uid":"024a745f-34"},{"uid":"024a745f-200"}],"importedBy":[{"uid":"024a745f-178"},{"uid":"024a745f-144"},{"uid":"024a745f-130"},{"uid":"024a745f-138"},{"uid":"024a745f-146"},{"uid":"024a745f-160"},{"uid":"024a745f-164"},{"uid":"024a745f-168"},{"uid":"024a745f-172"},{"uid":"024a745f-128"},{"uid":"024a745f-198"},{"uid":"024a745f-152"},{"uid":"024a745f-154"},{"uid":"024a745f-156"},{"uid":"024a745f-158"},{"uid":"024a745f-196"},{"uid":"024a745f-150"}]},"024a745f-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-129"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-130"}]},"024a745f-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-131"},"imported":[{"uid":"024a745f-126"},{"uid":"024a745f-128"}],"importedBy":[{"uid":"024a745f-132"}]},"024a745f-132":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-133"},"imported":[{"uid":"024a745f-130"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-135"},"imported":[],"importedBy":[{"uid":"024a745f-136"}]},"024a745f-136":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-137"},"imported":[{"uid":"024a745f-134"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-139"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-140"}]},"024a745f-140":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-141"},"imported":[{"uid":"024a745f-138"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-143"},"imported":[{"uid":"024a745f-198","dynamic":true}],"importedBy":[{"uid":"024a745f-144"}]},"024a745f-144":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-145"},"imported":[{"uid":"024a745f-126"},{"uid":"024a745f-142"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-146":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-147"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-148"}]},"024a745f-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-149"},"imported":[{"uid":"024a745f-146"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-150":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-151"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-152"}]},"024a745f-152":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-153"},"imported":[{"uid":"024a745f-126"},{"uid":"024a745f-150"}],"importedBy":[{"uid":"024a745f-160"}]},"024a745f-154":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-155"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-160"}]},"024a745f-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-157"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-160"}]},"024a745f-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-159"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-160"}]},"024a745f-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-161"},"imported":[{"uid":"024a745f-126"},{"uid":"024a745f-152"},{"uid":"024a745f-154"},{"uid":"024a745f-156"},{"uid":"024a745f-158"}],"importedBy":[{"uid":"024a745f-162"}]},"024a745f-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-163"},"imported":[{"uid":"024a745f-160"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-164":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-165"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-166"}]},"024a745f-166":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-167"},"imported":[{"uid":"024a745f-164"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-168":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-169"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-170"}]},"024a745f-170":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-171"},"imported":[{"uid":"024a745f-168"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-172":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-173"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-174"}]},"024a745f-174":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-175"},"imported":[{"uid":"024a745f-172"}],"importedBy":[{"uid":"024a745f-176"}]},"024a745f-176":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-177"},"imported":[{"uid":"024a745f-132"},{"uid":"024a745f-136"},{"uid":"024a745f-140"},{"uid":"024a745f-144"},{"uid":"024a745f-148"},{"uid":"024a745f-162"},{"uid":"024a745f-166"},{"uid":"024a745f-170"},{"uid":"024a745f-174"}],"importedBy":[{"uid":"024a745f-178"}]},"024a745f-178":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-179"},"imported":[{"uid":"024a745f-176"},{"uid":"024a745f-126"}],"importedBy":[],"isEntry":true},"024a745f-180":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-181"},"imported":[{"uid":"024a745f-122"},{"uid":"024a745f-0"},{"uid":"024a745f-124"}],"importedBy":[{"uid":"024a745f-182"}]},"024a745f-182":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-183"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-0"},{"uid":"024a745f-124"},{"uid":"024a745f-180"}],"importedBy":[{"uid":"024a745f-194"}]},"024a745f-184":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-185"},"imported":[{"uid":"024a745f-22"},{"uid":"024a745f-0"}],"importedBy":[{"uid":"024a745f-194"}]},"024a745f-186":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-187"},"imported":[{"uid":"024a745f-4"},{"uid":"024a745f-124"},{"uid":"024a745f-8"},{"uid":"024a745f-22"},{"uid":"024a745f-0"},{"uid":"024a745f-26"},{"uid":"024a745f-2"},{"uid":"024a745f-44"},{"uid":"024a745f-50"},{"uid":"024a745f-118"}],"importedBy":[{"uid":"024a745f-190"}]},"024a745f-188":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-189"},"imported":[{"uid":"024a745f-38"}],"importedBy":[{"uid":"024a745f-190"}]},"024a745f-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-191"},"imported":[{"uid":"024a745f-0"},{"uid":"024a745f-26"},{"uid":"024a745f-42"},{"uid":"024a745f-186"},{"uid":"024a745f-188"},{"uid":"024a745f-30"},{"uid":"024a745f-118"}],"importedBy":[{"uid":"024a745f-194"}]},"024a745f-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-193"},"imported":[{"uid":"024a745f-0"},{"uid":"024a745f-8"}],"importedBy":[{"uid":"024a745f-194"}]},"024a745f-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-195"},"imported":[{"uid":"024a745f-8"},{"uid":"024a745f-0"},{"uid":"024a745f-182"},{"uid":"024a745f-184"},{"uid":"024a745f-26"},{"uid":"024a745f-120"},{"uid":"024a745f-190"},{"uid":"024a745f-192"},{"uid":"024a745f-30"},{"uid":"024a745f-118"}],"importedBy":[{"uid":"024a745f-32"}]},"024a745f-196":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-197"},"imported":[{"uid":"024a745f-126"}],"importedBy":[{"uid":"024a745f-198"}]},"024a745f-198":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"024a745f-199"},"imported":[{"uid":"024a745f-126"},{"uid":"024a745f-196"}],"importedBy":[{"uid":"024a745f-142"}]},"024a745f-200":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"024a745f-0"},{"uid":"024a745f-38"},{"uid":"024a745f-4"},{"uid":"024a745f-2"},{"uid":"024a745f-40"},{"uid":"024a745f-16"},{"uid":"024a745f-10"},{"uid":"024a745f-42"},{"uid":"024a745f-44"},{"uid":"024a745f-18"},{"uid":"024a745f-46"},{"uid":"024a745f-14"},{"uid":"024a745f-48"},{"uid":"024a745f-50"},{"uid":"024a745f-20"},{"uid":"024a745f-52"},{"uid":"024a745f-26"},{"uid":"024a745f-12"},{"uid":"024a745f-62"},{"uid":"024a745f-54"},{"uid":"024a745f-64"},{"uid":"024a745f-56"},{"uid":"024a745f-66"},{"uid":"024a745f-58"},{"uid":"024a745f-120"},{"uid":"024a745f-60"},{"uid":"024a745f-100"},{"uid":"024a745f-98"},{"uid":"024a745f-116"},{"uid":"024a745f-72"},{"uid":"024a745f-96"},{"uid":"024a745f-94"},{"uid":"024a745f-88"},{"uid":"024a745f-74"},{"uid":"024a745f-76"},{"uid":"024a745f-78"},{"uid":"024a745f-84"},{"uid":"024a745f-82"},{"uid":"024a745f-86"},{"uid":"024a745f-106"},{"uid":"024a745f-104"},{"uid":"024a745f-102"},{"uid":"024a745f-92"},{"uid":"024a745f-90"},{"uid":"024a745f-108"},{"uid":"024a745f-112"},{"uid":"024a745f-110"},{"uid":"024a745f-114"},{"uid":"024a745f-68"},{"uid":"024a745f-80"},{"uid":"024a745f-122"},{"uid":"024a745f-124"},{"uid":"024a745f-30"},{"uid":"024a745f-8"},{"uid":"024a745f-118"},{"uid":"024a745f-22"},{"uid":"024a745f-6"}],"importedBy":[{"uid":"024a745f-126"}]}},"env":{"rollup":"4.60.3"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4934
4934
|
|
|
4935
4935
|
const run = () => {
|
|
4936
4936
|
const width = window.innerWidth;
|