shaders 2.5.122 → 2.5.123

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.
Files changed (131) hide show
  1. package/dist/core/ReflectivePlane-UIT4xlmn.js +230 -0
  2. package/dist/core/{VideoTexture-D9XxE1Hw.js → VideoTexture-ClutlOqj.js} +1 -1
  3. package/dist/core/{WebcamTexture-9Td8qQWm.js → WebcamTexture-D4e06ajM.js} +1 -1
  4. package/dist/core/index.js +41 -40
  5. package/dist/core/registry.js +41 -40
  6. package/dist/core/{shaderRegistry-BoqhBfun.js → shaderRegistry-9d8S78Sy.js} +78 -76
  7. package/dist/core/shaderRegistry.d.ts.map +1 -1
  8. package/dist/core/shaders/ReflectivePlane/index.d.ts +46 -0
  9. package/dist/core/shaders/ReflectivePlane/index.d.ts.map +1 -0
  10. package/dist/core/shaders/ReflectivePlane/index.js +6 -0
  11. package/dist/core/shaders/Ring/index.js +1 -1
  12. package/dist/core/shaders/Ripples/index.js +1 -1
  13. package/dist/core/shaders/RoundedRect/index.js +1 -1
  14. package/dist/core/shaders/Saturation/index.js +1 -1
  15. package/dist/core/shaders/Sharpness/index.js +1 -1
  16. package/dist/core/shaders/Shatter/index.js +1 -1
  17. package/dist/core/shaders/SimplexNoise/index.js +1 -1
  18. package/dist/core/shaders/SineWave/index.js +1 -1
  19. package/dist/core/shaders/Smoke/index.js +1 -1
  20. package/dist/core/shaders/SmokeFill/index.js +1 -1
  21. package/dist/core/shaders/Solarize/index.js +1 -1
  22. package/dist/core/shaders/SolidColor/index.js +1 -1
  23. package/dist/core/shaders/Spherize/index.js +1 -1
  24. package/dist/core/shaders/Spiral/index.js +1 -1
  25. package/dist/core/shaders/Star/index.js +1 -1
  26. package/dist/core/shaders/Strands/index.js +1 -1
  27. package/dist/core/shaders/Stretch/index.js +1 -1
  28. package/dist/core/shaders/Stripes/index.js +1 -1
  29. package/dist/core/shaders/StudioBackground/index.js +1 -1
  30. package/dist/core/shaders/SunBurst/index.js +1 -1
  31. package/dist/core/shaders/Swirl/index.js +1 -1
  32. package/dist/core/shaders/TiltShift/index.js +1 -1
  33. package/dist/core/shaders/Tint/index.js +1 -1
  34. package/dist/core/shaders/Trapezoid/index.js +1 -1
  35. package/dist/core/shaders/Tritone/index.js +1 -1
  36. package/dist/core/shaders/Truchet/index.js +1 -1
  37. package/dist/core/shaders/Twirl/index.js +1 -1
  38. package/dist/core/shaders/VHS/index.js +1 -1
  39. package/dist/core/shaders/Vesica/index.js +1 -1
  40. package/dist/core/shaders/Vibrance/index.js +1 -1
  41. package/dist/core/shaders/VideoTexture/index.js +2 -2
  42. package/dist/core/shaders/Vignette/index.js +1 -1
  43. package/dist/core/shaders/Voronoi/index.js +1 -1
  44. package/dist/core/shaders/WaveDistortion/index.js +1 -1
  45. package/dist/core/shaders/Weave/index.js +1 -1
  46. package/dist/core/shaders/WebcamTexture/index.js +2 -2
  47. package/dist/core/shaders/WorleyNoise/index.js +1 -1
  48. package/dist/core/shaders/ZoomBlur/index.js +1 -1
  49. package/dist/js/createShader.js +1 -1
  50. package/dist/js/utils/generatePresetCode.d.ts.map +1 -1
  51. package/dist/js/utils/generatePresetCode.js +11 -0
  52. package/dist/react/Preview.js +1 -0
  53. package/dist/react/ReflectivePlane.js +217 -0
  54. package/dist/react/Shader.js +1 -1
  55. package/dist/react/bundle.js +207 -207
  56. package/dist/react/components/ReflectivePlane.d.ts +36 -0
  57. package/dist/react/components/ReflectivePlane.d.ts.map +1 -0
  58. package/dist/react/engine/Preview.d.ts.map +1 -1
  59. package/dist/react/index.d.ts +1 -0
  60. package/dist/react/index.d.ts.map +1 -1
  61. package/dist/react/index.js +2 -1
  62. package/dist/react/utils/generatePresetCode.d.ts.map +1 -1
  63. package/dist/react/utils/generatePresetCode.js +11 -0
  64. package/dist/registry.js +217 -0
  65. package/dist/solid/components/ReflectivePlane.d.ts +33 -0
  66. package/dist/solid/components/ReflectivePlane.d.ts.map +1 -0
  67. package/dist/solid/components/ReflectivePlane.js +228 -0
  68. package/dist/solid/engine/Preview.d.ts.map +1 -1
  69. package/dist/solid/engine/Preview.js +158 -156
  70. package/dist/solid/engine/Shader.js +1 -1
  71. package/dist/solid/index.d.ts +1 -0
  72. package/dist/solid/index.d.ts.map +1 -1
  73. package/dist/solid/index.js +82 -80
  74. package/dist/solid/utils/generatePresetCode.d.ts.map +1 -1
  75. package/dist/solid/utils/generatePresetCode.js +11 -0
  76. package/dist/svelte/components/ReflectivePlane.svelte.d.ts +23 -0
  77. package/dist/svelte/index.d.ts +1 -0
  78. package/dist/svelte/index.js +740 -540
  79. package/dist/svelte/source/components/ReflectivePlane.svelte +329 -0
  80. package/dist/svelte/source/engine/Preview.svelte +2 -0
  81. package/dist/svelte/source/index.js +1 -0
  82. package/dist/svelte/utils/generatePresetCode.js +11 -0
  83. package/dist/vue/Preview.vue_vue_type_script_setup_true_lang.js +2 -0
  84. package/dist/vue/ReflectivePlane.js +3 -0
  85. package/dist/vue/ReflectivePlane.vue_vue_type_script_setup_true_lang.js +218 -0
  86. package/dist/vue/Shader.vue_vue_type_script_setup_true_lang.js +1 -1
  87. package/dist/vue/components/ReflectivePlane.vue.d.ts +58 -0
  88. package/dist/vue/components/ReflectivePlane.vue.d.ts.map +1 -0
  89. package/dist/vue/index.d.ts +1 -0
  90. package/dist/vue/index.d.ts.map +1 -1
  91. package/dist/vue/index.js +2 -1
  92. package/dist/vue/utils/generatePresetCode.d.ts.map +1 -1
  93. package/dist/vue/utils/generatePresetCode.js +11 -0
  94. package/package.json +9 -1
  95. /package/dist/core/{Ring-CtnDtTY8.js → Ring-UT__kmzY.js} +0 -0
  96. /package/dist/core/{Ripples-B4H0VoZb.js → Ripples-CWVLSUP0.js} +0 -0
  97. /package/dist/core/{RoundedRect-tnt7Jr5b.js → RoundedRect-BPWHTT1j.js} +0 -0
  98. /package/dist/core/{Saturation-6FlxHXSi.js → Saturation-DFOp2yD9.js} +0 -0
  99. /package/dist/core/{Sharpness-C4cJlBuh.js → Sharpness-C-IEswPL.js} +0 -0
  100. /package/dist/core/{Shatter-CnkycTRD.js → Shatter-CUYQp-qy.js} +0 -0
  101. /package/dist/core/{SimplexNoise-BnRaoxON.js → SimplexNoise-LAxWw8fJ.js} +0 -0
  102. /package/dist/core/{SineWave-CZ4Fanvr.js → SineWave-CEQWxC9Q.js} +0 -0
  103. /package/dist/core/{Smoke-CXPjGG-b.js → Smoke-DO4yylWk.js} +0 -0
  104. /package/dist/core/{SmokeFill-DzEtYeKN.js → SmokeFill-Dm0sZS5F.js} +0 -0
  105. /package/dist/core/{Solarize-CynVlxjT.js → Solarize-mE7LU1li.js} +0 -0
  106. /package/dist/core/{SolidColor-dCAOGC_P.js → SolidColor-BljkSdvg.js} +0 -0
  107. /package/dist/core/{Spherize-C77QGVWj.js → Spherize-DARagREe.js} +0 -0
  108. /package/dist/core/{Spiral-eN65wa6O.js → Spiral-CumsIpkp.js} +0 -0
  109. /package/dist/core/{Star-0Flymgm9.js → Star-8fAlzR9L.js} +0 -0
  110. /package/dist/core/{Strands-DnWJDGiO.js → Strands-BB4RIsFz.js} +0 -0
  111. /package/dist/core/{Stretch-B5XGF1bF.js → Stretch-3S2atBkJ.js} +0 -0
  112. /package/dist/core/{Stripes-CNXJpFyr.js → Stripes-BGFVSZIt.js} +0 -0
  113. /package/dist/core/{StudioBackground-DtiE2mCf.js → StudioBackground-BtJ6b1Ki.js} +0 -0
  114. /package/dist/core/{SunBurst-D9X1-buZ.js → SunBurst-BJRFFYhs.js} +0 -0
  115. /package/dist/core/{Swirl-BV6pN94G.js → Swirl-KA9cEnLI.js} +0 -0
  116. /package/dist/core/{TiltShift-r4qzPb2k.js → TiltShift-DtQ3dRL-.js} +0 -0
  117. /package/dist/core/{Tint-CJ8FQdzA.js → Tint-W_EvzN1-.js} +0 -0
  118. /package/dist/core/{Trapezoid-JmybJMUr.js → Trapezoid-cQzS6-bh.js} +0 -0
  119. /package/dist/core/{Tritone-D_QvxjGc.js → Tritone-B3hI2nAi.js} +0 -0
  120. /package/dist/core/{Truchet-BJeZS_JQ.js → Truchet-s9PmowCP.js} +0 -0
  121. /package/dist/core/{Twirl-8ayqS0n8.js → Twirl-UDDXGkFl.js} +0 -0
  122. /package/dist/core/{VHS-Gbec95K_.js → VHS-DW1H7Wuy.js} +0 -0
  123. /package/dist/core/{Vesica-D7iqgpJg.js → Vesica-ChQBYWuw.js} +0 -0
  124. /package/dist/core/{Vibrance-COKHmh8r.js → Vibrance-DUj7hwzE.js} +0 -0
  125. /package/dist/core/{Vignette-Y_2yono-.js → Vignette-F9yxi-UM.js} +0 -0
  126. /package/dist/core/{Voronoi-DQ_f6k5D.js → Voronoi-D8HHP_WR.js} +0 -0
  127. /package/dist/core/{WaveDistortion-R5FfwKQN.js → WaveDistortion-CDIc5Uyk.js} +0 -0
  128. /package/dist/core/{Weave-DJ4s3Gwc.js → Weave-ou5shgl3.js} +0 -0
  129. /package/dist/core/{WorleyNoise-CWytDfGH.js → WorleyNoise-Uf6IPm7A.js} +0 -0
  130. /package/dist/core/{ZoomBlur-DWFQVFMK.js → ZoomBlur-DJ-RNKHM.js} +0 -0
  131. /package/dist/core/{browser-BamVDhaZ.js → browser-NUM-x2tw.js} +0 -0
@@ -81,48 +81,49 @@ import { componentDefinition as componentDefinition$74 } from "../core/shaders/P
81
81
  import { componentDefinition as componentDefinition$75 } from "../core/shaders/ProgressiveBlur/index.js";
82
82
  import { componentDefinition as componentDefinition$76 } from "../core/shaders/RadialGradient/index.js";
83
83
  import { componentDefinition as componentDefinition$77 } from "../core/shaders/RectangularCoordinates/index.js";
84
- import { componentDefinition as componentDefinition$78 } from "../core/shaders/Ring/index.js";
85
- import { componentDefinition as componentDefinition$79 } from "../core/shaders/Ripples/index.js";
86
- import { componentDefinition as componentDefinition$80 } from "../core/shaders/RoundedRect/index.js";
87
- import { componentDefinition as componentDefinition$81 } from "../core/shaders/Saturation/index.js";
88
- import { componentDefinition as componentDefinition$82 } from "../core/shaders/Sharpness/index.js";
89
- import { componentDefinition as componentDefinition$83 } from "../core/shaders/Shatter/index.js";
90
- import { componentDefinition as componentDefinition$84 } from "../core/shaders/SimplexNoise/index.js";
91
- import { componentDefinition as componentDefinition$85 } from "../core/shaders/SineWave/index.js";
92
- import { componentDefinition as componentDefinition$86 } from "../core/shaders/Smoke/index.js";
93
- import { componentDefinition as componentDefinition$87 } from "../core/shaders/SmokeFill/index.js";
94
- import { componentDefinition as componentDefinition$88 } from "../core/shaders/Solarize/index.js";
95
- import { componentDefinition as componentDefinition$89 } from "../core/shaders/SolidColor/index.js";
96
- import { componentDefinition as componentDefinition$90 } from "../core/shaders/Spherize/index.js";
97
- import { componentDefinition as componentDefinition$91 } from "../core/shaders/Spiral/index.js";
98
- import { componentDefinition as componentDefinition$92 } from "../core/shaders/Star/index.js";
99
- import { componentDefinition as componentDefinition$93 } from "../core/shaders/Strands/index.js";
100
- import { componentDefinition as componentDefinition$94 } from "../core/shaders/Stretch/index.js";
101
- import { componentDefinition as componentDefinition$95 } from "../core/shaders/Stripes/index.js";
102
- import { componentDefinition as componentDefinition$96 } from "../core/shaders/StudioBackground/index.js";
103
- import { componentDefinition as componentDefinition$97 } from "../core/shaders/SunBurst/index.js";
104
- import { componentDefinition as componentDefinition$98 } from "../core/shaders/Swirl/index.js";
105
- import { componentDefinition as componentDefinition$99 } from "../core/shaders/TiltShift/index.js";
106
- import { componentDefinition as componentDefinition$100 } from "../core/shaders/Tint/index.js";
107
- import { componentDefinition as componentDefinition$101 } from "../core/shaders/Trapezoid/index.js";
108
- import { componentDefinition as componentDefinition$102 } from "../core/shaders/Tritone/index.js";
109
- import { componentDefinition as componentDefinition$103 } from "../core/shaders/Truchet/index.js";
110
- import { componentDefinition as componentDefinition$104 } from "../core/shaders/Twirl/index.js";
111
- import { componentDefinition as componentDefinition$105 } from "../core/shaders/VHS/index.js";
112
- import { componentDefinition as componentDefinition$106 } from "../core/shaders/Vesica/index.js";
113
- import { componentDefinition as componentDefinition$107 } from "../core/shaders/Vibrance/index.js";
114
- import { componentDefinition as componentDefinition$108 } from "../core/shaders/VideoTexture/index.js";
115
- import { componentDefinition as componentDefinition$109 } from "../core/shaders/Vignette/index.js";
116
- import { componentDefinition as componentDefinition$110 } from "../core/shaders/Voronoi/index.js";
117
- import { componentDefinition as componentDefinition$111 } from "../core/shaders/WaveDistortion/index.js";
118
- import { componentDefinition as componentDefinition$112 } from "../core/shaders/Weave/index.js";
119
- import { componentDefinition as componentDefinition$113 } from "../core/shaders/WebcamTexture/index.js";
120
- import { componentDefinition as componentDefinition$114 } from "../core/shaders/WorleyNoise/index.js";
121
- import { componentDefinition as componentDefinition$115 } from "../core/shaders/ZoomBlur/index.js";
84
+ import { componentDefinition as componentDefinition$78 } from "../core/shaders/ReflectivePlane/index.js";
85
+ import { componentDefinition as componentDefinition$79 } from "../core/shaders/Ring/index.js";
86
+ import { componentDefinition as componentDefinition$80 } from "../core/shaders/Ripples/index.js";
87
+ import { componentDefinition as componentDefinition$81 } from "../core/shaders/RoundedRect/index.js";
88
+ import { componentDefinition as componentDefinition$82 } from "../core/shaders/Saturation/index.js";
89
+ import { componentDefinition as componentDefinition$83 } from "../core/shaders/Sharpness/index.js";
90
+ import { componentDefinition as componentDefinition$84 } from "../core/shaders/Shatter/index.js";
91
+ import { componentDefinition as componentDefinition$85 } from "../core/shaders/SimplexNoise/index.js";
92
+ import { componentDefinition as componentDefinition$86 } from "../core/shaders/SineWave/index.js";
93
+ import { componentDefinition as componentDefinition$87 } from "../core/shaders/Smoke/index.js";
94
+ import { componentDefinition as componentDefinition$88 } from "../core/shaders/SmokeFill/index.js";
95
+ import { componentDefinition as componentDefinition$89 } from "../core/shaders/Solarize/index.js";
96
+ import { componentDefinition as componentDefinition$90 } from "../core/shaders/SolidColor/index.js";
97
+ import { componentDefinition as componentDefinition$91 } from "../core/shaders/Spherize/index.js";
98
+ import { componentDefinition as componentDefinition$92 } from "../core/shaders/Spiral/index.js";
99
+ import { componentDefinition as componentDefinition$93 } from "../core/shaders/Star/index.js";
100
+ import { componentDefinition as componentDefinition$94 } from "../core/shaders/Strands/index.js";
101
+ import { componentDefinition as componentDefinition$95 } from "../core/shaders/Stretch/index.js";
102
+ import { componentDefinition as componentDefinition$96 } from "../core/shaders/Stripes/index.js";
103
+ import { componentDefinition as componentDefinition$97 } from "../core/shaders/StudioBackground/index.js";
104
+ import { componentDefinition as componentDefinition$98 } from "../core/shaders/SunBurst/index.js";
105
+ import { componentDefinition as componentDefinition$99 } from "../core/shaders/Swirl/index.js";
106
+ import { componentDefinition as componentDefinition$100 } from "../core/shaders/TiltShift/index.js";
107
+ import { componentDefinition as componentDefinition$101 } from "../core/shaders/Tint/index.js";
108
+ import { componentDefinition as componentDefinition$102 } from "../core/shaders/Trapezoid/index.js";
109
+ import { componentDefinition as componentDefinition$103 } from "../core/shaders/Tritone/index.js";
110
+ import { componentDefinition as componentDefinition$104 } from "../core/shaders/Truchet/index.js";
111
+ import { componentDefinition as componentDefinition$105 } from "../core/shaders/Twirl/index.js";
112
+ import { componentDefinition as componentDefinition$106 } from "../core/shaders/VHS/index.js";
113
+ import { componentDefinition as componentDefinition$107 } from "../core/shaders/Vesica/index.js";
114
+ import { componentDefinition as componentDefinition$108 } from "../core/shaders/Vibrance/index.js";
115
+ import { componentDefinition as componentDefinition$109 } from "../core/shaders/VideoTexture/index.js";
116
+ import { componentDefinition as componentDefinition$110 } from "../core/shaders/Vignette/index.js";
117
+ import { componentDefinition as componentDefinition$111 } from "../core/shaders/Voronoi/index.js";
118
+ import { componentDefinition as componentDefinition$112 } from "../core/shaders/WaveDistortion/index.js";
119
+ import { componentDefinition as componentDefinition$113 } from "../core/shaders/Weave/index.js";
120
+ import { componentDefinition as componentDefinition$114 } from "../core/shaders/WebcamTexture/index.js";
121
+ import { componentDefinition as componentDefinition$115 } from "../core/shaders/WorleyNoise/index.js";
122
+ import { componentDefinition as componentDefinition$116 } from "../core/shaders/ZoomBlur/index.js";
122
123
  import { vec4 } from "three/tsl";
123
124
  import { isExternalUser, startTelemetry } from "../core/telemetry/index.js";
124
- var root_2$115 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
125
- var root$116 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
125
+ var root_2$116 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
126
+ var root$117 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
126
127
  function AngularBlur($$anchor, $$props) {
127
128
  $.push($$props, true);
128
129
  let _experimentalWarnedOnce = false;
@@ -287,7 +288,7 @@ function AngularBlur($$anchor, $$props) {
287
288
  $.set(isRegistered, false);
288
289
  parentRegister(instanceId, null, null, null, null);
289
290
  });
290
- var fragment = root$116();
291
+ var fragment = root$117();
291
292
  var span = $.first_child(fragment);
292
293
  var node_1 = $.child(span);
293
294
  var consequent = ($$anchor$1) => {
@@ -300,7 +301,7 @@ function AngularBlur($$anchor, $$props) {
300
301
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
301
302
  var node_2 = $.sibling(span, 2);
302
303
  var consequent_1 = ($$anchor$1) => {
303
- var canvas = root_2$115();
304
+ var canvas = root_2$116();
304
305
  var node_3 = $.child(canvas);
305
306
  children?.(node_3);
306
307
  $.reset(canvas);
@@ -319,8 +320,8 @@ function AngularBlur($$anchor, $$props) {
319
320
  $.append($$anchor, fragment);
320
321
  $.pop();
321
322
  }
322
- var root_2$114 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
323
- var root$115 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
323
+ var root_2$115 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
324
+ var root$116 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
324
325
  function Ascii($$anchor, $$props) {
325
326
  $.push($$props, true);
326
327
  let _experimentalWarnedOnce = false;
@@ -485,7 +486,7 @@ function Ascii($$anchor, $$props) {
485
486
  $.set(isRegistered, false);
486
487
  parentRegister(instanceId, null, null, null, null);
487
488
  });
488
- var fragment = root$115();
489
+ var fragment = root$116();
489
490
  var span = $.first_child(fragment);
490
491
  var node_1 = $.child(span);
491
492
  var consequent = ($$anchor$1) => {
@@ -498,7 +499,7 @@ function Ascii($$anchor, $$props) {
498
499
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
499
500
  var node_2 = $.sibling(span, 2);
500
501
  var consequent_1 = ($$anchor$1) => {
501
- var canvas = root_2$114();
502
+ var canvas = root_2$115();
502
503
  var node_3 = $.child(canvas);
503
504
  children?.(node_3);
504
505
  $.reset(canvas);
@@ -517,8 +518,8 @@ function Ascii($$anchor, $$props) {
517
518
  $.append($$anchor, fragment);
518
519
  $.pop();
519
520
  }
520
- var root_2$113 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
521
- var root$114 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
521
+ var root_2$114 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
522
+ var root$115 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
522
523
  function Aurora($$anchor, $$props) {
523
524
  $.push($$props, true);
524
525
  let _experimentalWarnedOnce = false;
@@ -683,7 +684,7 @@ function Aurora($$anchor, $$props) {
683
684
  $.set(isRegistered, false);
684
685
  parentRegister(instanceId, null, null, null, null);
685
686
  });
686
- var fragment = root$114();
687
+ var fragment = root$115();
687
688
  var span = $.first_child(fragment);
688
689
  var node_1 = $.child(span);
689
690
  var consequent = ($$anchor$1) => {
@@ -696,7 +697,7 @@ function Aurora($$anchor, $$props) {
696
697
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
697
698
  var node_2 = $.sibling(span, 2);
698
699
  var consequent_1 = ($$anchor$1) => {
699
- var canvas = root_2$113();
700
+ var canvas = root_2$114();
700
701
  var node_3 = $.child(canvas);
701
702
  children?.(node_3);
702
703
  $.reset(canvas);
@@ -715,8 +716,8 @@ function Aurora($$anchor, $$props) {
715
716
  $.append($$anchor, fragment);
716
717
  $.pop();
717
718
  }
718
- var root_2$112 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
719
- var root$113 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
719
+ var root_2$113 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
720
+ var root$114 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
720
721
  function BarShift($$anchor, $$props) {
721
722
  $.push($$props, true);
722
723
  let _experimentalWarnedOnce = false;
@@ -881,7 +882,7 @@ function BarShift($$anchor, $$props) {
881
882
  $.set(isRegistered, false);
882
883
  parentRegister(instanceId, null, null, null, null);
883
884
  });
884
- var fragment = root$113();
885
+ var fragment = root$114();
885
886
  var span = $.first_child(fragment);
886
887
  var node_1 = $.child(span);
887
888
  var consequent = ($$anchor$1) => {
@@ -894,7 +895,7 @@ function BarShift($$anchor, $$props) {
894
895
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
895
896
  var node_2 = $.sibling(span, 2);
896
897
  var consequent_1 = ($$anchor$1) => {
897
- var canvas = root_2$112();
898
+ var canvas = root_2$113();
898
899
  var node_3 = $.child(canvas);
899
900
  children?.(node_3);
900
901
  $.reset(canvas);
@@ -913,8 +914,8 @@ function BarShift($$anchor, $$props) {
913
914
  $.append($$anchor, fragment);
914
915
  $.pop();
915
916
  }
916
- var root_2$111 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
917
- var root$112 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
917
+ var root_2$112 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
918
+ var root$113 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
918
919
  function Beam($$anchor, $$props) {
919
920
  $.push($$props, true);
920
921
  let _experimentalWarnedOnce = false;
@@ -1079,7 +1080,7 @@ function Beam($$anchor, $$props) {
1079
1080
  $.set(isRegistered, false);
1080
1081
  parentRegister(instanceId, null, null, null, null);
1081
1082
  });
1082
- var fragment = root$112();
1083
+ var fragment = root$113();
1083
1084
  var span = $.first_child(fragment);
1084
1085
  var node_1 = $.child(span);
1085
1086
  var consequent = ($$anchor$1) => {
@@ -1092,7 +1093,7 @@ function Beam($$anchor, $$props) {
1092
1093
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
1093
1094
  var node_2 = $.sibling(span, 2);
1094
1095
  var consequent_1 = ($$anchor$1) => {
1095
- var canvas = root_2$111();
1096
+ var canvas = root_2$112();
1096
1097
  var node_3 = $.child(canvas);
1097
1098
  children?.(node_3);
1098
1099
  $.reset(canvas);
@@ -1111,8 +1112,8 @@ function Beam($$anchor, $$props) {
1111
1112
  $.append($$anchor, fragment);
1112
1113
  $.pop();
1113
1114
  }
1114
- var root_2$110 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1115
- var root$111 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1115
+ var root_2$111 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1116
+ var root$112 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1116
1117
  function Blob($$anchor, $$props) {
1117
1118
  $.push($$props, true);
1118
1119
  let _experimentalWarnedOnce = false;
@@ -1277,7 +1278,7 @@ function Blob($$anchor, $$props) {
1277
1278
  $.set(isRegistered, false);
1278
1279
  parentRegister(instanceId, null, null, null, null);
1279
1280
  });
1280
- var fragment = root$111();
1281
+ var fragment = root$112();
1281
1282
  var span = $.first_child(fragment);
1282
1283
  var node_1 = $.child(span);
1283
1284
  var consequent = ($$anchor$1) => {
@@ -1290,7 +1291,7 @@ function Blob($$anchor, $$props) {
1290
1291
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
1291
1292
  var node_2 = $.sibling(span, 2);
1292
1293
  var consequent_1 = ($$anchor$1) => {
1293
- var canvas = root_2$110();
1294
+ var canvas = root_2$111();
1294
1295
  var node_3 = $.child(canvas);
1295
1296
  children?.(node_3);
1296
1297
  $.reset(canvas);
@@ -1309,8 +1310,8 @@ function Blob($$anchor, $$props) {
1309
1310
  $.append($$anchor, fragment);
1310
1311
  $.pop();
1311
1312
  }
1312
- var root_2$109 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1313
- var root$110 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1313
+ var root_2$110 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1314
+ var root$111 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1314
1315
  function Blur($$anchor, $$props) {
1315
1316
  $.push($$props, true);
1316
1317
  let _experimentalWarnedOnce = false;
@@ -1475,7 +1476,7 @@ function Blur($$anchor, $$props) {
1475
1476
  $.set(isRegistered, false);
1476
1477
  parentRegister(instanceId, null, null, null, null);
1477
1478
  });
1478
- var fragment = root$110();
1479
+ var fragment = root$111();
1479
1480
  var span = $.first_child(fragment);
1480
1481
  var node_1 = $.child(span);
1481
1482
  var consequent = ($$anchor$1) => {
@@ -1488,7 +1489,7 @@ function Blur($$anchor, $$props) {
1488
1489
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
1489
1490
  var node_2 = $.sibling(span, 2);
1490
1491
  var consequent_1 = ($$anchor$1) => {
1491
- var canvas = root_2$109();
1492
+ var canvas = root_2$110();
1492
1493
  var node_3 = $.child(canvas);
1493
1494
  children?.(node_3);
1494
1495
  $.reset(canvas);
@@ -1507,8 +1508,8 @@ function Blur($$anchor, $$props) {
1507
1508
  $.append($$anchor, fragment);
1508
1509
  $.pop();
1509
1510
  }
1510
- var root_2$108 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1511
- var root$109 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1511
+ var root_2$109 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1512
+ var root$110 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1512
1513
  function BrickPattern($$anchor, $$props) {
1513
1514
  $.push($$props, true);
1514
1515
  let _experimentalWarnedOnce = false;
@@ -1673,7 +1674,7 @@ function BrickPattern($$anchor, $$props) {
1673
1674
  $.set(isRegistered, false);
1674
1675
  parentRegister(instanceId, null, null, null, null);
1675
1676
  });
1676
- var fragment = root$109();
1677
+ var fragment = root$110();
1677
1678
  var span = $.first_child(fragment);
1678
1679
  var node_1 = $.child(span);
1679
1680
  var consequent = ($$anchor$1) => {
@@ -1686,7 +1687,7 @@ function BrickPattern($$anchor, $$props) {
1686
1687
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
1687
1688
  var node_2 = $.sibling(span, 2);
1688
1689
  var consequent_1 = ($$anchor$1) => {
1689
- var canvas = root_2$108();
1690
+ var canvas = root_2$109();
1690
1691
  var node_3 = $.child(canvas);
1691
1692
  children?.(node_3);
1692
1693
  $.reset(canvas);
@@ -1705,8 +1706,8 @@ function BrickPattern($$anchor, $$props) {
1705
1706
  $.append($$anchor, fragment);
1706
1707
  $.pop();
1707
1708
  }
1708
- var root_2$107 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1709
- var root$108 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1709
+ var root_2$108 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1710
+ var root$109 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1710
1711
  function BrightnessContrast($$anchor, $$props) {
1711
1712
  $.push($$props, true);
1712
1713
  let _experimentalWarnedOnce = false;
@@ -1871,7 +1872,7 @@ function BrightnessContrast($$anchor, $$props) {
1871
1872
  $.set(isRegistered, false);
1872
1873
  parentRegister(instanceId, null, null, null, null);
1873
1874
  });
1874
- var fragment = root$108();
1875
+ var fragment = root$109();
1875
1876
  var span = $.first_child(fragment);
1876
1877
  var node_1 = $.child(span);
1877
1878
  var consequent = ($$anchor$1) => {
@@ -1884,7 +1885,7 @@ function BrightnessContrast($$anchor, $$props) {
1884
1885
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
1885
1886
  var node_2 = $.sibling(span, 2);
1886
1887
  var consequent_1 = ($$anchor$1) => {
1887
- var canvas = root_2$107();
1888
+ var canvas = root_2$108();
1888
1889
  var node_3 = $.child(canvas);
1889
1890
  children?.(node_3);
1890
1891
  $.reset(canvas);
@@ -1903,8 +1904,8 @@ function BrightnessContrast($$anchor, $$props) {
1903
1904
  $.append($$anchor, fragment);
1904
1905
  $.pop();
1905
1906
  }
1906
- var root_2$106 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1907
- var root$107 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1907
+ var root_2$107 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
1908
+ var root$108 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
1908
1909
  function Bulge($$anchor, $$props) {
1909
1910
  $.push($$props, true);
1910
1911
  let _experimentalWarnedOnce = false;
@@ -2069,7 +2070,7 @@ function Bulge($$anchor, $$props) {
2069
2070
  $.set(isRegistered, false);
2070
2071
  parentRegister(instanceId, null, null, null, null);
2071
2072
  });
2072
- var fragment = root$107();
2073
+ var fragment = root$108();
2073
2074
  var span = $.first_child(fragment);
2074
2075
  var node_1 = $.child(span);
2075
2076
  var consequent = ($$anchor$1) => {
@@ -2082,7 +2083,7 @@ function Bulge($$anchor, $$props) {
2082
2083
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
2083
2084
  var node_2 = $.sibling(span, 2);
2084
2085
  var consequent_1 = ($$anchor$1) => {
2085
- var canvas = root_2$106();
2086
+ var canvas = root_2$107();
2086
2087
  var node_3 = $.child(canvas);
2087
2088
  children?.(node_3);
2088
2089
  $.reset(canvas);
@@ -2101,8 +2102,8 @@ function Bulge($$anchor, $$props) {
2101
2102
  $.append($$anchor, fragment);
2102
2103
  $.pop();
2103
2104
  }
2104
- var root_2$105 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2105
- var root$106 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2105
+ var root_2$106 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2106
+ var root$107 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2106
2107
  function CRTScreen($$anchor, $$props) {
2107
2108
  $.push($$props, true);
2108
2109
  let _experimentalWarnedOnce = false;
@@ -2267,7 +2268,7 @@ function CRTScreen($$anchor, $$props) {
2267
2268
  $.set(isRegistered, false);
2268
2269
  parentRegister(instanceId, null, null, null, null);
2269
2270
  });
2270
- var fragment = root$106();
2271
+ var fragment = root$107();
2271
2272
  var span = $.first_child(fragment);
2272
2273
  var node_1 = $.child(span);
2273
2274
  var consequent = ($$anchor$1) => {
@@ -2280,7 +2281,7 @@ function CRTScreen($$anchor, $$props) {
2280
2281
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
2281
2282
  var node_2 = $.sibling(span, 2);
2282
2283
  var consequent_1 = ($$anchor$1) => {
2283
- var canvas = root_2$105();
2284
+ var canvas = root_2$106();
2284
2285
  var node_3 = $.child(canvas);
2285
2286
  children?.(node_3);
2286
2287
  $.reset(canvas);
@@ -2299,8 +2300,8 @@ function CRTScreen($$anchor, $$props) {
2299
2300
  $.append($$anchor, fragment);
2300
2301
  $.pop();
2301
2302
  }
2302
- var root_2$104 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2303
- var root$105 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2303
+ var root_2$105 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2304
+ var root$106 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2304
2305
  function ChannelBlur($$anchor, $$props) {
2305
2306
  $.push($$props, true);
2306
2307
  let _experimentalWarnedOnce = false;
@@ -2465,7 +2466,7 @@ function ChannelBlur($$anchor, $$props) {
2465
2466
  $.set(isRegistered, false);
2466
2467
  parentRegister(instanceId, null, null, null, null);
2467
2468
  });
2468
- var fragment = root$105();
2469
+ var fragment = root$106();
2469
2470
  var span = $.first_child(fragment);
2470
2471
  var node_1 = $.child(span);
2471
2472
  var consequent = ($$anchor$1) => {
@@ -2478,7 +2479,7 @@ function ChannelBlur($$anchor, $$props) {
2478
2479
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
2479
2480
  var node_2 = $.sibling(span, 2);
2480
2481
  var consequent_1 = ($$anchor$1) => {
2481
- var canvas = root_2$104();
2482
+ var canvas = root_2$105();
2482
2483
  var node_3 = $.child(canvas);
2483
2484
  children?.(node_3);
2484
2485
  $.reset(canvas);
@@ -2497,8 +2498,8 @@ function ChannelBlur($$anchor, $$props) {
2497
2498
  $.append($$anchor, fragment);
2498
2499
  $.pop();
2499
2500
  }
2500
- var root_2$103 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2501
- var root$104 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2501
+ var root_2$104 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2502
+ var root$105 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2502
2503
  function Checkerboard($$anchor, $$props) {
2503
2504
  $.push($$props, true);
2504
2505
  let _experimentalWarnedOnce = false;
@@ -2663,7 +2664,7 @@ function Checkerboard($$anchor, $$props) {
2663
2664
  $.set(isRegistered, false);
2664
2665
  parentRegister(instanceId, null, null, null, null);
2665
2666
  });
2666
- var fragment = root$104();
2667
+ var fragment = root$105();
2667
2668
  var span = $.first_child(fragment);
2668
2669
  var node_1 = $.child(span);
2669
2670
  var consequent = ($$anchor$1) => {
@@ -2676,7 +2677,7 @@ function Checkerboard($$anchor, $$props) {
2676
2677
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
2677
2678
  var node_2 = $.sibling(span, 2);
2678
2679
  var consequent_1 = ($$anchor$1) => {
2679
- var canvas = root_2$103();
2680
+ var canvas = root_2$104();
2680
2681
  var node_3 = $.child(canvas);
2681
2682
  children?.(node_3);
2682
2683
  $.reset(canvas);
@@ -2695,8 +2696,8 @@ function Checkerboard($$anchor, $$props) {
2695
2696
  $.append($$anchor, fragment);
2696
2697
  $.pop();
2697
2698
  }
2698
- var root_2$102 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2699
- var root$103 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2699
+ var root_2$103 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2700
+ var root$104 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2700
2701
  function Chevron($$anchor, $$props) {
2701
2702
  $.push($$props, true);
2702
2703
  let _experimentalWarnedOnce = false;
@@ -2861,7 +2862,7 @@ function Chevron($$anchor, $$props) {
2861
2862
  $.set(isRegistered, false);
2862
2863
  parentRegister(instanceId, null, null, null, null);
2863
2864
  });
2864
- var fragment = root$103();
2865
+ var fragment = root$104();
2865
2866
  var span = $.first_child(fragment);
2866
2867
  var node_1 = $.child(span);
2867
2868
  var consequent = ($$anchor$1) => {
@@ -2874,7 +2875,7 @@ function Chevron($$anchor, $$props) {
2874
2875
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
2875
2876
  var node_2 = $.sibling(span, 2);
2876
2877
  var consequent_1 = ($$anchor$1) => {
2877
- var canvas = root_2$102();
2878
+ var canvas = root_2$103();
2878
2879
  var node_3 = $.child(canvas);
2879
2880
  children?.(node_3);
2880
2881
  $.reset(canvas);
@@ -2893,8 +2894,8 @@ function Chevron($$anchor, $$props) {
2893
2894
  $.append($$anchor, fragment);
2894
2895
  $.pop();
2895
2896
  }
2896
- var root_2$101 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2897
- var root$102 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2897
+ var root_2$102 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
2898
+ var root$103 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
2898
2899
  function ChromaFlow($$anchor, $$props) {
2899
2900
  $.push($$props, true);
2900
2901
  let _experimentalWarnedOnce = false;
@@ -3059,7 +3060,7 @@ function ChromaFlow($$anchor, $$props) {
3059
3060
  $.set(isRegistered, false);
3060
3061
  parentRegister(instanceId, null, null, null, null);
3061
3062
  });
3062
- var fragment = root$102();
3063
+ var fragment = root$103();
3063
3064
  var span = $.first_child(fragment);
3064
3065
  var node_1 = $.child(span);
3065
3066
  var consequent = ($$anchor$1) => {
@@ -3072,7 +3073,7 @@ function ChromaFlow($$anchor, $$props) {
3072
3073
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
3073
3074
  var node_2 = $.sibling(span, 2);
3074
3075
  var consequent_1 = ($$anchor$1) => {
3075
- var canvas = root_2$101();
3076
+ var canvas = root_2$102();
3076
3077
  var node_3 = $.child(canvas);
3077
3078
  children?.(node_3);
3078
3079
  $.reset(canvas);
@@ -3091,8 +3092,8 @@ function ChromaFlow($$anchor, $$props) {
3091
3092
  $.append($$anchor, fragment);
3092
3093
  $.pop();
3093
3094
  }
3094
- var root_2$100 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3095
- var root$101 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3095
+ var root_2$101 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3096
+ var root$102 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3096
3097
  function ChromaticAberration($$anchor, $$props) {
3097
3098
  $.push($$props, true);
3098
3099
  let _experimentalWarnedOnce = false;
@@ -3257,7 +3258,7 @@ function ChromaticAberration($$anchor, $$props) {
3257
3258
  $.set(isRegistered, false);
3258
3259
  parentRegister(instanceId, null, null, null, null);
3259
3260
  });
3260
- var fragment = root$101();
3261
+ var fragment = root$102();
3261
3262
  var span = $.first_child(fragment);
3262
3263
  var node_1 = $.child(span);
3263
3264
  var consequent = ($$anchor$1) => {
@@ -3270,7 +3271,7 @@ function ChromaticAberration($$anchor, $$props) {
3270
3271
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
3271
3272
  var node_2 = $.sibling(span, 2);
3272
3273
  var consequent_1 = ($$anchor$1) => {
3273
- var canvas = root_2$100();
3274
+ var canvas = root_2$101();
3274
3275
  var node_3 = $.child(canvas);
3275
3276
  children?.(node_3);
3276
3277
  $.reset(canvas);
@@ -3289,8 +3290,8 @@ function ChromaticAberration($$anchor, $$props) {
3289
3290
  $.append($$anchor, fragment);
3290
3291
  $.pop();
3291
3292
  }
3292
- var root_2$99 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3293
- var root$100 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3293
+ var root_2$100 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3294
+ var root$101 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3294
3295
  function Circle($$anchor, $$props) {
3295
3296
  $.push($$props, true);
3296
3297
  let _experimentalWarnedOnce = false;
@@ -3455,7 +3456,7 @@ function Circle($$anchor, $$props) {
3455
3456
  $.set(isRegistered, false);
3456
3457
  parentRegister(instanceId, null, null, null, null);
3457
3458
  });
3458
- var fragment = root$100();
3459
+ var fragment = root$101();
3459
3460
  var span = $.first_child(fragment);
3460
3461
  var node_1 = $.child(span);
3461
3462
  var consequent = ($$anchor$1) => {
@@ -3468,7 +3469,7 @@ function Circle($$anchor, $$props) {
3468
3469
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
3469
3470
  var node_2 = $.sibling(span, 2);
3470
3471
  var consequent_1 = ($$anchor$1) => {
3471
- var canvas = root_2$99();
3472
+ var canvas = root_2$100();
3472
3473
  var node_3 = $.child(canvas);
3473
3474
  children?.(node_3);
3474
3475
  $.reset(canvas);
@@ -3487,8 +3488,8 @@ function Circle($$anchor, $$props) {
3487
3488
  $.append($$anchor, fragment);
3488
3489
  $.pop();
3489
3490
  }
3490
- var root_2$98 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3491
- var root$99 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3491
+ var root_2$99 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3492
+ var root$100 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3492
3493
  function ColorWheel($$anchor, $$props) {
3493
3494
  $.push($$props, true);
3494
3495
  let _experimentalWarnedOnce = false;
@@ -3653,7 +3654,7 @@ function ColorWheel($$anchor, $$props) {
3653
3654
  $.set(isRegistered, false);
3654
3655
  parentRegister(instanceId, null, null, null, null);
3655
3656
  });
3656
- var fragment = root$99();
3657
+ var fragment = root$100();
3657
3658
  var span = $.first_child(fragment);
3658
3659
  var node_1 = $.child(span);
3659
3660
  var consequent = ($$anchor$1) => {
@@ -3666,7 +3667,7 @@ function ColorWheel($$anchor, $$props) {
3666
3667
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
3667
3668
  var node_2 = $.sibling(span, 2);
3668
3669
  var consequent_1 = ($$anchor$1) => {
3669
- var canvas = root_2$98();
3670
+ var canvas = root_2$99();
3670
3671
  var node_3 = $.child(canvas);
3671
3672
  children?.(node_3);
3672
3673
  $.reset(canvas);
@@ -3685,8 +3686,8 @@ function ColorWheel($$anchor, $$props) {
3685
3686
  $.append($$anchor, fragment);
3686
3687
  $.pop();
3687
3688
  }
3688
- var root_2$97 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3689
- var root$98 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3689
+ var root_2$98 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3690
+ var root$99 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3690
3691
  function ConcentricSpin($$anchor, $$props) {
3691
3692
  $.push($$props, true);
3692
3693
  let _experimentalWarnedOnce = false;
@@ -3851,7 +3852,7 @@ function ConcentricSpin($$anchor, $$props) {
3851
3852
  $.set(isRegistered, false);
3852
3853
  parentRegister(instanceId, null, null, null, null);
3853
3854
  });
3854
- var fragment = root$98();
3855
+ var fragment = root$99();
3855
3856
  var span = $.first_child(fragment);
3856
3857
  var node_1 = $.child(span);
3857
3858
  var consequent = ($$anchor$1) => {
@@ -3864,7 +3865,7 @@ function ConcentricSpin($$anchor, $$props) {
3864
3865
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
3865
3866
  var node_2 = $.sibling(span, 2);
3866
3867
  var consequent_1 = ($$anchor$1) => {
3867
- var canvas = root_2$97();
3868
+ var canvas = root_2$98();
3868
3869
  var node_3 = $.child(canvas);
3869
3870
  children?.(node_3);
3870
3871
  $.reset(canvas);
@@ -3883,8 +3884,8 @@ function ConcentricSpin($$anchor, $$props) {
3883
3884
  $.append($$anchor, fragment);
3884
3885
  $.pop();
3885
3886
  }
3886
- var root_2$96 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3887
- var root$97 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3887
+ var root_2$97 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
3888
+ var root$98 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
3888
3889
  function ConicGradient($$anchor, $$props) {
3889
3890
  $.push($$props, true);
3890
3891
  let _experimentalWarnedOnce = false;
@@ -4049,7 +4050,7 @@ function ConicGradient($$anchor, $$props) {
4049
4050
  $.set(isRegistered, false);
4050
4051
  parentRegister(instanceId, null, null, null, null);
4051
4052
  });
4052
- var fragment = root$97();
4053
+ var fragment = root$98();
4053
4054
  var span = $.first_child(fragment);
4054
4055
  var node_1 = $.child(span);
4055
4056
  var consequent = ($$anchor$1) => {
@@ -4062,7 +4063,7 @@ function ConicGradient($$anchor, $$props) {
4062
4063
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
4063
4064
  var node_2 = $.sibling(span, 2);
4064
4065
  var consequent_1 = ($$anchor$1) => {
4065
- var canvas = root_2$96();
4066
+ var canvas = root_2$97();
4066
4067
  var node_3 = $.child(canvas);
4067
4068
  children?.(node_3);
4068
4069
  $.reset(canvas);
@@ -4081,8 +4082,8 @@ function ConicGradient($$anchor, $$props) {
4081
4082
  $.append($$anchor, fragment);
4082
4083
  $.pop();
4083
4084
  }
4084
- var root_2$95 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4085
- var root$96 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4085
+ var root_2$96 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4086
+ var root$97 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4086
4087
  function ContourLines($$anchor, $$props) {
4087
4088
  $.push($$props, true);
4088
4089
  let _experimentalWarnedOnce = false;
@@ -4247,7 +4248,7 @@ function ContourLines($$anchor, $$props) {
4247
4248
  $.set(isRegistered, false);
4248
4249
  parentRegister(instanceId, null, null, null, null);
4249
4250
  });
4250
- var fragment = root$96();
4251
+ var fragment = root$97();
4251
4252
  var span = $.first_child(fragment);
4252
4253
  var node_1 = $.child(span);
4253
4254
  var consequent = ($$anchor$1) => {
@@ -4260,7 +4261,7 @@ function ContourLines($$anchor, $$props) {
4260
4261
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
4261
4262
  var node_2 = $.sibling(span, 2);
4262
4263
  var consequent_1 = ($$anchor$1) => {
4263
- var canvas = root_2$95();
4264
+ var canvas = root_2$96();
4264
4265
  var node_3 = $.child(canvas);
4265
4266
  children?.(node_3);
4266
4267
  $.reset(canvas);
@@ -4279,8 +4280,8 @@ function ContourLines($$anchor, $$props) {
4279
4280
  $.append($$anchor, fragment);
4280
4281
  $.pop();
4281
4282
  }
4282
- var root_2$94 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4283
- var root$95 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4283
+ var root_2$95 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4284
+ var root$96 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4284
4285
  function Crescent($$anchor, $$props) {
4285
4286
  $.push($$props, true);
4286
4287
  let _experimentalWarnedOnce = false;
@@ -4445,7 +4446,7 @@ function Crescent($$anchor, $$props) {
4445
4446
  $.set(isRegistered, false);
4446
4447
  parentRegister(instanceId, null, null, null, null);
4447
4448
  });
4448
- var fragment = root$95();
4449
+ var fragment = root$96();
4449
4450
  var span = $.first_child(fragment);
4450
4451
  var node_1 = $.child(span);
4451
4452
  var consequent = ($$anchor$1) => {
@@ -4458,7 +4459,7 @@ function Crescent($$anchor, $$props) {
4458
4459
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
4459
4460
  var node_2 = $.sibling(span, 2);
4460
4461
  var consequent_1 = ($$anchor$1) => {
4461
- var canvas = root_2$94();
4462
+ var canvas = root_2$95();
4462
4463
  var node_3 = $.child(canvas);
4463
4464
  children?.(node_3);
4464
4465
  $.reset(canvas);
@@ -4477,8 +4478,8 @@ function Crescent($$anchor, $$props) {
4477
4478
  $.append($$anchor, fragment);
4478
4479
  $.pop();
4479
4480
  }
4480
- var root_2$93 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4481
- var root$94 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4481
+ var root_2$94 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4482
+ var root$95 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4482
4483
  function Cross($$anchor, $$props) {
4483
4484
  $.push($$props, true);
4484
4485
  let _experimentalWarnedOnce = false;
@@ -4643,7 +4644,7 @@ function Cross($$anchor, $$props) {
4643
4644
  $.set(isRegistered, false);
4644
4645
  parentRegister(instanceId, null, null, null, null);
4645
4646
  });
4646
- var fragment = root$94();
4647
+ var fragment = root$95();
4647
4648
  var span = $.first_child(fragment);
4648
4649
  var node_1 = $.child(span);
4649
4650
  var consequent = ($$anchor$1) => {
@@ -4656,7 +4657,7 @@ function Cross($$anchor, $$props) {
4656
4657
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
4657
4658
  var node_2 = $.sibling(span, 2);
4658
4659
  var consequent_1 = ($$anchor$1) => {
4659
- var canvas = root_2$93();
4660
+ var canvas = root_2$94();
4660
4661
  var node_3 = $.child(canvas);
4661
4662
  children?.(node_3);
4662
4663
  $.reset(canvas);
@@ -4675,8 +4676,8 @@ function Cross($$anchor, $$props) {
4675
4676
  $.append($$anchor, fragment);
4676
4677
  $.pop();
4677
4678
  }
4678
- var root_2$92 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4679
- var root$93 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4679
+ var root_2$93 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4680
+ var root$94 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4680
4681
  function Crystal($$anchor, $$props) {
4681
4682
  $.push($$props, true);
4682
4683
  let _experimentalWarnedOnce = false;
@@ -4841,7 +4842,7 @@ function Crystal($$anchor, $$props) {
4841
4842
  $.set(isRegistered, false);
4842
4843
  parentRegister(instanceId, null, null, null, null);
4843
4844
  });
4844
- var fragment = root$93();
4845
+ var fragment = root$94();
4845
4846
  var span = $.first_child(fragment);
4846
4847
  var node_1 = $.child(span);
4847
4848
  var consequent = ($$anchor$1) => {
@@ -4854,7 +4855,7 @@ function Crystal($$anchor, $$props) {
4854
4855
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
4855
4856
  var node_2 = $.sibling(span, 2);
4856
4857
  var consequent_1 = ($$anchor$1) => {
4857
- var canvas = root_2$92();
4858
+ var canvas = root_2$93();
4858
4859
  var node_3 = $.child(canvas);
4859
4860
  children?.(node_3);
4860
4861
  $.reset(canvas);
@@ -4873,8 +4874,8 @@ function Crystal($$anchor, $$props) {
4873
4874
  $.append($$anchor, fragment);
4874
4875
  $.pop();
4875
4876
  }
4876
- var root_2$91 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4877
- var root$92 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4877
+ var root_2$92 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
4878
+ var root$93 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
4878
4879
  function CursorRipples($$anchor, $$props) {
4879
4880
  $.push($$props, true);
4880
4881
  let _experimentalWarnedOnce = false;
@@ -5039,7 +5040,7 @@ function CursorRipples($$anchor, $$props) {
5039
5040
  $.set(isRegistered, false);
5040
5041
  parentRegister(instanceId, null, null, null, null);
5041
5042
  });
5042
- var fragment = root$92();
5043
+ var fragment = root$93();
5043
5044
  var span = $.first_child(fragment);
5044
5045
  var node_1 = $.child(span);
5045
5046
  var consequent = ($$anchor$1) => {
@@ -5052,7 +5053,7 @@ function CursorRipples($$anchor, $$props) {
5052
5053
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
5053
5054
  var node_2 = $.sibling(span, 2);
5054
5055
  var consequent_1 = ($$anchor$1) => {
5055
- var canvas = root_2$91();
5056
+ var canvas = root_2$92();
5056
5057
  var node_3 = $.child(canvas);
5057
5058
  children?.(node_3);
5058
5059
  $.reset(canvas);
@@ -5071,8 +5072,8 @@ function CursorRipples($$anchor, $$props) {
5071
5072
  $.append($$anchor, fragment);
5072
5073
  $.pop();
5073
5074
  }
5074
- var root_2$90 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5075
- var root$91 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5075
+ var root_2$91 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5076
+ var root$92 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5076
5077
  function CursorTrail($$anchor, $$props) {
5077
5078
  $.push($$props, true);
5078
5079
  let _experimentalWarnedOnce = false;
@@ -5237,7 +5238,7 @@ function CursorTrail($$anchor, $$props) {
5237
5238
  $.set(isRegistered, false);
5238
5239
  parentRegister(instanceId, null, null, null, null);
5239
5240
  });
5240
- var fragment = root$91();
5241
+ var fragment = root$92();
5241
5242
  var span = $.first_child(fragment);
5242
5243
  var node_1 = $.child(span);
5243
5244
  var consequent = ($$anchor$1) => {
@@ -5250,7 +5251,7 @@ function CursorTrail($$anchor, $$props) {
5250
5251
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
5251
5252
  var node_2 = $.sibling(span, 2);
5252
5253
  var consequent_1 = ($$anchor$1) => {
5253
- var canvas = root_2$90();
5254
+ var canvas = root_2$91();
5254
5255
  var node_3 = $.child(canvas);
5255
5256
  children?.(node_3);
5256
5257
  $.reset(canvas);
@@ -5269,8 +5270,8 @@ function CursorTrail($$anchor, $$props) {
5269
5270
  $.append($$anchor, fragment);
5270
5271
  $.pop();
5271
5272
  }
5272
- var root_2$89 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5273
- var root$90 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5273
+ var root_2$90 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5274
+ var root$91 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5274
5275
  function DOMTexture($$anchor, $$props) {
5275
5276
  $.push($$props, true);
5276
5277
  let _experimentalWarnedOnce = false;
@@ -5435,7 +5436,7 @@ function DOMTexture($$anchor, $$props) {
5435
5436
  $.set(isRegistered, false);
5436
5437
  parentRegister(instanceId, null, null, null, null);
5437
5438
  });
5438
- var fragment = root$90();
5439
+ var fragment = root$91();
5439
5440
  var span = $.first_child(fragment);
5440
5441
  var node_1 = $.child(span);
5441
5442
  var consequent = ($$anchor$1) => {
@@ -5448,7 +5449,7 @@ function DOMTexture($$anchor, $$props) {
5448
5449
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
5449
5450
  var node_2 = $.sibling(span, 2);
5450
5451
  var consequent_1 = ($$anchor$1) => {
5451
- var canvas = root_2$89();
5452
+ var canvas = root_2$90();
5452
5453
  var node_3 = $.child(canvas);
5453
5454
  children?.(node_3);
5454
5455
  $.reset(canvas);
@@ -5467,8 +5468,8 @@ function DOMTexture($$anchor, $$props) {
5467
5468
  $.append($$anchor, fragment);
5468
5469
  $.pop();
5469
5470
  }
5470
- var root_2$88 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5471
- var root$89 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5471
+ var root_2$89 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5472
+ var root$90 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5472
5473
  function DiamondGradient($$anchor, $$props) {
5473
5474
  $.push($$props, true);
5474
5475
  let _experimentalWarnedOnce = false;
@@ -5633,7 +5634,7 @@ function DiamondGradient($$anchor, $$props) {
5633
5634
  $.set(isRegistered, false);
5634
5635
  parentRegister(instanceId, null, null, null, null);
5635
5636
  });
5636
- var fragment = root$89();
5637
+ var fragment = root$90();
5637
5638
  var span = $.first_child(fragment);
5638
5639
  var node_1 = $.child(span);
5639
5640
  var consequent = ($$anchor$1) => {
@@ -5646,7 +5647,7 @@ function DiamondGradient($$anchor, $$props) {
5646
5647
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
5647
5648
  var node_2 = $.sibling(span, 2);
5648
5649
  var consequent_1 = ($$anchor$1) => {
5649
- var canvas = root_2$88();
5650
+ var canvas = root_2$89();
5650
5651
  var node_3 = $.child(canvas);
5651
5652
  children?.(node_3);
5652
5653
  $.reset(canvas);
@@ -5665,8 +5666,8 @@ function DiamondGradient($$anchor, $$props) {
5665
5666
  $.append($$anchor, fragment);
5666
5667
  $.pop();
5667
5668
  }
5668
- var root_2$87 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5669
- var root$88 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5669
+ var root_2$88 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5670
+ var root$89 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5670
5671
  function DiffuseBlur($$anchor, $$props) {
5671
5672
  $.push($$props, true);
5672
5673
  let _experimentalWarnedOnce = false;
@@ -5831,7 +5832,7 @@ function DiffuseBlur($$anchor, $$props) {
5831
5832
  $.set(isRegistered, false);
5832
5833
  parentRegister(instanceId, null, null, null, null);
5833
5834
  });
5834
- var fragment = root$88();
5835
+ var fragment = root$89();
5835
5836
  var span = $.first_child(fragment);
5836
5837
  var node_1 = $.child(span);
5837
5838
  var consequent = ($$anchor$1) => {
@@ -5844,7 +5845,7 @@ function DiffuseBlur($$anchor, $$props) {
5844
5845
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
5845
5846
  var node_2 = $.sibling(span, 2);
5846
5847
  var consequent_1 = ($$anchor$1) => {
5847
- var canvas = root_2$87();
5848
+ var canvas = root_2$88();
5848
5849
  var node_3 = $.child(canvas);
5849
5850
  children?.(node_3);
5850
5851
  $.reset(canvas);
@@ -5863,8 +5864,8 @@ function DiffuseBlur($$anchor, $$props) {
5863
5864
  $.append($$anchor, fragment);
5864
5865
  $.pop();
5865
5866
  }
5866
- var root_2$86 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5867
- var root$87 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5867
+ var root_2$87 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
5868
+ var root$88 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
5868
5869
  function Dither($$anchor, $$props) {
5869
5870
  $.push($$props, true);
5870
5871
  let _experimentalWarnedOnce = false;
@@ -6029,7 +6030,7 @@ function Dither($$anchor, $$props) {
6029
6030
  $.set(isRegistered, false);
6030
6031
  parentRegister(instanceId, null, null, null, null);
6031
6032
  });
6032
- var fragment = root$87();
6033
+ var fragment = root$88();
6033
6034
  var span = $.first_child(fragment);
6034
6035
  var node_1 = $.child(span);
6035
6036
  var consequent = ($$anchor$1) => {
@@ -6042,7 +6043,7 @@ function Dither($$anchor, $$props) {
6042
6043
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
6043
6044
  var node_2 = $.sibling(span, 2);
6044
6045
  var consequent_1 = ($$anchor$1) => {
6045
- var canvas = root_2$86();
6046
+ var canvas = root_2$87();
6046
6047
  var node_3 = $.child(canvas);
6047
6048
  children?.(node_3);
6048
6049
  $.reset(canvas);
@@ -6061,8 +6062,8 @@ function Dither($$anchor, $$props) {
6061
6062
  $.append($$anchor, fragment);
6062
6063
  $.pop();
6063
6064
  }
6064
- var root_2$85 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6065
- var root$86 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6065
+ var root_2$86 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6066
+ var root$87 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6066
6067
  function DotGrid($$anchor, $$props) {
6067
6068
  $.push($$props, true);
6068
6069
  let _experimentalWarnedOnce = false;
@@ -6227,7 +6228,7 @@ function DotGrid($$anchor, $$props) {
6227
6228
  $.set(isRegistered, false);
6228
6229
  parentRegister(instanceId, null, null, null, null);
6229
6230
  });
6230
- var fragment = root$86();
6231
+ var fragment = root$87();
6231
6232
  var span = $.first_child(fragment);
6232
6233
  var node_1 = $.child(span);
6233
6234
  var consequent = ($$anchor$1) => {
@@ -6240,7 +6241,7 @@ function DotGrid($$anchor, $$props) {
6240
6241
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
6241
6242
  var node_2 = $.sibling(span, 2);
6242
6243
  var consequent_1 = ($$anchor$1) => {
6243
- var canvas = root_2$85();
6244
+ var canvas = root_2$86();
6244
6245
  var node_3 = $.child(canvas);
6245
6246
  children?.(node_3);
6246
6247
  $.reset(canvas);
@@ -6259,8 +6260,8 @@ function DotGrid($$anchor, $$props) {
6259
6260
  $.append($$anchor, fragment);
6260
6261
  $.pop();
6261
6262
  }
6262
- var root_2$84 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6263
- var root$85 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6263
+ var root_2$85 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6264
+ var root$86 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6264
6265
  function DropShadow($$anchor, $$props) {
6265
6266
  $.push($$props, true);
6266
6267
  let _experimentalWarnedOnce = false;
@@ -6425,7 +6426,7 @@ function DropShadow($$anchor, $$props) {
6425
6426
  $.set(isRegistered, false);
6426
6427
  parentRegister(instanceId, null, null, null, null);
6427
6428
  });
6428
- var fragment = root$85();
6429
+ var fragment = root$86();
6429
6430
  var span = $.first_child(fragment);
6430
6431
  var node_1 = $.child(span);
6431
6432
  var consequent = ($$anchor$1) => {
@@ -6438,7 +6439,7 @@ function DropShadow($$anchor, $$props) {
6438
6439
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
6439
6440
  var node_2 = $.sibling(span, 2);
6440
6441
  var consequent_1 = ($$anchor$1) => {
6441
- var canvas = root_2$84();
6442
+ var canvas = root_2$85();
6442
6443
  var node_3 = $.child(canvas);
6443
6444
  children?.(node_3);
6444
6445
  $.reset(canvas);
@@ -6457,8 +6458,8 @@ function DropShadow($$anchor, $$props) {
6457
6458
  $.append($$anchor, fragment);
6458
6459
  $.pop();
6459
6460
  }
6460
- var root_2$83 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6461
- var root$84 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6461
+ var root_2$84 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6462
+ var root$85 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6462
6463
  function Duotone($$anchor, $$props) {
6463
6464
  $.push($$props, true);
6464
6465
  let _experimentalWarnedOnce = false;
@@ -6623,7 +6624,7 @@ function Duotone($$anchor, $$props) {
6623
6624
  $.set(isRegistered, false);
6624
6625
  parentRegister(instanceId, null, null, null, null);
6625
6626
  });
6626
- var fragment = root$84();
6627
+ var fragment = root$85();
6627
6628
  var span = $.first_child(fragment);
6628
6629
  var node_1 = $.child(span);
6629
6630
  var consequent = ($$anchor$1) => {
@@ -6636,7 +6637,7 @@ function Duotone($$anchor, $$props) {
6636
6637
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
6637
6638
  var node_2 = $.sibling(span, 2);
6638
6639
  var consequent_1 = ($$anchor$1) => {
6639
- var canvas = root_2$83();
6640
+ var canvas = root_2$84();
6640
6641
  var node_3 = $.child(canvas);
6641
6642
  children?.(node_3);
6642
6643
  $.reset(canvas);
@@ -6655,8 +6656,8 @@ function Duotone($$anchor, $$props) {
6655
6656
  $.append($$anchor, fragment);
6656
6657
  $.pop();
6657
6658
  }
6658
- var root_2$82 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6659
- var root$83 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6659
+ var root_2$83 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6660
+ var root$84 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6660
6661
  function Ellipse($$anchor, $$props) {
6661
6662
  $.push($$props, true);
6662
6663
  let _experimentalWarnedOnce = false;
@@ -6821,7 +6822,7 @@ function Ellipse($$anchor, $$props) {
6821
6822
  $.set(isRegistered, false);
6822
6823
  parentRegister(instanceId, null, null, null, null);
6823
6824
  });
6824
- var fragment = root$83();
6825
+ var fragment = root$84();
6825
6826
  var span = $.first_child(fragment);
6826
6827
  var node_1 = $.child(span);
6827
6828
  var consequent = ($$anchor$1) => {
@@ -6834,7 +6835,7 @@ function Ellipse($$anchor, $$props) {
6834
6835
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
6835
6836
  var node_2 = $.sibling(span, 2);
6836
6837
  var consequent_1 = ($$anchor$1) => {
6837
- var canvas = root_2$82();
6838
+ var canvas = root_2$83();
6838
6839
  var node_3 = $.child(canvas);
6839
6840
  children?.(node_3);
6840
6841
  $.reset(canvas);
@@ -6853,8 +6854,8 @@ function Ellipse($$anchor, $$props) {
6853
6854
  $.append($$anchor, fragment);
6854
6855
  $.pop();
6855
6856
  }
6856
- var root_2$81 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6857
- var root$82 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6857
+ var root_2$82 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
6858
+ var root$83 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
6858
6859
  function Emboss($$anchor, $$props) {
6859
6860
  $.push($$props, true);
6860
6861
  let _experimentalWarnedOnce = false;
@@ -7019,7 +7020,7 @@ function Emboss($$anchor, $$props) {
7019
7020
  $.set(isRegistered, false);
7020
7021
  parentRegister(instanceId, null, null, null, null);
7021
7022
  });
7022
- var fragment = root$82();
7023
+ var fragment = root$83();
7023
7024
  var span = $.first_child(fragment);
7024
7025
  var node_1 = $.child(span);
7025
7026
  var consequent = ($$anchor$1) => {
@@ -7032,7 +7033,7 @@ function Emboss($$anchor, $$props) {
7032
7033
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
7033
7034
  var node_2 = $.sibling(span, 2);
7034
7035
  var consequent_1 = ($$anchor$1) => {
7035
- var canvas = root_2$81();
7036
+ var canvas = root_2$82();
7036
7037
  var node_3 = $.child(canvas);
7037
7038
  children?.(node_3);
7038
7039
  $.reset(canvas);
@@ -7051,8 +7052,8 @@ function Emboss($$anchor, $$props) {
7051
7052
  $.append($$anchor, fragment);
7052
7053
  $.pop();
7053
7054
  }
7054
- var root_2$80 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7055
- var root$81 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7055
+ var root_2$81 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7056
+ var root$82 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7056
7057
  function FallingLines($$anchor, $$props) {
7057
7058
  $.push($$props, true);
7058
7059
  let _experimentalWarnedOnce = false;
@@ -7217,7 +7218,7 @@ function FallingLines($$anchor, $$props) {
7217
7218
  $.set(isRegistered, false);
7218
7219
  parentRegister(instanceId, null, null, null, null);
7219
7220
  });
7220
- var fragment = root$81();
7221
+ var fragment = root$82();
7221
7222
  var span = $.first_child(fragment);
7222
7223
  var node_1 = $.child(span);
7223
7224
  var consequent = ($$anchor$1) => {
@@ -7230,7 +7231,7 @@ function FallingLines($$anchor, $$props) {
7230
7231
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
7231
7232
  var node_2 = $.sibling(span, 2);
7232
7233
  var consequent_1 = ($$anchor$1) => {
7233
- var canvas = root_2$80();
7234
+ var canvas = root_2$81();
7234
7235
  var node_3 = $.child(canvas);
7235
7236
  children?.(node_3);
7236
7237
  $.reset(canvas);
@@ -7249,8 +7250,8 @@ function FallingLines($$anchor, $$props) {
7249
7250
  $.append($$anchor, fragment);
7250
7251
  $.pop();
7251
7252
  }
7252
- var root_2$79 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7253
- var root$80 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7253
+ var root_2$80 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7254
+ var root$81 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7254
7255
  function FilmGrain($$anchor, $$props) {
7255
7256
  $.push($$props, true);
7256
7257
  let _experimentalWarnedOnce = false;
@@ -7415,7 +7416,7 @@ function FilmGrain($$anchor, $$props) {
7415
7416
  $.set(isRegistered, false);
7416
7417
  parentRegister(instanceId, null, null, null, null);
7417
7418
  });
7418
- var fragment = root$80();
7419
+ var fragment = root$81();
7419
7420
  var span = $.first_child(fragment);
7420
7421
  var node_1 = $.child(span);
7421
7422
  var consequent = ($$anchor$1) => {
@@ -7428,7 +7429,7 @@ function FilmGrain($$anchor, $$props) {
7428
7429
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
7429
7430
  var node_2 = $.sibling(span, 2);
7430
7431
  var consequent_1 = ($$anchor$1) => {
7431
- var canvas = root_2$79();
7432
+ var canvas = root_2$80();
7432
7433
  var node_3 = $.child(canvas);
7433
7434
  children?.(node_3);
7434
7435
  $.reset(canvas);
@@ -7447,8 +7448,8 @@ function FilmGrain($$anchor, $$props) {
7447
7448
  $.append($$anchor, fragment);
7448
7449
  $.pop();
7449
7450
  }
7450
- var root_2$78 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7451
- var root$79 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7451
+ var root_2$79 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7452
+ var root$80 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7452
7453
  function FloatingParticles($$anchor, $$props) {
7453
7454
  $.push($$props, true);
7454
7455
  let _experimentalWarnedOnce = false;
@@ -7613,7 +7614,7 @@ function FloatingParticles($$anchor, $$props) {
7613
7614
  $.set(isRegistered, false);
7614
7615
  parentRegister(instanceId, null, null, null, null);
7615
7616
  });
7616
- var fragment = root$79();
7617
+ var fragment = root$80();
7617
7618
  var span = $.first_child(fragment);
7618
7619
  var node_1 = $.child(span);
7619
7620
  var consequent = ($$anchor$1) => {
@@ -7626,7 +7627,7 @@ function FloatingParticles($$anchor, $$props) {
7626
7627
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
7627
7628
  var node_2 = $.sibling(span, 2);
7628
7629
  var consequent_1 = ($$anchor$1) => {
7629
- var canvas = root_2$78();
7630
+ var canvas = root_2$79();
7630
7631
  var node_3 = $.child(canvas);
7631
7632
  children?.(node_3);
7632
7633
  $.reset(canvas);
@@ -7645,8 +7646,8 @@ function FloatingParticles($$anchor, $$props) {
7645
7646
  $.append($$anchor, fragment);
7646
7647
  $.pop();
7647
7648
  }
7648
- var root_2$77 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7649
- var root$78 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7649
+ var root_2$78 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7650
+ var root$79 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7650
7651
  function FlowField($$anchor, $$props) {
7651
7652
  $.push($$props, true);
7652
7653
  let _experimentalWarnedOnce = false;
@@ -7811,7 +7812,7 @@ function FlowField($$anchor, $$props) {
7811
7812
  $.set(isRegistered, false);
7812
7813
  parentRegister(instanceId, null, null, null, null);
7813
7814
  });
7814
- var fragment = root$78();
7815
+ var fragment = root$79();
7815
7816
  var span = $.first_child(fragment);
7816
7817
  var node_1 = $.child(span);
7817
7818
  var consequent = ($$anchor$1) => {
@@ -7824,7 +7825,7 @@ function FlowField($$anchor, $$props) {
7824
7825
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
7825
7826
  var node_2 = $.sibling(span, 2);
7826
7827
  var consequent_1 = ($$anchor$1) => {
7827
- var canvas = root_2$77();
7828
+ var canvas = root_2$78();
7828
7829
  var node_3 = $.child(canvas);
7829
7830
  children?.(node_3);
7830
7831
  $.reset(canvas);
@@ -7843,8 +7844,8 @@ function FlowField($$anchor, $$props) {
7843
7844
  $.append($$anchor, fragment);
7844
7845
  $.pop();
7845
7846
  }
7846
- var root_2$76 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7847
- var root$77 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7847
+ var root_2$77 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
7848
+ var root$78 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
7848
7849
  function Flower($$anchor, $$props) {
7849
7850
  $.push($$props, true);
7850
7851
  let _experimentalWarnedOnce = false;
@@ -8009,7 +8010,7 @@ function Flower($$anchor, $$props) {
8009
8010
  $.set(isRegistered, false);
8010
8011
  parentRegister(instanceId, null, null, null, null);
8011
8012
  });
8012
- var fragment = root$77();
8013
+ var fragment = root$78();
8013
8014
  var span = $.first_child(fragment);
8014
8015
  var node_1 = $.child(span);
8015
8016
  var consequent = ($$anchor$1) => {
@@ -8022,7 +8023,7 @@ function Flower($$anchor, $$props) {
8022
8023
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
8023
8024
  var node_2 = $.sibling(span, 2);
8024
8025
  var consequent_1 = ($$anchor$1) => {
8025
- var canvas = root_2$76();
8026
+ var canvas = root_2$77();
8026
8027
  var node_3 = $.child(canvas);
8027
8028
  children?.(node_3);
8028
8029
  $.reset(canvas);
@@ -8041,8 +8042,8 @@ function Flower($$anchor, $$props) {
8041
8042
  $.append($$anchor, fragment);
8042
8043
  $.pop();
8043
8044
  }
8044
- var root_2$75 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8045
- var root$76 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8045
+ var root_2$76 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8046
+ var root$77 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8046
8047
  function FlowingGradient($$anchor, $$props) {
8047
8048
  $.push($$props, true);
8048
8049
  let _experimentalWarnedOnce = false;
@@ -8207,7 +8208,7 @@ function FlowingGradient($$anchor, $$props) {
8207
8208
  $.set(isRegistered, false);
8208
8209
  parentRegister(instanceId, null, null, null, null);
8209
8210
  });
8210
- var fragment = root$76();
8211
+ var fragment = root$77();
8211
8212
  var span = $.first_child(fragment);
8212
8213
  var node_1 = $.child(span);
8213
8214
  var consequent = ($$anchor$1) => {
@@ -8220,7 +8221,7 @@ function FlowingGradient($$anchor, $$props) {
8220
8221
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
8221
8222
  var node_2 = $.sibling(span, 2);
8222
8223
  var consequent_1 = ($$anchor$1) => {
8223
- var canvas = root_2$75();
8224
+ var canvas = root_2$76();
8224
8225
  var node_3 = $.child(canvas);
8225
8226
  children?.(node_3);
8226
8227
  $.reset(canvas);
@@ -8239,8 +8240,8 @@ function FlowingGradient($$anchor, $$props) {
8239
8240
  $.append($$anchor, fragment);
8240
8241
  $.pop();
8241
8242
  }
8242
- var root_2$74 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8243
- var root$75 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8243
+ var root_2$75 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8244
+ var root$76 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8244
8245
  function FlutedGlass($$anchor, $$props) {
8245
8246
  $.push($$props, true);
8246
8247
  let _experimentalWarnedOnce = false;
@@ -8405,7 +8406,7 @@ function FlutedGlass($$anchor, $$props) {
8405
8406
  $.set(isRegistered, false);
8406
8407
  parentRegister(instanceId, null, null, null, null);
8407
8408
  });
8408
- var fragment = root$75();
8409
+ var fragment = root$76();
8409
8410
  var span = $.first_child(fragment);
8410
8411
  var node_1 = $.child(span);
8411
8412
  var consequent = ($$anchor$1) => {
@@ -8418,7 +8419,7 @@ function FlutedGlass($$anchor, $$props) {
8418
8419
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
8419
8420
  var node_2 = $.sibling(span, 2);
8420
8421
  var consequent_1 = ($$anchor$1) => {
8421
- var canvas = root_2$74();
8422
+ var canvas = root_2$75();
8422
8423
  var node_3 = $.child(canvas);
8423
8424
  children?.(node_3);
8424
8425
  $.reset(canvas);
@@ -8437,8 +8438,8 @@ function FlutedGlass($$anchor, $$props) {
8437
8438
  $.append($$anchor, fragment);
8438
8439
  $.pop();
8439
8440
  }
8440
- var root_2$73 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8441
- var root$74 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8441
+ var root_2$74 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8442
+ var root$75 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8442
8443
  function Fog($$anchor, $$props) {
8443
8444
  $.push($$props, true);
8444
8445
  let _experimentalWarnedOnce = false;
@@ -8603,7 +8604,7 @@ function Fog($$anchor, $$props) {
8603
8604
  $.set(isRegistered, false);
8604
8605
  parentRegister(instanceId, null, null, null, null);
8605
8606
  });
8606
- var fragment = root$74();
8607
+ var fragment = root$75();
8607
8608
  var span = $.first_child(fragment);
8608
8609
  var node_1 = $.child(span);
8609
8610
  var consequent = ($$anchor$1) => {
@@ -8616,7 +8617,7 @@ function Fog($$anchor, $$props) {
8616
8617
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
8617
8618
  var node_2 = $.sibling(span, 2);
8618
8619
  var consequent_1 = ($$anchor$1) => {
8619
- var canvas = root_2$73();
8620
+ var canvas = root_2$74();
8620
8621
  var node_3 = $.child(canvas);
8621
8622
  children?.(node_3);
8622
8623
  $.reset(canvas);
@@ -8635,8 +8636,8 @@ function Fog($$anchor, $$props) {
8635
8636
  $.append($$anchor, fragment);
8636
8637
  $.pop();
8637
8638
  }
8638
- var root_2$72 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8639
- var root$73 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8639
+ var root_2$73 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8640
+ var root$74 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8640
8641
  function Form3D($$anchor, $$props) {
8641
8642
  $.push($$props, true);
8642
8643
  let _experimentalWarnedOnce = false;
@@ -8801,7 +8802,7 @@ function Form3D($$anchor, $$props) {
8801
8802
  $.set(isRegistered, false);
8802
8803
  parentRegister(instanceId, null, null, null, null);
8803
8804
  });
8804
- var fragment = root$73();
8805
+ var fragment = root$74();
8805
8806
  var span = $.first_child(fragment);
8806
8807
  var node_1 = $.child(span);
8807
8808
  var consequent = ($$anchor$1) => {
@@ -8814,7 +8815,7 @@ function Form3D($$anchor, $$props) {
8814
8815
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
8815
8816
  var node_2 = $.sibling(span, 2);
8816
8817
  var consequent_1 = ($$anchor$1) => {
8817
- var canvas = root_2$72();
8818
+ var canvas = root_2$73();
8818
8819
  var node_3 = $.child(canvas);
8819
8820
  children?.(node_3);
8820
8821
  $.reset(canvas);
@@ -8833,8 +8834,8 @@ function Form3D($$anchor, $$props) {
8833
8834
  $.append($$anchor, fragment);
8834
8835
  $.pop();
8835
8836
  }
8836
- var root_2$71 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8837
- var root$72 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8837
+ var root_2$72 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
8838
+ var root$73 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
8838
8839
  function FractalNoise($$anchor, $$props) {
8839
8840
  $.push($$props, true);
8840
8841
  let _experimentalWarnedOnce = false;
@@ -8999,7 +9000,7 @@ function FractalNoise($$anchor, $$props) {
8999
9000
  $.set(isRegistered, false);
9000
9001
  parentRegister(instanceId, null, null, null, null);
9001
9002
  });
9002
- var fragment = root$72();
9003
+ var fragment = root$73();
9003
9004
  var span = $.first_child(fragment);
9004
9005
  var node_1 = $.child(span);
9005
9006
  var consequent = ($$anchor$1) => {
@@ -9012,7 +9013,7 @@ function FractalNoise($$anchor, $$props) {
9012
9013
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
9013
9014
  var node_2 = $.sibling(span, 2);
9014
9015
  var consequent_1 = ($$anchor$1) => {
9015
- var canvas = root_2$71();
9016
+ var canvas = root_2$72();
9016
9017
  var node_3 = $.child(canvas);
9017
9018
  children?.(node_3);
9018
9019
  $.reset(canvas);
@@ -9031,8 +9032,8 @@ function FractalNoise($$anchor, $$props) {
9031
9032
  $.append($$anchor, fragment);
9032
9033
  $.pop();
9033
9034
  }
9034
- var root_2$70 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9035
- var root$71 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9035
+ var root_2$71 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9036
+ var root$72 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9036
9037
  function Glass($$anchor, $$props) {
9037
9038
  $.push($$props, true);
9038
9039
  let _experimentalWarnedOnce = false;
@@ -9197,7 +9198,7 @@ function Glass($$anchor, $$props) {
9197
9198
  $.set(isRegistered, false);
9198
9199
  parentRegister(instanceId, null, null, null, null);
9199
9200
  });
9200
- var fragment = root$71();
9201
+ var fragment = root$72();
9201
9202
  var span = $.first_child(fragment);
9202
9203
  var node_1 = $.child(span);
9203
9204
  var consequent = ($$anchor$1) => {
@@ -9210,7 +9211,7 @@ function Glass($$anchor, $$props) {
9210
9211
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
9211
9212
  var node_2 = $.sibling(span, 2);
9212
9213
  var consequent_1 = ($$anchor$1) => {
9213
- var canvas = root_2$70();
9214
+ var canvas = root_2$71();
9214
9215
  var node_3 = $.child(canvas);
9215
9216
  children?.(node_3);
9216
9217
  $.reset(canvas);
@@ -9229,8 +9230,8 @@ function Glass($$anchor, $$props) {
9229
9230
  $.append($$anchor, fragment);
9230
9231
  $.pop();
9231
9232
  }
9232
- var root_2$69 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9233
- var root$70 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9233
+ var root_2$70 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9234
+ var root$71 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9234
9235
  function GlassTiles($$anchor, $$props) {
9235
9236
  $.push($$props, true);
9236
9237
  let _experimentalWarnedOnce = false;
@@ -9395,7 +9396,7 @@ function GlassTiles($$anchor, $$props) {
9395
9396
  $.set(isRegistered, false);
9396
9397
  parentRegister(instanceId, null, null, null, null);
9397
9398
  });
9398
- var fragment = root$70();
9399
+ var fragment = root$71();
9399
9400
  var span = $.first_child(fragment);
9400
9401
  var node_1 = $.child(span);
9401
9402
  var consequent = ($$anchor$1) => {
@@ -9408,7 +9409,7 @@ function GlassTiles($$anchor, $$props) {
9408
9409
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
9409
9410
  var node_2 = $.sibling(span, 2);
9410
9411
  var consequent_1 = ($$anchor$1) => {
9411
- var canvas = root_2$69();
9412
+ var canvas = root_2$70();
9412
9413
  var node_3 = $.child(canvas);
9413
9414
  children?.(node_3);
9414
9415
  $.reset(canvas);
@@ -9427,8 +9428,8 @@ function GlassTiles($$anchor, $$props) {
9427
9428
  $.append($$anchor, fragment);
9428
9429
  $.pop();
9429
9430
  }
9430
- var root_2$68 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9431
- var root$69 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9431
+ var root_2$69 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9432
+ var root$70 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9432
9433
  function Glitch($$anchor, $$props) {
9433
9434
  $.push($$props, true);
9434
9435
  let _experimentalWarnedOnce = false;
@@ -9593,7 +9594,7 @@ function Glitch($$anchor, $$props) {
9593
9594
  $.set(isRegistered, false);
9594
9595
  parentRegister(instanceId, null, null, null, null);
9595
9596
  });
9596
- var fragment = root$69();
9597
+ var fragment = root$70();
9597
9598
  var span = $.first_child(fragment);
9598
9599
  var node_1 = $.child(span);
9599
9600
  var consequent = ($$anchor$1) => {
@@ -9606,7 +9607,7 @@ function Glitch($$anchor, $$props) {
9606
9607
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
9607
9608
  var node_2 = $.sibling(span, 2);
9608
9609
  var consequent_1 = ($$anchor$1) => {
9609
- var canvas = root_2$68();
9610
+ var canvas = root_2$69();
9610
9611
  var node_3 = $.child(canvas);
9611
9612
  children?.(node_3);
9612
9613
  $.reset(canvas);
@@ -9625,8 +9626,8 @@ function Glitch($$anchor, $$props) {
9625
9626
  $.append($$anchor, fragment);
9626
9627
  $.pop();
9627
9628
  }
9628
- var root_2$67 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9629
- var root$68 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9629
+ var root_2$68 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9630
+ var root$69 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9630
9631
  function Glow($$anchor, $$props) {
9631
9632
  $.push($$props, true);
9632
9633
  let _experimentalWarnedOnce = false;
@@ -9791,7 +9792,7 @@ function Glow($$anchor, $$props) {
9791
9792
  $.set(isRegistered, false);
9792
9793
  parentRegister(instanceId, null, null, null, null);
9793
9794
  });
9794
- var fragment = root$68();
9795
+ var fragment = root$69();
9795
9796
  var span = $.first_child(fragment);
9796
9797
  var node_1 = $.child(span);
9797
9798
  var consequent = ($$anchor$1) => {
@@ -9804,7 +9805,7 @@ function Glow($$anchor, $$props) {
9804
9805
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
9805
9806
  var node_2 = $.sibling(span, 2);
9806
9807
  var consequent_1 = ($$anchor$1) => {
9807
- var canvas = root_2$67();
9808
+ var canvas = root_2$68();
9808
9809
  var node_3 = $.child(canvas);
9809
9810
  children?.(node_3);
9810
9811
  $.reset(canvas);
@@ -9823,8 +9824,8 @@ function Glow($$anchor, $$props) {
9823
9824
  $.append($$anchor, fragment);
9824
9825
  $.pop();
9825
9826
  }
9826
- var root_2$66 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9827
- var root$67 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9827
+ var root_2$67 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
9828
+ var root$68 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
9828
9829
  function Godrays($$anchor, $$props) {
9829
9830
  $.push($$props, true);
9830
9831
  let _experimentalWarnedOnce = false;
@@ -9989,7 +9990,7 @@ function Godrays($$anchor, $$props) {
9989
9990
  $.set(isRegistered, false);
9990
9991
  parentRegister(instanceId, null, null, null, null);
9991
9992
  });
9992
- var fragment = root$67();
9993
+ var fragment = root$68();
9993
9994
  var span = $.first_child(fragment);
9994
9995
  var node_1 = $.child(span);
9995
9996
  var consequent = ($$anchor$1) => {
@@ -10002,7 +10003,7 @@ function Godrays($$anchor, $$props) {
10002
10003
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
10003
10004
  var node_2 = $.sibling(span, 2);
10004
10005
  var consequent_1 = ($$anchor$1) => {
10005
- var canvas = root_2$66();
10006
+ var canvas = root_2$67();
10006
10007
  var node_3 = $.child(canvas);
10007
10008
  children?.(node_3);
10008
10009
  $.reset(canvas);
@@ -10021,8 +10022,8 @@ function Godrays($$anchor, $$props) {
10021
10022
  $.append($$anchor, fragment);
10022
10023
  $.pop();
10023
10024
  }
10024
- var root_2$65 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10025
- var root$66 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10025
+ var root_2$66 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10026
+ var root$67 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10026
10027
  function Grayscale($$anchor, $$props) {
10027
10028
  $.push($$props, true);
10028
10029
  let _experimentalWarnedOnce = false;
@@ -10187,7 +10188,7 @@ function Grayscale($$anchor, $$props) {
10187
10188
  $.set(isRegistered, false);
10188
10189
  parentRegister(instanceId, null, null, null, null);
10189
10190
  });
10190
- var fragment = root$66();
10191
+ var fragment = root$67();
10191
10192
  var span = $.first_child(fragment);
10192
10193
  var node_1 = $.child(span);
10193
10194
  var consequent = ($$anchor$1) => {
@@ -10200,7 +10201,7 @@ function Grayscale($$anchor, $$props) {
10200
10201
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
10201
10202
  var node_2 = $.sibling(span, 2);
10202
10203
  var consequent_1 = ($$anchor$1) => {
10203
- var canvas = root_2$65();
10204
+ var canvas = root_2$66();
10204
10205
  var node_3 = $.child(canvas);
10205
10206
  children?.(node_3);
10206
10207
  $.reset(canvas);
@@ -10219,8 +10220,8 @@ function Grayscale($$anchor, $$props) {
10219
10220
  $.append($$anchor, fragment);
10220
10221
  $.pop();
10221
10222
  }
10222
- var root_2$64 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10223
- var root$65 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10223
+ var root_2$65 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10224
+ var root$66 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10224
10225
  function Grid($$anchor, $$props) {
10225
10226
  $.push($$props, true);
10226
10227
  let _experimentalWarnedOnce = false;
@@ -10385,7 +10386,7 @@ function Grid($$anchor, $$props) {
10385
10386
  $.set(isRegistered, false);
10386
10387
  parentRegister(instanceId, null, null, null, null);
10387
10388
  });
10388
- var fragment = root$65();
10389
+ var fragment = root$66();
10389
10390
  var span = $.first_child(fragment);
10390
10391
  var node_1 = $.child(span);
10391
10392
  var consequent = ($$anchor$1) => {
@@ -10398,7 +10399,7 @@ function Grid($$anchor, $$props) {
10398
10399
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
10399
10400
  var node_2 = $.sibling(span, 2);
10400
10401
  var consequent_1 = ($$anchor$1) => {
10401
- var canvas = root_2$64();
10402
+ var canvas = root_2$65();
10402
10403
  var node_3 = $.child(canvas);
10403
10404
  children?.(node_3);
10404
10405
  $.reset(canvas);
@@ -10417,8 +10418,8 @@ function Grid($$anchor, $$props) {
10417
10418
  $.append($$anchor, fragment);
10418
10419
  $.pop();
10419
10420
  }
10420
- var root_2$63 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10421
- var root$64 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10421
+ var root_2$64 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10422
+ var root$65 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10422
10423
  function GridDistortion($$anchor, $$props) {
10423
10424
  $.push($$props, true);
10424
10425
  let _experimentalWarnedOnce = false;
@@ -10583,7 +10584,7 @@ function GridDistortion($$anchor, $$props) {
10583
10584
  $.set(isRegistered, false);
10584
10585
  parentRegister(instanceId, null, null, null, null);
10585
10586
  });
10586
- var fragment = root$64();
10587
+ var fragment = root$65();
10587
10588
  var span = $.first_child(fragment);
10588
10589
  var node_1 = $.child(span);
10589
10590
  var consequent = ($$anchor$1) => {
@@ -10596,7 +10597,7 @@ function GridDistortion($$anchor, $$props) {
10596
10597
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
10597
10598
  var node_2 = $.sibling(span, 2);
10598
10599
  var consequent_1 = ($$anchor$1) => {
10599
- var canvas = root_2$63();
10600
+ var canvas = root_2$64();
10600
10601
  var node_3 = $.child(canvas);
10601
10602
  children?.(node_3);
10602
10603
  $.reset(canvas);
@@ -10615,8 +10616,8 @@ function GridDistortion($$anchor, $$props) {
10615
10616
  $.append($$anchor, fragment);
10616
10617
  $.pop();
10617
10618
  }
10618
- var root_2$62 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10619
- var root$63 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10619
+ var root_2$63 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10620
+ var root$64 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10620
10621
  function Group($$anchor, $$props) {
10621
10622
  $.push($$props, true);
10622
10623
  let _experimentalWarnedOnce = false;
@@ -10781,7 +10782,7 @@ function Group($$anchor, $$props) {
10781
10782
  $.set(isRegistered, false);
10782
10783
  parentRegister(instanceId, null, null, null, null);
10783
10784
  });
10784
- var fragment = root$63();
10785
+ var fragment = root$64();
10785
10786
  var span = $.first_child(fragment);
10786
10787
  var node_1 = $.child(span);
10787
10788
  var consequent = ($$anchor$1) => {
@@ -10794,7 +10795,7 @@ function Group($$anchor, $$props) {
10794
10795
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
10795
10796
  var node_2 = $.sibling(span, 2);
10796
10797
  var consequent_1 = ($$anchor$1) => {
10797
- var canvas = root_2$62();
10798
+ var canvas = root_2$63();
10798
10799
  var node_3 = $.child(canvas);
10799
10800
  children?.(node_3);
10800
10801
  $.reset(canvas);
@@ -10813,8 +10814,8 @@ function Group($$anchor, $$props) {
10813
10814
  $.append($$anchor, fragment);
10814
10815
  $.pop();
10815
10816
  }
10816
- var root_2$61 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10817
- var root$62 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10817
+ var root_2$62 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
10818
+ var root$63 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
10818
10819
  function Halftone($$anchor, $$props) {
10819
10820
  $.push($$props, true);
10820
10821
  let _experimentalWarnedOnce = false;
@@ -10979,7 +10980,7 @@ function Halftone($$anchor, $$props) {
10979
10980
  $.set(isRegistered, false);
10980
10981
  parentRegister(instanceId, null, null, null, null);
10981
10982
  });
10982
- var fragment = root$62();
10983
+ var fragment = root$63();
10983
10984
  var span = $.first_child(fragment);
10984
10985
  var node_1 = $.child(span);
10985
10986
  var consequent = ($$anchor$1) => {
@@ -10992,7 +10993,7 @@ function Halftone($$anchor, $$props) {
10992
10993
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
10993
10994
  var node_2 = $.sibling(span, 2);
10994
10995
  var consequent_1 = ($$anchor$1) => {
10995
- var canvas = root_2$61();
10996
+ var canvas = root_2$62();
10996
10997
  var node_3 = $.child(canvas);
10997
10998
  children?.(node_3);
10998
10999
  $.reset(canvas);
@@ -11011,8 +11012,8 @@ function Halftone($$anchor, $$props) {
11011
11012
  $.append($$anchor, fragment);
11012
11013
  $.pop();
11013
11014
  }
11014
- var root_2$60 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11015
- var root$61 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11015
+ var root_2$61 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11016
+ var root$62 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11016
11017
  function HexGrid($$anchor, $$props) {
11017
11018
  $.push($$props, true);
11018
11019
  let _experimentalWarnedOnce = false;
@@ -11177,7 +11178,7 @@ function HexGrid($$anchor, $$props) {
11177
11178
  $.set(isRegistered, false);
11178
11179
  parentRegister(instanceId, null, null, null, null);
11179
11180
  });
11180
- var fragment = root$61();
11181
+ var fragment = root$62();
11181
11182
  var span = $.first_child(fragment);
11182
11183
  var node_1 = $.child(span);
11183
11184
  var consequent = ($$anchor$1) => {
@@ -11190,7 +11191,7 @@ function HexGrid($$anchor, $$props) {
11190
11191
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
11191
11192
  var node_2 = $.sibling(span, 2);
11192
11193
  var consequent_1 = ($$anchor$1) => {
11193
- var canvas = root_2$60();
11194
+ var canvas = root_2$61();
11194
11195
  var node_3 = $.child(canvas);
11195
11196
  children?.(node_3);
11196
11197
  $.reset(canvas);
@@ -11209,8 +11210,8 @@ function HexGrid($$anchor, $$props) {
11209
11210
  $.append($$anchor, fragment);
11210
11211
  $.pop();
11211
11212
  }
11212
- var root_2$59 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11213
- var root$60 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11213
+ var root_2$60 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11214
+ var root$61 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11214
11215
  function HueShift($$anchor, $$props) {
11215
11216
  $.push($$props, true);
11216
11217
  let _experimentalWarnedOnce = false;
@@ -11375,7 +11376,7 @@ function HueShift($$anchor, $$props) {
11375
11376
  $.set(isRegistered, false);
11376
11377
  parentRegister(instanceId, null, null, null, null);
11377
11378
  });
11378
- var fragment = root$60();
11379
+ var fragment = root$61();
11379
11380
  var span = $.first_child(fragment);
11380
11381
  var node_1 = $.child(span);
11381
11382
  var consequent = ($$anchor$1) => {
@@ -11388,7 +11389,7 @@ function HueShift($$anchor, $$props) {
11388
11389
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
11389
11390
  var node_2 = $.sibling(span, 2);
11390
11391
  var consequent_1 = ($$anchor$1) => {
11391
- var canvas = root_2$59();
11392
+ var canvas = root_2$60();
11392
11393
  var node_3 = $.child(canvas);
11393
11394
  children?.(node_3);
11394
11395
  $.reset(canvas);
@@ -11407,8 +11408,8 @@ function HueShift($$anchor, $$props) {
11407
11408
  $.append($$anchor, fragment);
11408
11409
  $.pop();
11409
11410
  }
11410
- var root_2$58 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11411
- var root$59 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11411
+ var root_2$59 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11412
+ var root$60 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11412
11413
  function ImageTexture($$anchor, $$props) {
11413
11414
  $.push($$props, true);
11414
11415
  let _experimentalWarnedOnce = false;
@@ -11573,7 +11574,7 @@ function ImageTexture($$anchor, $$props) {
11573
11574
  $.set(isRegistered, false);
11574
11575
  parentRegister(instanceId, null, null, null, null);
11575
11576
  });
11576
- var fragment = root$59();
11577
+ var fragment = root$60();
11577
11578
  var span = $.first_child(fragment);
11578
11579
  var node_1 = $.child(span);
11579
11580
  var consequent = ($$anchor$1) => {
@@ -11586,7 +11587,7 @@ function ImageTexture($$anchor, $$props) {
11586
11587
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
11587
11588
  var node_2 = $.sibling(span, 2);
11588
11589
  var consequent_1 = ($$anchor$1) => {
11589
- var canvas = root_2$58();
11590
+ var canvas = root_2$59();
11590
11591
  var node_3 = $.child(canvas);
11591
11592
  children?.(node_3);
11592
11593
  $.reset(canvas);
@@ -11605,8 +11606,8 @@ function ImageTexture($$anchor, $$props) {
11605
11606
  $.append($$anchor, fragment);
11606
11607
  $.pop();
11607
11608
  }
11608
- var root_2$57 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11609
- var root$58 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11609
+ var root_2$58 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11610
+ var root$59 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11610
11611
  function Invert($$anchor, $$props) {
11611
11612
  $.push($$props, true);
11612
11613
  let _experimentalWarnedOnce = false;
@@ -11771,7 +11772,7 @@ function Invert($$anchor, $$props) {
11771
11772
  $.set(isRegistered, false);
11772
11773
  parentRegister(instanceId, null, null, null, null);
11773
11774
  });
11774
- var fragment = root$58();
11775
+ var fragment = root$59();
11775
11776
  var span = $.first_child(fragment);
11776
11777
  var node_1 = $.child(span);
11777
11778
  var consequent = ($$anchor$1) => {
@@ -11784,7 +11785,7 @@ function Invert($$anchor, $$props) {
11784
11785
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
11785
11786
  var node_2 = $.sibling(span, 2);
11786
11787
  var consequent_1 = ($$anchor$1) => {
11787
- var canvas = root_2$57();
11788
+ var canvas = root_2$58();
11788
11789
  var node_3 = $.child(canvas);
11789
11790
  children?.(node_3);
11790
11791
  $.reset(canvas);
@@ -11803,8 +11804,8 @@ function Invert($$anchor, $$props) {
11803
11804
  $.append($$anchor, fragment);
11804
11805
  $.pop();
11805
11806
  }
11806
- var root_2$56 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11807
- var root$57 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11807
+ var root_2$57 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
11808
+ var root$58 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
11808
11809
  function Kaleidoscope($$anchor, $$props) {
11809
11810
  $.push($$props, true);
11810
11811
  let _experimentalWarnedOnce = false;
@@ -11969,7 +11970,7 @@ function Kaleidoscope($$anchor, $$props) {
11969
11970
  $.set(isRegistered, false);
11970
11971
  parentRegister(instanceId, null, null, null, null);
11971
11972
  });
11972
- var fragment = root$57();
11973
+ var fragment = root$58();
11973
11974
  var span = $.first_child(fragment);
11974
11975
  var node_1 = $.child(span);
11975
11976
  var consequent = ($$anchor$1) => {
@@ -11982,7 +11983,7 @@ function Kaleidoscope($$anchor, $$props) {
11982
11983
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
11983
11984
  var node_2 = $.sibling(span, 2);
11984
11985
  var consequent_1 = ($$anchor$1) => {
11985
- var canvas = root_2$56();
11986
+ var canvas = root_2$57();
11986
11987
  var node_3 = $.child(canvas);
11987
11988
  children?.(node_3);
11988
11989
  $.reset(canvas);
@@ -12001,8 +12002,8 @@ function Kaleidoscope($$anchor, $$props) {
12001
12002
  $.append($$anchor, fragment);
12002
12003
  $.pop();
12003
12004
  }
12004
- var root_2$55 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12005
- var root$56 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12005
+ var root_2$56 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12006
+ var root$57 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12006
12007
  function LensFlare($$anchor, $$props) {
12007
12008
  $.push($$props, true);
12008
12009
  let _experimentalWarnedOnce = false;
@@ -12167,7 +12168,7 @@ function LensFlare($$anchor, $$props) {
12167
12168
  $.set(isRegistered, false);
12168
12169
  parentRegister(instanceId, null, null, null, null);
12169
12170
  });
12170
- var fragment = root$56();
12171
+ var fragment = root$57();
12171
12172
  var span = $.first_child(fragment);
12172
12173
  var node_1 = $.child(span);
12173
12174
  var consequent = ($$anchor$1) => {
@@ -12180,7 +12181,7 @@ function LensFlare($$anchor, $$props) {
12180
12181
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
12181
12182
  var node_2 = $.sibling(span, 2);
12182
12183
  var consequent_1 = ($$anchor$1) => {
12183
- var canvas = root_2$55();
12184
+ var canvas = root_2$56();
12184
12185
  var node_3 = $.child(canvas);
12185
12186
  children?.(node_3);
12186
12187
  $.reset(canvas);
@@ -12199,8 +12200,8 @@ function LensFlare($$anchor, $$props) {
12199
12200
  $.append($$anchor, fragment);
12200
12201
  $.pop();
12201
12202
  }
12202
- var root_2$54 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12203
- var root$55 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12203
+ var root_2$55 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12204
+ var root$56 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12204
12205
  function LinearBlur($$anchor, $$props) {
12205
12206
  $.push($$props, true);
12206
12207
  let _experimentalWarnedOnce = false;
@@ -12365,7 +12366,7 @@ function LinearBlur($$anchor, $$props) {
12365
12366
  $.set(isRegistered, false);
12366
12367
  parentRegister(instanceId, null, null, null, null);
12367
12368
  });
12368
- var fragment = root$55();
12369
+ var fragment = root$56();
12369
12370
  var span = $.first_child(fragment);
12370
12371
  var node_1 = $.child(span);
12371
12372
  var consequent = ($$anchor$1) => {
@@ -12378,7 +12379,7 @@ function LinearBlur($$anchor, $$props) {
12378
12379
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
12379
12380
  var node_2 = $.sibling(span, 2);
12380
12381
  var consequent_1 = ($$anchor$1) => {
12381
- var canvas = root_2$54();
12382
+ var canvas = root_2$55();
12382
12383
  var node_3 = $.child(canvas);
12383
12384
  children?.(node_3);
12384
12385
  $.reset(canvas);
@@ -12397,8 +12398,8 @@ function LinearBlur($$anchor, $$props) {
12397
12398
  $.append($$anchor, fragment);
12398
12399
  $.pop();
12399
12400
  }
12400
- var root_2$53 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12401
- var root$54 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12401
+ var root_2$54 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12402
+ var root$55 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12402
12403
  function LinearGradient($$anchor, $$props) {
12403
12404
  $.push($$props, true);
12404
12405
  let _experimentalWarnedOnce = false;
@@ -12563,7 +12564,7 @@ function LinearGradient($$anchor, $$props) {
12563
12564
  $.set(isRegistered, false);
12564
12565
  parentRegister(instanceId, null, null, null, null);
12565
12566
  });
12566
- var fragment = root$54();
12567
+ var fragment = root$55();
12567
12568
  var span = $.first_child(fragment);
12568
12569
  var node_1 = $.child(span);
12569
12570
  var consequent = ($$anchor$1) => {
@@ -12576,7 +12577,7 @@ function LinearGradient($$anchor, $$props) {
12576
12577
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
12577
12578
  var node_2 = $.sibling(span, 2);
12578
12579
  var consequent_1 = ($$anchor$1) => {
12579
- var canvas = root_2$53();
12580
+ var canvas = root_2$54();
12580
12581
  var node_3 = $.child(canvas);
12581
12582
  children?.(node_3);
12582
12583
  $.reset(canvas);
@@ -12595,8 +12596,8 @@ function LinearGradient($$anchor, $$props) {
12595
12596
  $.append($$anchor, fragment);
12596
12597
  $.pop();
12597
12598
  }
12598
- var root_2$52 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12599
- var root$53 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12599
+ var root_2$53 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12600
+ var root$54 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12600
12601
  function Liquify($$anchor, $$props) {
12601
12602
  $.push($$props, true);
12602
12603
  let _experimentalWarnedOnce = false;
@@ -12761,7 +12762,7 @@ function Liquify($$anchor, $$props) {
12761
12762
  $.set(isRegistered, false);
12762
12763
  parentRegister(instanceId, null, null, null, null);
12763
12764
  });
12764
- var fragment = root$53();
12765
+ var fragment = root$54();
12765
12766
  var span = $.first_child(fragment);
12766
12767
  var node_1 = $.child(span);
12767
12768
  var consequent = ($$anchor$1) => {
@@ -12774,7 +12775,7 @@ function Liquify($$anchor, $$props) {
12774
12775
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
12775
12776
  var node_2 = $.sibling(span, 2);
12776
12777
  var consequent_1 = ($$anchor$1) => {
12777
- var canvas = root_2$52();
12778
+ var canvas = root_2$53();
12778
12779
  var node_3 = $.child(canvas);
12779
12780
  children?.(node_3);
12780
12781
  $.reset(canvas);
@@ -12793,8 +12794,8 @@ function Liquify($$anchor, $$props) {
12793
12794
  $.append($$anchor, fragment);
12794
12795
  $.pop();
12795
12796
  }
12796
- var root_2$51 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12797
- var root$52 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12797
+ var root_2$52 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12798
+ var root$53 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12798
12799
  function Marble($$anchor, $$props) {
12799
12800
  $.push($$props, true);
12800
12801
  let _experimentalWarnedOnce = false;
@@ -12959,7 +12960,7 @@ function Marble($$anchor, $$props) {
12959
12960
  $.set(isRegistered, false);
12960
12961
  parentRegister(instanceId, null, null, null, null);
12961
12962
  });
12962
- var fragment = root$52();
12963
+ var fragment = root$53();
12963
12964
  var span = $.first_child(fragment);
12964
12965
  var node_1 = $.child(span);
12965
12966
  var consequent = ($$anchor$1) => {
@@ -12972,7 +12973,7 @@ function Marble($$anchor, $$props) {
12972
12973
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
12973
12974
  var node_2 = $.sibling(span, 2);
12974
12975
  var consequent_1 = ($$anchor$1) => {
12975
- var canvas = root_2$51();
12976
+ var canvas = root_2$52();
12976
12977
  var node_3 = $.child(canvas);
12977
12978
  children?.(node_3);
12978
12979
  $.reset(canvas);
@@ -12991,8 +12992,8 @@ function Marble($$anchor, $$props) {
12991
12992
  $.append($$anchor, fragment);
12992
12993
  $.pop();
12993
12994
  }
12994
- var root_2$50 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12995
- var root$51 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12995
+ var root_2$51 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
12996
+ var root$52 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
12996
12997
  function Mirror($$anchor, $$props) {
12997
12998
  $.push($$props, true);
12998
12999
  let _experimentalWarnedOnce = false;
@@ -13157,7 +13158,7 @@ function Mirror($$anchor, $$props) {
13157
13158
  $.set(isRegistered, false);
13158
13159
  parentRegister(instanceId, null, null, null, null);
13159
13160
  });
13160
- var fragment = root$51();
13161
+ var fragment = root$52();
13161
13162
  var span = $.first_child(fragment);
13162
13163
  var node_1 = $.child(span);
13163
13164
  var consequent = ($$anchor$1) => {
@@ -13170,7 +13171,7 @@ function Mirror($$anchor, $$props) {
13170
13171
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
13171
13172
  var node_2 = $.sibling(span, 2);
13172
13173
  var consequent_1 = ($$anchor$1) => {
13173
- var canvas = root_2$50();
13174
+ var canvas = root_2$51();
13174
13175
  var node_3 = $.child(canvas);
13175
13176
  children?.(node_3);
13176
13177
  $.reset(canvas);
@@ -13189,8 +13190,8 @@ function Mirror($$anchor, $$props) {
13189
13190
  $.append($$anchor, fragment);
13190
13191
  $.pop();
13191
13192
  }
13192
- var root_2$49 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13193
- var root$50 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13193
+ var root_2$50 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13194
+ var root$51 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13194
13195
  function MultiPointGradient($$anchor, $$props) {
13195
13196
  $.push($$props, true);
13196
13197
  let _experimentalWarnedOnce = false;
@@ -13355,7 +13356,7 @@ function MultiPointGradient($$anchor, $$props) {
13355
13356
  $.set(isRegistered, false);
13356
13357
  parentRegister(instanceId, null, null, null, null);
13357
13358
  });
13358
- var fragment = root$50();
13359
+ var fragment = root$51();
13359
13360
  var span = $.first_child(fragment);
13360
13361
  var node_1 = $.child(span);
13361
13362
  var consequent = ($$anchor$1) => {
@@ -13368,7 +13369,7 @@ function MultiPointGradient($$anchor, $$props) {
13368
13369
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
13369
13370
  var node_2 = $.sibling(span, 2);
13370
13371
  var consequent_1 = ($$anchor$1) => {
13371
- var canvas = root_2$49();
13372
+ var canvas = root_2$50();
13372
13373
  var node_3 = $.child(canvas);
13373
13374
  children?.(node_3);
13374
13375
  $.reset(canvas);
@@ -13387,8 +13388,8 @@ function MultiPointGradient($$anchor, $$props) {
13387
13388
  $.append($$anchor, fragment);
13388
13389
  $.pop();
13389
13390
  }
13390
- var root_2$48 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13391
- var root$49 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13391
+ var root_2$49 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13392
+ var root$50 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13392
13393
  function Neon($$anchor, $$props) {
13393
13394
  $.push($$props, true);
13394
13395
  let _experimentalWarnedOnce = false;
@@ -13553,7 +13554,7 @@ function Neon($$anchor, $$props) {
13553
13554
  $.set(isRegistered, false);
13554
13555
  parentRegister(instanceId, null, null, null, null);
13555
13556
  });
13556
- var fragment = root$49();
13557
+ var fragment = root$50();
13557
13558
  var span = $.first_child(fragment);
13558
13559
  var node_1 = $.child(span);
13559
13560
  var consequent = ($$anchor$1) => {
@@ -13566,7 +13567,7 @@ function Neon($$anchor, $$props) {
13566
13567
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
13567
13568
  var node_2 = $.sibling(span, 2);
13568
13569
  var consequent_1 = ($$anchor$1) => {
13569
- var canvas = root_2$48();
13570
+ var canvas = root_2$49();
13570
13571
  var node_3 = $.child(canvas);
13571
13572
  children?.(node_3);
13572
13573
  $.reset(canvas);
@@ -13585,8 +13586,8 @@ function Neon($$anchor, $$props) {
13585
13586
  $.append($$anchor, fragment);
13586
13587
  $.pop();
13587
13588
  }
13588
- var root_2$47 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13589
- var root$48 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13589
+ var root_2$48 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13590
+ var root$49 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13590
13591
  function Paper($$anchor, $$props) {
13591
13592
  $.push($$props, true);
13592
13593
  let _experimentalWarnedOnce = false;
@@ -13751,7 +13752,7 @@ function Paper($$anchor, $$props) {
13751
13752
  $.set(isRegistered, false);
13752
13753
  parentRegister(instanceId, null, null, null, null);
13753
13754
  });
13754
- var fragment = root$48();
13755
+ var fragment = root$49();
13755
13756
  var span = $.first_child(fragment);
13756
13757
  var node_1 = $.child(span);
13757
13758
  var consequent = ($$anchor$1) => {
@@ -13764,7 +13765,7 @@ function Paper($$anchor, $$props) {
13764
13765
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
13765
13766
  var node_2 = $.sibling(span, 2);
13766
13767
  var consequent_1 = ($$anchor$1) => {
13767
- var canvas = root_2$47();
13768
+ var canvas = root_2$48();
13768
13769
  var node_3 = $.child(canvas);
13769
13770
  children?.(node_3);
13770
13771
  $.reset(canvas);
@@ -13783,8 +13784,8 @@ function Paper($$anchor, $$props) {
13783
13784
  $.append($$anchor, fragment);
13784
13785
  $.pop();
13785
13786
  }
13786
- var root_2$46 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13787
- var root$47 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13787
+ var root_2$47 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13788
+ var root$48 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13788
13789
  function Perspective($$anchor, $$props) {
13789
13790
  $.push($$props, true);
13790
13791
  let _experimentalWarnedOnce = false;
@@ -13949,7 +13950,7 @@ function Perspective($$anchor, $$props) {
13949
13950
  $.set(isRegistered, false);
13950
13951
  parentRegister(instanceId, null, null, null, null);
13951
13952
  });
13952
- var fragment = root$47();
13953
+ var fragment = root$48();
13953
13954
  var span = $.first_child(fragment);
13954
13955
  var node_1 = $.child(span);
13955
13956
  var consequent = ($$anchor$1) => {
@@ -13962,7 +13963,7 @@ function Perspective($$anchor, $$props) {
13962
13963
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
13963
13964
  var node_2 = $.sibling(span, 2);
13964
13965
  var consequent_1 = ($$anchor$1) => {
13965
- var canvas = root_2$46();
13966
+ var canvas = root_2$47();
13966
13967
  var node_3 = $.child(canvas);
13967
13968
  children?.(node_3);
13968
13969
  $.reset(canvas);
@@ -13981,8 +13982,8 @@ function Perspective($$anchor, $$props) {
13981
13982
  $.append($$anchor, fragment);
13982
13983
  $.pop();
13983
13984
  }
13984
- var root_2$45 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13985
- var root$46 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13985
+ var root_2$46 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
13986
+ var root$47 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
13986
13987
  function Pixelate($$anchor, $$props) {
13987
13988
  $.push($$props, true);
13988
13989
  let _experimentalWarnedOnce = false;
@@ -14147,7 +14148,7 @@ function Pixelate($$anchor, $$props) {
14147
14148
  $.set(isRegistered, false);
14148
14149
  parentRegister(instanceId, null, null, null, null);
14149
14150
  });
14150
- var fragment = root$46();
14151
+ var fragment = root$47();
14151
14152
  var span = $.first_child(fragment);
14152
14153
  var node_1 = $.child(span);
14153
14154
  var consequent = ($$anchor$1) => {
@@ -14160,7 +14161,7 @@ function Pixelate($$anchor, $$props) {
14160
14161
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
14161
14162
  var node_2 = $.sibling(span, 2);
14162
14163
  var consequent_1 = ($$anchor$1) => {
14163
- var canvas = root_2$45();
14164
+ var canvas = root_2$46();
14164
14165
  var node_3 = $.child(canvas);
14165
14166
  children?.(node_3);
14166
14167
  $.reset(canvas);
@@ -14179,8 +14180,8 @@ function Pixelate($$anchor, $$props) {
14179
14180
  $.append($$anchor, fragment);
14180
14181
  $.pop();
14181
14182
  }
14182
- var root_2$44 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14183
- var root$45 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14183
+ var root_2$45 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14184
+ var root$46 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14184
14185
  function Plasma($$anchor, $$props) {
14185
14186
  $.push($$props, true);
14186
14187
  let _experimentalWarnedOnce = false;
@@ -14345,7 +14346,7 @@ function Plasma($$anchor, $$props) {
14345
14346
  $.set(isRegistered, false);
14346
14347
  parentRegister(instanceId, null, null, null, null);
14347
14348
  });
14348
- var fragment = root$45();
14349
+ var fragment = root$46();
14349
14350
  var span = $.first_child(fragment);
14350
14351
  var node_1 = $.child(span);
14351
14352
  var consequent = ($$anchor$1) => {
@@ -14358,7 +14359,7 @@ function Plasma($$anchor, $$props) {
14358
14359
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
14359
14360
  var node_2 = $.sibling(span, 2);
14360
14361
  var consequent_1 = ($$anchor$1) => {
14361
- var canvas = root_2$44();
14362
+ var canvas = root_2$45();
14362
14363
  var node_3 = $.child(canvas);
14363
14364
  children?.(node_3);
14364
14365
  $.reset(canvas);
@@ -14377,8 +14378,8 @@ function Plasma($$anchor, $$props) {
14377
14378
  $.append($$anchor, fragment);
14378
14379
  $.pop();
14379
14380
  }
14380
- var root_2$43 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14381
- var root$44 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14381
+ var root_2$44 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14382
+ var root$45 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14382
14383
  function PolarCoordinates($$anchor, $$props) {
14383
14384
  $.push($$props, true);
14384
14385
  let _experimentalWarnedOnce = false;
@@ -14543,7 +14544,7 @@ function PolarCoordinates($$anchor, $$props) {
14543
14544
  $.set(isRegistered, false);
14544
14545
  parentRegister(instanceId, null, null, null, null);
14545
14546
  });
14546
- var fragment = root$44();
14547
+ var fragment = root$45();
14547
14548
  var span = $.first_child(fragment);
14548
14549
  var node_1 = $.child(span);
14549
14550
  var consequent = ($$anchor$1) => {
@@ -14556,7 +14557,7 @@ function PolarCoordinates($$anchor, $$props) {
14556
14557
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
14557
14558
  var node_2 = $.sibling(span, 2);
14558
14559
  var consequent_1 = ($$anchor$1) => {
14559
- var canvas = root_2$43();
14560
+ var canvas = root_2$44();
14560
14561
  var node_3 = $.child(canvas);
14561
14562
  children?.(node_3);
14562
14563
  $.reset(canvas);
@@ -14575,8 +14576,8 @@ function PolarCoordinates($$anchor, $$props) {
14575
14576
  $.append($$anchor, fragment);
14576
14577
  $.pop();
14577
14578
  }
14578
- var root_2$42 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14579
- var root$43 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14579
+ var root_2$43 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14580
+ var root$44 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14580
14581
  function Polygon($$anchor, $$props) {
14581
14582
  $.push($$props, true);
14582
14583
  let _experimentalWarnedOnce = false;
@@ -14741,7 +14742,7 @@ function Polygon($$anchor, $$props) {
14741
14742
  $.set(isRegistered, false);
14742
14743
  parentRegister(instanceId, null, null, null, null);
14743
14744
  });
14744
- var fragment = root$43();
14745
+ var fragment = root$44();
14745
14746
  var span = $.first_child(fragment);
14746
14747
  var node_1 = $.child(span);
14747
14748
  var consequent = ($$anchor$1) => {
@@ -14754,7 +14755,7 @@ function Polygon($$anchor, $$props) {
14754
14755
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
14755
14756
  var node_2 = $.sibling(span, 2);
14756
14757
  var consequent_1 = ($$anchor$1) => {
14757
- var canvas = root_2$42();
14758
+ var canvas = root_2$43();
14758
14759
  var node_3 = $.child(canvas);
14759
14760
  children?.(node_3);
14760
14761
  $.reset(canvas);
@@ -14773,8 +14774,8 @@ function Polygon($$anchor, $$props) {
14773
14774
  $.append($$anchor, fragment);
14774
14775
  $.pop();
14775
14776
  }
14776
- var root_2$41 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14777
- var root$42 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14777
+ var root_2$42 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14778
+ var root$43 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14778
14779
  function Posterize($$anchor, $$props) {
14779
14780
  $.push($$props, true);
14780
14781
  let _experimentalWarnedOnce = false;
@@ -14939,7 +14940,7 @@ function Posterize($$anchor, $$props) {
14939
14940
  $.set(isRegistered, false);
14940
14941
  parentRegister(instanceId, null, null, null, null);
14941
14942
  });
14942
- var fragment = root$42();
14943
+ var fragment = root$43();
14943
14944
  var span = $.first_child(fragment);
14944
14945
  var node_1 = $.child(span);
14945
14946
  var consequent = ($$anchor$1) => {
@@ -14952,7 +14953,7 @@ function Posterize($$anchor, $$props) {
14952
14953
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
14953
14954
  var node_2 = $.sibling(span, 2);
14954
14955
  var consequent_1 = ($$anchor$1) => {
14955
- var canvas = root_2$41();
14956
+ var canvas = root_2$42();
14956
14957
  var node_3 = $.child(canvas);
14957
14958
  children?.(node_3);
14958
14959
  $.reset(canvas);
@@ -14971,8 +14972,8 @@ function Posterize($$anchor, $$props) {
14971
14972
  $.append($$anchor, fragment);
14972
14973
  $.pop();
14973
14974
  }
14974
- var root_2$40 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14975
- var root$41 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14975
+ var root_2$41 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
14976
+ var root$42 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
14976
14977
  function ProgressiveBlur($$anchor, $$props) {
14977
14978
  $.push($$props, true);
14978
14979
  let _experimentalWarnedOnce = false;
@@ -15137,7 +15138,7 @@ function ProgressiveBlur($$anchor, $$props) {
15137
15138
  $.set(isRegistered, false);
15138
15139
  parentRegister(instanceId, null, null, null, null);
15139
15140
  });
15140
- var fragment = root$41();
15141
+ var fragment = root$42();
15141
15142
  var span = $.first_child(fragment);
15142
15143
  var node_1 = $.child(span);
15143
15144
  var consequent = ($$anchor$1) => {
@@ -15150,7 +15151,7 @@ function ProgressiveBlur($$anchor, $$props) {
15150
15151
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
15151
15152
  var node_2 = $.sibling(span, 2);
15152
15153
  var consequent_1 = ($$anchor$1) => {
15153
- var canvas = root_2$40();
15154
+ var canvas = root_2$41();
15154
15155
  var node_3 = $.child(canvas);
15155
15156
  children?.(node_3);
15156
15157
  $.reset(canvas);
@@ -15169,8 +15170,8 @@ function ProgressiveBlur($$anchor, $$props) {
15169
15170
  $.append($$anchor, fragment);
15170
15171
  $.pop();
15171
15172
  }
15172
- var root_2$39 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15173
- var root$40 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15173
+ var root_2$40 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15174
+ var root$41 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15174
15175
  function RadialGradient($$anchor, $$props) {
15175
15176
  $.push($$props, true);
15176
15177
  let _experimentalWarnedOnce = false;
@@ -15335,7 +15336,7 @@ function RadialGradient($$anchor, $$props) {
15335
15336
  $.set(isRegistered, false);
15336
15337
  parentRegister(instanceId, null, null, null, null);
15337
15338
  });
15338
- var fragment = root$40();
15339
+ var fragment = root$41();
15339
15340
  var span = $.first_child(fragment);
15340
15341
  var node_1 = $.child(span);
15341
15342
  var consequent = ($$anchor$1) => {
@@ -15348,7 +15349,7 @@ function RadialGradient($$anchor, $$props) {
15348
15349
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
15349
15350
  var node_2 = $.sibling(span, 2);
15350
15351
  var consequent_1 = ($$anchor$1) => {
15351
- var canvas = root_2$39();
15352
+ var canvas = root_2$40();
15352
15353
  var node_3 = $.child(canvas);
15353
15354
  children?.(node_3);
15354
15355
  $.reset(canvas);
@@ -15367,8 +15368,8 @@ function RadialGradient($$anchor, $$props) {
15367
15368
  $.append($$anchor, fragment);
15368
15369
  $.pop();
15369
15370
  }
15370
- var root_2$38 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15371
- var root$39 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15371
+ var root_2$39 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15372
+ var root$40 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15372
15373
  function RectangularCoordinates($$anchor, $$props) {
15373
15374
  $.push($$props, true);
15374
15375
  let _experimentalWarnedOnce = false;
@@ -15533,7 +15534,7 @@ function RectangularCoordinates($$anchor, $$props) {
15533
15534
  $.set(isRegistered, false);
15534
15535
  parentRegister(instanceId, null, null, null, null);
15535
15536
  });
15536
- var fragment = root$39();
15537
+ var fragment = root$40();
15537
15538
  var span = $.first_child(fragment);
15538
15539
  var node_1 = $.child(span);
15539
15540
  var consequent = ($$anchor$1) => {
@@ -15546,7 +15547,7 @@ function RectangularCoordinates($$anchor, $$props) {
15546
15547
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
15547
15548
  var node_2 = $.sibling(span, 2);
15548
15549
  var consequent_1 = ($$anchor$1) => {
15549
- var canvas = root_2$38();
15550
+ var canvas = root_2$39();
15550
15551
  var node_3 = $.child(canvas);
15551
15552
  children?.(node_3);
15552
15553
  $.reset(canvas);
@@ -15565,9 +15566,9 @@ function RectangularCoordinates($$anchor, $$props) {
15565
15566
  $.append($$anchor, fragment);
15566
15567
  $.pop();
15567
15568
  }
15568
- var root_2$37 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15569
- var root$38 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15570
- function Ring($$anchor, $$props) {
15569
+ var root_2$38 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15570
+ var root$39 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15571
+ function ReflectivePlane($$anchor, $$props) {
15571
15572
  $.push($$props, true);
15572
15573
  let _experimentalWarnedOnce = false;
15573
15574
  if (componentDefinition$78.experimental && !_experimentalWarnedOnce) {
@@ -15731,7 +15732,7 @@ function Ring($$anchor, $$props) {
15731
15732
  $.set(isRegistered, false);
15732
15733
  parentRegister(instanceId, null, null, null, null);
15733
15734
  });
15734
- var fragment = root$38();
15735
+ var fragment = root$39();
15735
15736
  var span = $.first_child(fragment);
15736
15737
  var node_1 = $.child(span);
15737
15738
  var consequent = ($$anchor$1) => {
@@ -15744,7 +15745,7 @@ function Ring($$anchor, $$props) {
15744
15745
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
15745
15746
  var node_2 = $.sibling(span, 2);
15746
15747
  var consequent_1 = ($$anchor$1) => {
15747
- var canvas = root_2$37();
15748
+ var canvas = root_2$38();
15748
15749
  var node_3 = $.child(canvas);
15749
15750
  children?.(node_3);
15750
15751
  $.reset(canvas);
@@ -15763,9 +15764,9 @@ function Ring($$anchor, $$props) {
15763
15764
  $.append($$anchor, fragment);
15764
15765
  $.pop();
15765
15766
  }
15766
- var root_2$36 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15767
- var root$37 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15768
- function Ripples($$anchor, $$props) {
15767
+ var root_2$37 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15768
+ var root$38 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15769
+ function Ring($$anchor, $$props) {
15769
15770
  $.push($$props, true);
15770
15771
  let _experimentalWarnedOnce = false;
15771
15772
  if (componentDefinition$79.experimental && !_experimentalWarnedOnce) {
@@ -15929,7 +15930,7 @@ function Ripples($$anchor, $$props) {
15929
15930
  $.set(isRegistered, false);
15930
15931
  parentRegister(instanceId, null, null, null, null);
15931
15932
  });
15932
- var fragment = root$37();
15933
+ var fragment = root$38();
15933
15934
  var span = $.first_child(fragment);
15934
15935
  var node_1 = $.child(span);
15935
15936
  var consequent = ($$anchor$1) => {
@@ -15942,7 +15943,7 @@ function Ripples($$anchor, $$props) {
15942
15943
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
15943
15944
  var node_2 = $.sibling(span, 2);
15944
15945
  var consequent_1 = ($$anchor$1) => {
15945
- var canvas = root_2$36();
15946
+ var canvas = root_2$37();
15946
15947
  var node_3 = $.child(canvas);
15947
15948
  children?.(node_3);
15948
15949
  $.reset(canvas);
@@ -15961,9 +15962,9 @@ function Ripples($$anchor, $$props) {
15961
15962
  $.append($$anchor, fragment);
15962
15963
  $.pop();
15963
15964
  }
15964
- var root_2$35 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15965
- var root$36 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15966
- function RoundedRect($$anchor, $$props) {
15965
+ var root_2$36 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
15966
+ var root$37 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
15967
+ function Ripples($$anchor, $$props) {
15967
15968
  $.push($$props, true);
15968
15969
  let _experimentalWarnedOnce = false;
15969
15970
  if (componentDefinition$80.experimental && !_experimentalWarnedOnce) {
@@ -16127,7 +16128,7 @@ function RoundedRect($$anchor, $$props) {
16127
16128
  $.set(isRegistered, false);
16128
16129
  parentRegister(instanceId, null, null, null, null);
16129
16130
  });
16130
- var fragment = root$36();
16131
+ var fragment = root$37();
16131
16132
  var span = $.first_child(fragment);
16132
16133
  var node_1 = $.child(span);
16133
16134
  var consequent = ($$anchor$1) => {
@@ -16140,7 +16141,7 @@ function RoundedRect($$anchor, $$props) {
16140
16141
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
16141
16142
  var node_2 = $.sibling(span, 2);
16142
16143
  var consequent_1 = ($$anchor$1) => {
16143
- var canvas = root_2$35();
16144
+ var canvas = root_2$36();
16144
16145
  var node_3 = $.child(canvas);
16145
16146
  children?.(node_3);
16146
16147
  $.reset(canvas);
@@ -16159,9 +16160,9 @@ function RoundedRect($$anchor, $$props) {
16159
16160
  $.append($$anchor, fragment);
16160
16161
  $.pop();
16161
16162
  }
16162
- var root_2$34 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16163
- var root$35 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16164
- function Saturation($$anchor, $$props) {
16163
+ var root_2$35 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16164
+ var root$36 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16165
+ function RoundedRect($$anchor, $$props) {
16165
16166
  $.push($$props, true);
16166
16167
  let _experimentalWarnedOnce = false;
16167
16168
  if (componentDefinition$81.experimental && !_experimentalWarnedOnce) {
@@ -16325,7 +16326,7 @@ function Saturation($$anchor, $$props) {
16325
16326
  $.set(isRegistered, false);
16326
16327
  parentRegister(instanceId, null, null, null, null);
16327
16328
  });
16328
- var fragment = root$35();
16329
+ var fragment = root$36();
16329
16330
  var span = $.first_child(fragment);
16330
16331
  var node_1 = $.child(span);
16331
16332
  var consequent = ($$anchor$1) => {
@@ -16338,7 +16339,7 @@ function Saturation($$anchor, $$props) {
16338
16339
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
16339
16340
  var node_2 = $.sibling(span, 2);
16340
16341
  var consequent_1 = ($$anchor$1) => {
16341
- var canvas = root_2$34();
16342
+ var canvas = root_2$35();
16342
16343
  var node_3 = $.child(canvas);
16343
16344
  children?.(node_3);
16344
16345
  $.reset(canvas);
@@ -16357,9 +16358,9 @@ function Saturation($$anchor, $$props) {
16357
16358
  $.append($$anchor, fragment);
16358
16359
  $.pop();
16359
16360
  }
16360
- var root_2$33 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16361
- var root$34 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16362
- function Sharpness($$anchor, $$props) {
16361
+ var root_2$34 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16362
+ var root$35 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16363
+ function Saturation($$anchor, $$props) {
16363
16364
  $.push($$props, true);
16364
16365
  let _experimentalWarnedOnce = false;
16365
16366
  if (componentDefinition$82.experimental && !_experimentalWarnedOnce) {
@@ -16523,7 +16524,7 @@ function Sharpness($$anchor, $$props) {
16523
16524
  $.set(isRegistered, false);
16524
16525
  parentRegister(instanceId, null, null, null, null);
16525
16526
  });
16526
- var fragment = root$34();
16527
+ var fragment = root$35();
16527
16528
  var span = $.first_child(fragment);
16528
16529
  var node_1 = $.child(span);
16529
16530
  var consequent = ($$anchor$1) => {
@@ -16536,7 +16537,7 @@ function Sharpness($$anchor, $$props) {
16536
16537
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
16537
16538
  var node_2 = $.sibling(span, 2);
16538
16539
  var consequent_1 = ($$anchor$1) => {
16539
- var canvas = root_2$33();
16540
+ var canvas = root_2$34();
16540
16541
  var node_3 = $.child(canvas);
16541
16542
  children?.(node_3);
16542
16543
  $.reset(canvas);
@@ -16555,9 +16556,9 @@ function Sharpness($$anchor, $$props) {
16555
16556
  $.append($$anchor, fragment);
16556
16557
  $.pop();
16557
16558
  }
16558
- var root_2$32 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16559
- var root$33 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16560
- function Shatter($$anchor, $$props) {
16559
+ var root_2$33 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16560
+ var root$34 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16561
+ function Sharpness($$anchor, $$props) {
16561
16562
  $.push($$props, true);
16562
16563
  let _experimentalWarnedOnce = false;
16563
16564
  if (componentDefinition$83.experimental && !_experimentalWarnedOnce) {
@@ -16721,7 +16722,7 @@ function Shatter($$anchor, $$props) {
16721
16722
  $.set(isRegistered, false);
16722
16723
  parentRegister(instanceId, null, null, null, null);
16723
16724
  });
16724
- var fragment = root$33();
16725
+ var fragment = root$34();
16725
16726
  var span = $.first_child(fragment);
16726
16727
  var node_1 = $.child(span);
16727
16728
  var consequent = ($$anchor$1) => {
@@ -16734,7 +16735,7 @@ function Shatter($$anchor, $$props) {
16734
16735
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
16735
16736
  var node_2 = $.sibling(span, 2);
16736
16737
  var consequent_1 = ($$anchor$1) => {
16737
- var canvas = root_2$32();
16738
+ var canvas = root_2$33();
16738
16739
  var node_3 = $.child(canvas);
16739
16740
  children?.(node_3);
16740
16741
  $.reset(canvas);
@@ -16753,9 +16754,9 @@ function Shatter($$anchor, $$props) {
16753
16754
  $.append($$anchor, fragment);
16754
16755
  $.pop();
16755
16756
  }
16756
- var root_2$31 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16757
- var root$32 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16758
- function SimplexNoise($$anchor, $$props) {
16757
+ var root_2$32 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16758
+ var root$33 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16759
+ function Shatter($$anchor, $$props) {
16759
16760
  $.push($$props, true);
16760
16761
  let _experimentalWarnedOnce = false;
16761
16762
  if (componentDefinition$84.experimental && !_experimentalWarnedOnce) {
@@ -16919,7 +16920,7 @@ function SimplexNoise($$anchor, $$props) {
16919
16920
  $.set(isRegistered, false);
16920
16921
  parentRegister(instanceId, null, null, null, null);
16921
16922
  });
16922
- var fragment = root$32();
16923
+ var fragment = root$33();
16923
16924
  var span = $.first_child(fragment);
16924
16925
  var node_1 = $.child(span);
16925
16926
  var consequent = ($$anchor$1) => {
@@ -16932,7 +16933,7 @@ function SimplexNoise($$anchor, $$props) {
16932
16933
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
16933
16934
  var node_2 = $.sibling(span, 2);
16934
16935
  var consequent_1 = ($$anchor$1) => {
16935
- var canvas = root_2$31();
16936
+ var canvas = root_2$32();
16936
16937
  var node_3 = $.child(canvas);
16937
16938
  children?.(node_3);
16938
16939
  $.reset(canvas);
@@ -16951,9 +16952,9 @@ function SimplexNoise($$anchor, $$props) {
16951
16952
  $.append($$anchor, fragment);
16952
16953
  $.pop();
16953
16954
  }
16954
- var root_2$30 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16955
- var root$31 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16956
- function SineWave($$anchor, $$props) {
16955
+ var root_2$31 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
16956
+ var root$32 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
16957
+ function SimplexNoise($$anchor, $$props) {
16957
16958
  $.push($$props, true);
16958
16959
  let _experimentalWarnedOnce = false;
16959
16960
  if (componentDefinition$85.experimental && !_experimentalWarnedOnce) {
@@ -17117,7 +17118,7 @@ function SineWave($$anchor, $$props) {
17117
17118
  $.set(isRegistered, false);
17118
17119
  parentRegister(instanceId, null, null, null, null);
17119
17120
  });
17120
- var fragment = root$31();
17121
+ var fragment = root$32();
17121
17122
  var span = $.first_child(fragment);
17122
17123
  var node_1 = $.child(span);
17123
17124
  var consequent = ($$anchor$1) => {
@@ -17130,7 +17131,7 @@ function SineWave($$anchor, $$props) {
17130
17131
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
17131
17132
  var node_2 = $.sibling(span, 2);
17132
17133
  var consequent_1 = ($$anchor$1) => {
17133
- var canvas = root_2$30();
17134
+ var canvas = root_2$31();
17134
17135
  var node_3 = $.child(canvas);
17135
17136
  children?.(node_3);
17136
17137
  $.reset(canvas);
@@ -17149,9 +17150,9 @@ function SineWave($$anchor, $$props) {
17149
17150
  $.append($$anchor, fragment);
17150
17151
  $.pop();
17151
17152
  }
17152
- var root_2$29 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17153
- var root$30 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17154
- function Smoke($$anchor, $$props) {
17153
+ var root_2$30 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17154
+ var root$31 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17155
+ function SineWave($$anchor, $$props) {
17155
17156
  $.push($$props, true);
17156
17157
  let _experimentalWarnedOnce = false;
17157
17158
  if (componentDefinition$86.experimental && !_experimentalWarnedOnce) {
@@ -17315,7 +17316,7 @@ function Smoke($$anchor, $$props) {
17315
17316
  $.set(isRegistered, false);
17316
17317
  parentRegister(instanceId, null, null, null, null);
17317
17318
  });
17318
- var fragment = root$30();
17319
+ var fragment = root$31();
17319
17320
  var span = $.first_child(fragment);
17320
17321
  var node_1 = $.child(span);
17321
17322
  var consequent = ($$anchor$1) => {
@@ -17328,7 +17329,7 @@ function Smoke($$anchor, $$props) {
17328
17329
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
17329
17330
  var node_2 = $.sibling(span, 2);
17330
17331
  var consequent_1 = ($$anchor$1) => {
17331
- var canvas = root_2$29();
17332
+ var canvas = root_2$30();
17332
17333
  var node_3 = $.child(canvas);
17333
17334
  children?.(node_3);
17334
17335
  $.reset(canvas);
@@ -17347,9 +17348,9 @@ function Smoke($$anchor, $$props) {
17347
17348
  $.append($$anchor, fragment);
17348
17349
  $.pop();
17349
17350
  }
17350
- var root_2$28 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17351
- var root$29 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17352
- function SmokeFill($$anchor, $$props) {
17351
+ var root_2$29 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17352
+ var root$30 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17353
+ function Smoke($$anchor, $$props) {
17353
17354
  $.push($$props, true);
17354
17355
  let _experimentalWarnedOnce = false;
17355
17356
  if (componentDefinition$87.experimental && !_experimentalWarnedOnce) {
@@ -17513,7 +17514,7 @@ function SmokeFill($$anchor, $$props) {
17513
17514
  $.set(isRegistered, false);
17514
17515
  parentRegister(instanceId, null, null, null, null);
17515
17516
  });
17516
- var fragment = root$29();
17517
+ var fragment = root$30();
17517
17518
  var span = $.first_child(fragment);
17518
17519
  var node_1 = $.child(span);
17519
17520
  var consequent = ($$anchor$1) => {
@@ -17526,7 +17527,7 @@ function SmokeFill($$anchor, $$props) {
17526
17527
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
17527
17528
  var node_2 = $.sibling(span, 2);
17528
17529
  var consequent_1 = ($$anchor$1) => {
17529
- var canvas = root_2$28();
17530
+ var canvas = root_2$29();
17530
17531
  var node_3 = $.child(canvas);
17531
17532
  children?.(node_3);
17532
17533
  $.reset(canvas);
@@ -17545,9 +17546,9 @@ function SmokeFill($$anchor, $$props) {
17545
17546
  $.append($$anchor, fragment);
17546
17547
  $.pop();
17547
17548
  }
17548
- var root_2$27 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17549
- var root$28 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17550
- function Solarize($$anchor, $$props) {
17549
+ var root_2$28 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17550
+ var root$29 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17551
+ function SmokeFill($$anchor, $$props) {
17551
17552
  $.push($$props, true);
17552
17553
  let _experimentalWarnedOnce = false;
17553
17554
  if (componentDefinition$88.experimental && !_experimentalWarnedOnce) {
@@ -17711,7 +17712,7 @@ function Solarize($$anchor, $$props) {
17711
17712
  $.set(isRegistered, false);
17712
17713
  parentRegister(instanceId, null, null, null, null);
17713
17714
  });
17714
- var fragment = root$28();
17715
+ var fragment = root$29();
17715
17716
  var span = $.first_child(fragment);
17716
17717
  var node_1 = $.child(span);
17717
17718
  var consequent = ($$anchor$1) => {
@@ -17724,7 +17725,7 @@ function Solarize($$anchor, $$props) {
17724
17725
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
17725
17726
  var node_2 = $.sibling(span, 2);
17726
17727
  var consequent_1 = ($$anchor$1) => {
17727
- var canvas = root_2$27();
17728
+ var canvas = root_2$28();
17728
17729
  var node_3 = $.child(canvas);
17729
17730
  children?.(node_3);
17730
17731
  $.reset(canvas);
@@ -17743,9 +17744,9 @@ function Solarize($$anchor, $$props) {
17743
17744
  $.append($$anchor, fragment);
17744
17745
  $.pop();
17745
17746
  }
17746
- var root_2$26 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17747
- var root$27 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17748
- function SolidColor($$anchor, $$props) {
17747
+ var root_2$27 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17748
+ var root$28 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17749
+ function Solarize($$anchor, $$props) {
17749
17750
  $.push($$props, true);
17750
17751
  let _experimentalWarnedOnce = false;
17751
17752
  if (componentDefinition$89.experimental && !_experimentalWarnedOnce) {
@@ -17909,7 +17910,7 @@ function SolidColor($$anchor, $$props) {
17909
17910
  $.set(isRegistered, false);
17910
17911
  parentRegister(instanceId, null, null, null, null);
17911
17912
  });
17912
- var fragment = root$27();
17913
+ var fragment = root$28();
17913
17914
  var span = $.first_child(fragment);
17914
17915
  var node_1 = $.child(span);
17915
17916
  var consequent = ($$anchor$1) => {
@@ -17922,7 +17923,7 @@ function SolidColor($$anchor, $$props) {
17922
17923
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
17923
17924
  var node_2 = $.sibling(span, 2);
17924
17925
  var consequent_1 = ($$anchor$1) => {
17925
- var canvas = root_2$26();
17926
+ var canvas = root_2$27();
17926
17927
  var node_3 = $.child(canvas);
17927
17928
  children?.(node_3);
17928
17929
  $.reset(canvas);
@@ -17941,9 +17942,9 @@ function SolidColor($$anchor, $$props) {
17941
17942
  $.append($$anchor, fragment);
17942
17943
  $.pop();
17943
17944
  }
17944
- var root_2$25 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17945
- var root$26 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17946
- function Spherize($$anchor, $$props) {
17945
+ var root_2$26 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
17946
+ var root$27 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
17947
+ function SolidColor($$anchor, $$props) {
17947
17948
  $.push($$props, true);
17948
17949
  let _experimentalWarnedOnce = false;
17949
17950
  if (componentDefinition$90.experimental && !_experimentalWarnedOnce) {
@@ -18107,7 +18108,7 @@ function Spherize($$anchor, $$props) {
18107
18108
  $.set(isRegistered, false);
18108
18109
  parentRegister(instanceId, null, null, null, null);
18109
18110
  });
18110
- var fragment = root$26();
18111
+ var fragment = root$27();
18111
18112
  var span = $.first_child(fragment);
18112
18113
  var node_1 = $.child(span);
18113
18114
  var consequent = ($$anchor$1) => {
@@ -18120,7 +18121,7 @@ function Spherize($$anchor, $$props) {
18120
18121
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
18121
18122
  var node_2 = $.sibling(span, 2);
18122
18123
  var consequent_1 = ($$anchor$1) => {
18123
- var canvas = root_2$25();
18124
+ var canvas = root_2$26();
18124
18125
  var node_3 = $.child(canvas);
18125
18126
  children?.(node_3);
18126
18127
  $.reset(canvas);
@@ -18139,9 +18140,9 @@ function Spherize($$anchor, $$props) {
18139
18140
  $.append($$anchor, fragment);
18140
18141
  $.pop();
18141
18142
  }
18142
- var root_2$24 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18143
- var root$25 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18144
- function Spiral($$anchor, $$props) {
18143
+ var root_2$25 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18144
+ var root$26 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18145
+ function Spherize($$anchor, $$props) {
18145
18146
  $.push($$props, true);
18146
18147
  let _experimentalWarnedOnce = false;
18147
18148
  if (componentDefinition$91.experimental && !_experimentalWarnedOnce) {
@@ -18305,7 +18306,7 @@ function Spiral($$anchor, $$props) {
18305
18306
  $.set(isRegistered, false);
18306
18307
  parentRegister(instanceId, null, null, null, null);
18307
18308
  });
18308
- var fragment = root$25();
18309
+ var fragment = root$26();
18309
18310
  var span = $.first_child(fragment);
18310
18311
  var node_1 = $.child(span);
18311
18312
  var consequent = ($$anchor$1) => {
@@ -18318,7 +18319,7 @@ function Spiral($$anchor, $$props) {
18318
18319
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
18319
18320
  var node_2 = $.sibling(span, 2);
18320
18321
  var consequent_1 = ($$anchor$1) => {
18321
- var canvas = root_2$24();
18322
+ var canvas = root_2$25();
18322
18323
  var node_3 = $.child(canvas);
18323
18324
  children?.(node_3);
18324
18325
  $.reset(canvas);
@@ -18337,9 +18338,9 @@ function Spiral($$anchor, $$props) {
18337
18338
  $.append($$anchor, fragment);
18338
18339
  $.pop();
18339
18340
  }
18340
- var root_2$23 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18341
- var root$24 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18342
- function Star($$anchor, $$props) {
18341
+ var root_2$24 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18342
+ var root$25 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18343
+ function Spiral($$anchor, $$props) {
18343
18344
  $.push($$props, true);
18344
18345
  let _experimentalWarnedOnce = false;
18345
18346
  if (componentDefinition$92.experimental && !_experimentalWarnedOnce) {
@@ -18503,7 +18504,7 @@ function Star($$anchor, $$props) {
18503
18504
  $.set(isRegistered, false);
18504
18505
  parentRegister(instanceId, null, null, null, null);
18505
18506
  });
18506
- var fragment = root$24();
18507
+ var fragment = root$25();
18507
18508
  var span = $.first_child(fragment);
18508
18509
  var node_1 = $.child(span);
18509
18510
  var consequent = ($$anchor$1) => {
@@ -18516,7 +18517,7 @@ function Star($$anchor, $$props) {
18516
18517
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
18517
18518
  var node_2 = $.sibling(span, 2);
18518
18519
  var consequent_1 = ($$anchor$1) => {
18519
- var canvas = root_2$23();
18520
+ var canvas = root_2$24();
18520
18521
  var node_3 = $.child(canvas);
18521
18522
  children?.(node_3);
18522
18523
  $.reset(canvas);
@@ -18535,9 +18536,9 @@ function Star($$anchor, $$props) {
18535
18536
  $.append($$anchor, fragment);
18536
18537
  $.pop();
18537
18538
  }
18538
- var root_2$22 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18539
- var root$23 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18540
- function Strands($$anchor, $$props) {
18539
+ var root_2$23 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18540
+ var root$24 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18541
+ function Star($$anchor, $$props) {
18541
18542
  $.push($$props, true);
18542
18543
  let _experimentalWarnedOnce = false;
18543
18544
  if (componentDefinition$93.experimental && !_experimentalWarnedOnce) {
@@ -18701,7 +18702,7 @@ function Strands($$anchor, $$props) {
18701
18702
  $.set(isRegistered, false);
18702
18703
  parentRegister(instanceId, null, null, null, null);
18703
18704
  });
18704
- var fragment = root$23();
18705
+ var fragment = root$24();
18705
18706
  var span = $.first_child(fragment);
18706
18707
  var node_1 = $.child(span);
18707
18708
  var consequent = ($$anchor$1) => {
@@ -18714,7 +18715,7 @@ function Strands($$anchor, $$props) {
18714
18715
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
18715
18716
  var node_2 = $.sibling(span, 2);
18716
18717
  var consequent_1 = ($$anchor$1) => {
18717
- var canvas = root_2$22();
18718
+ var canvas = root_2$23();
18718
18719
  var node_3 = $.child(canvas);
18719
18720
  children?.(node_3);
18720
18721
  $.reset(canvas);
@@ -18733,9 +18734,9 @@ function Strands($$anchor, $$props) {
18733
18734
  $.append($$anchor, fragment);
18734
18735
  $.pop();
18735
18736
  }
18736
- var root_2$21 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18737
- var root$22 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18738
- function Stretch($$anchor, $$props) {
18737
+ var root_2$22 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18738
+ var root$23 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18739
+ function Strands($$anchor, $$props) {
18739
18740
  $.push($$props, true);
18740
18741
  let _experimentalWarnedOnce = false;
18741
18742
  if (componentDefinition$94.experimental && !_experimentalWarnedOnce) {
@@ -18899,7 +18900,7 @@ function Stretch($$anchor, $$props) {
18899
18900
  $.set(isRegistered, false);
18900
18901
  parentRegister(instanceId, null, null, null, null);
18901
18902
  });
18902
- var fragment = root$22();
18903
+ var fragment = root$23();
18903
18904
  var span = $.first_child(fragment);
18904
18905
  var node_1 = $.child(span);
18905
18906
  var consequent = ($$anchor$1) => {
@@ -18912,7 +18913,7 @@ function Stretch($$anchor, $$props) {
18912
18913
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
18913
18914
  var node_2 = $.sibling(span, 2);
18914
18915
  var consequent_1 = ($$anchor$1) => {
18915
- var canvas = root_2$21();
18916
+ var canvas = root_2$22();
18916
18917
  var node_3 = $.child(canvas);
18917
18918
  children?.(node_3);
18918
18919
  $.reset(canvas);
@@ -18931,9 +18932,9 @@ function Stretch($$anchor, $$props) {
18931
18932
  $.append($$anchor, fragment);
18932
18933
  $.pop();
18933
18934
  }
18934
- var root_2$20 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18935
- var root$21 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18936
- function Stripes($$anchor, $$props) {
18935
+ var root_2$21 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
18936
+ var root$22 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
18937
+ function Stretch($$anchor, $$props) {
18937
18938
  $.push($$props, true);
18938
18939
  let _experimentalWarnedOnce = false;
18939
18940
  if (componentDefinition$95.experimental && !_experimentalWarnedOnce) {
@@ -19097,7 +19098,7 @@ function Stripes($$anchor, $$props) {
19097
19098
  $.set(isRegistered, false);
19098
19099
  parentRegister(instanceId, null, null, null, null);
19099
19100
  });
19100
- var fragment = root$21();
19101
+ var fragment = root$22();
19101
19102
  var span = $.first_child(fragment);
19102
19103
  var node_1 = $.child(span);
19103
19104
  var consequent = ($$anchor$1) => {
@@ -19110,7 +19111,7 @@ function Stripes($$anchor, $$props) {
19110
19111
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
19111
19112
  var node_2 = $.sibling(span, 2);
19112
19113
  var consequent_1 = ($$anchor$1) => {
19113
- var canvas = root_2$20();
19114
+ var canvas = root_2$21();
19114
19115
  var node_3 = $.child(canvas);
19115
19116
  children?.(node_3);
19116
19117
  $.reset(canvas);
@@ -19129,9 +19130,9 @@ function Stripes($$anchor, $$props) {
19129
19130
  $.append($$anchor, fragment);
19130
19131
  $.pop();
19131
19132
  }
19132
- var root_2$19 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19133
- var root$20 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19134
- function StudioBackground($$anchor, $$props) {
19133
+ var root_2$20 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19134
+ var root$21 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19135
+ function Stripes($$anchor, $$props) {
19135
19136
  $.push($$props, true);
19136
19137
  let _experimentalWarnedOnce = false;
19137
19138
  if (componentDefinition$96.experimental && !_experimentalWarnedOnce) {
@@ -19295,7 +19296,7 @@ function StudioBackground($$anchor, $$props) {
19295
19296
  $.set(isRegistered, false);
19296
19297
  parentRegister(instanceId, null, null, null, null);
19297
19298
  });
19298
- var fragment = root$20();
19299
+ var fragment = root$21();
19299
19300
  var span = $.first_child(fragment);
19300
19301
  var node_1 = $.child(span);
19301
19302
  var consequent = ($$anchor$1) => {
@@ -19308,7 +19309,7 @@ function StudioBackground($$anchor, $$props) {
19308
19309
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
19309
19310
  var node_2 = $.sibling(span, 2);
19310
19311
  var consequent_1 = ($$anchor$1) => {
19311
- var canvas = root_2$19();
19312
+ var canvas = root_2$20();
19312
19313
  var node_3 = $.child(canvas);
19313
19314
  children?.(node_3);
19314
19315
  $.reset(canvas);
@@ -19327,9 +19328,9 @@ function StudioBackground($$anchor, $$props) {
19327
19328
  $.append($$anchor, fragment);
19328
19329
  $.pop();
19329
19330
  }
19330
- var root_2$18 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19331
- var root$19 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19332
- function SunBurst($$anchor, $$props) {
19331
+ var root_2$19 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19332
+ var root$20 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19333
+ function StudioBackground($$anchor, $$props) {
19333
19334
  $.push($$props, true);
19334
19335
  let _experimentalWarnedOnce = false;
19335
19336
  if (componentDefinition$97.experimental && !_experimentalWarnedOnce) {
@@ -19493,7 +19494,7 @@ function SunBurst($$anchor, $$props) {
19493
19494
  $.set(isRegistered, false);
19494
19495
  parentRegister(instanceId, null, null, null, null);
19495
19496
  });
19496
- var fragment = root$19();
19497
+ var fragment = root$20();
19497
19498
  var span = $.first_child(fragment);
19498
19499
  var node_1 = $.child(span);
19499
19500
  var consequent = ($$anchor$1) => {
@@ -19506,7 +19507,7 @@ function SunBurst($$anchor, $$props) {
19506
19507
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
19507
19508
  var node_2 = $.sibling(span, 2);
19508
19509
  var consequent_1 = ($$anchor$1) => {
19509
- var canvas = root_2$18();
19510
+ var canvas = root_2$19();
19510
19511
  var node_3 = $.child(canvas);
19511
19512
  children?.(node_3);
19512
19513
  $.reset(canvas);
@@ -19525,9 +19526,9 @@ function SunBurst($$anchor, $$props) {
19525
19526
  $.append($$anchor, fragment);
19526
19527
  $.pop();
19527
19528
  }
19528
- var root_2$17 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19529
- var root$18 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19530
- function Swirl($$anchor, $$props) {
19529
+ var root_2$18 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19530
+ var root$19 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19531
+ function SunBurst($$anchor, $$props) {
19531
19532
  $.push($$props, true);
19532
19533
  let _experimentalWarnedOnce = false;
19533
19534
  if (componentDefinition$98.experimental && !_experimentalWarnedOnce) {
@@ -19691,7 +19692,7 @@ function Swirl($$anchor, $$props) {
19691
19692
  $.set(isRegistered, false);
19692
19693
  parentRegister(instanceId, null, null, null, null);
19693
19694
  });
19694
- var fragment = root$18();
19695
+ var fragment = root$19();
19695
19696
  var span = $.first_child(fragment);
19696
19697
  var node_1 = $.child(span);
19697
19698
  var consequent = ($$anchor$1) => {
@@ -19704,7 +19705,7 @@ function Swirl($$anchor, $$props) {
19704
19705
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
19705
19706
  var node_2 = $.sibling(span, 2);
19706
19707
  var consequent_1 = ($$anchor$1) => {
19707
- var canvas = root_2$17();
19708
+ var canvas = root_2$18();
19708
19709
  var node_3 = $.child(canvas);
19709
19710
  children?.(node_3);
19710
19711
  $.reset(canvas);
@@ -19723,9 +19724,9 @@ function Swirl($$anchor, $$props) {
19723
19724
  $.append($$anchor, fragment);
19724
19725
  $.pop();
19725
19726
  }
19726
- var root_2$16 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19727
- var root$17 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19728
- function TiltShift($$anchor, $$props) {
19727
+ var root_2$17 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19728
+ var root$18 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19729
+ function Swirl($$anchor, $$props) {
19729
19730
  $.push($$props, true);
19730
19731
  let _experimentalWarnedOnce = false;
19731
19732
  if (componentDefinition$99.experimental && !_experimentalWarnedOnce) {
@@ -19889,7 +19890,7 @@ function TiltShift($$anchor, $$props) {
19889
19890
  $.set(isRegistered, false);
19890
19891
  parentRegister(instanceId, null, null, null, null);
19891
19892
  });
19892
- var fragment = root$17();
19893
+ var fragment = root$18();
19893
19894
  var span = $.first_child(fragment);
19894
19895
  var node_1 = $.child(span);
19895
19896
  var consequent = ($$anchor$1) => {
@@ -19902,7 +19903,7 @@ function TiltShift($$anchor, $$props) {
19902
19903
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
19903
19904
  var node_2 = $.sibling(span, 2);
19904
19905
  var consequent_1 = ($$anchor$1) => {
19905
- var canvas = root_2$16();
19906
+ var canvas = root_2$17();
19906
19907
  var node_3 = $.child(canvas);
19907
19908
  children?.(node_3);
19908
19909
  $.reset(canvas);
@@ -19921,9 +19922,9 @@ function TiltShift($$anchor, $$props) {
19921
19922
  $.append($$anchor, fragment);
19922
19923
  $.pop();
19923
19924
  }
19924
- var root_2$15 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19925
- var root$16 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19926
- function Tint($$anchor, $$props) {
19925
+ var root_2$16 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
19926
+ var root$17 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
19927
+ function TiltShift($$anchor, $$props) {
19927
19928
  $.push($$props, true);
19928
19929
  let _experimentalWarnedOnce = false;
19929
19930
  if (componentDefinition$100.experimental && !_experimentalWarnedOnce) {
@@ -20087,7 +20088,7 @@ function Tint($$anchor, $$props) {
20087
20088
  $.set(isRegistered, false);
20088
20089
  parentRegister(instanceId, null, null, null, null);
20089
20090
  });
20090
- var fragment = root$16();
20091
+ var fragment = root$17();
20091
20092
  var span = $.first_child(fragment);
20092
20093
  var node_1 = $.child(span);
20093
20094
  var consequent = ($$anchor$1) => {
@@ -20100,7 +20101,7 @@ function Tint($$anchor, $$props) {
20100
20101
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
20101
20102
  var node_2 = $.sibling(span, 2);
20102
20103
  var consequent_1 = ($$anchor$1) => {
20103
- var canvas = root_2$15();
20104
+ var canvas = root_2$16();
20104
20105
  var node_3 = $.child(canvas);
20105
20106
  children?.(node_3);
20106
20107
  $.reset(canvas);
@@ -20119,9 +20120,9 @@ function Tint($$anchor, $$props) {
20119
20120
  $.append($$anchor, fragment);
20120
20121
  $.pop();
20121
20122
  }
20122
- var root_2$14 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20123
- var root$15 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20124
- function Trapezoid($$anchor, $$props) {
20123
+ var root_2$15 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20124
+ var root$16 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20125
+ function Tint($$anchor, $$props) {
20125
20126
  $.push($$props, true);
20126
20127
  let _experimentalWarnedOnce = false;
20127
20128
  if (componentDefinition$101.experimental && !_experimentalWarnedOnce) {
@@ -20285,7 +20286,7 @@ function Trapezoid($$anchor, $$props) {
20285
20286
  $.set(isRegistered, false);
20286
20287
  parentRegister(instanceId, null, null, null, null);
20287
20288
  });
20288
- var fragment = root$15();
20289
+ var fragment = root$16();
20289
20290
  var span = $.first_child(fragment);
20290
20291
  var node_1 = $.child(span);
20291
20292
  var consequent = ($$anchor$1) => {
@@ -20298,7 +20299,7 @@ function Trapezoid($$anchor, $$props) {
20298
20299
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
20299
20300
  var node_2 = $.sibling(span, 2);
20300
20301
  var consequent_1 = ($$anchor$1) => {
20301
- var canvas = root_2$14();
20302
+ var canvas = root_2$15();
20302
20303
  var node_3 = $.child(canvas);
20303
20304
  children?.(node_3);
20304
20305
  $.reset(canvas);
@@ -20317,9 +20318,9 @@ function Trapezoid($$anchor, $$props) {
20317
20318
  $.append($$anchor, fragment);
20318
20319
  $.pop();
20319
20320
  }
20320
- var root_2$13 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20321
- var root$14 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20322
- function Tritone($$anchor, $$props) {
20321
+ var root_2$14 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20322
+ var root$15 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20323
+ function Trapezoid($$anchor, $$props) {
20323
20324
  $.push($$props, true);
20324
20325
  let _experimentalWarnedOnce = false;
20325
20326
  if (componentDefinition$102.experimental && !_experimentalWarnedOnce) {
@@ -20483,7 +20484,7 @@ function Tritone($$anchor, $$props) {
20483
20484
  $.set(isRegistered, false);
20484
20485
  parentRegister(instanceId, null, null, null, null);
20485
20486
  });
20486
- var fragment = root$14();
20487
+ var fragment = root$15();
20487
20488
  var span = $.first_child(fragment);
20488
20489
  var node_1 = $.child(span);
20489
20490
  var consequent = ($$anchor$1) => {
@@ -20496,7 +20497,7 @@ function Tritone($$anchor, $$props) {
20496
20497
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
20497
20498
  var node_2 = $.sibling(span, 2);
20498
20499
  var consequent_1 = ($$anchor$1) => {
20499
- var canvas = root_2$13();
20500
+ var canvas = root_2$14();
20500
20501
  var node_3 = $.child(canvas);
20501
20502
  children?.(node_3);
20502
20503
  $.reset(canvas);
@@ -20515,9 +20516,9 @@ function Tritone($$anchor, $$props) {
20515
20516
  $.append($$anchor, fragment);
20516
20517
  $.pop();
20517
20518
  }
20518
- var root_2$12 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20519
- var root$13 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20520
- function Truchet($$anchor, $$props) {
20519
+ var root_2$13 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20520
+ var root$14 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20521
+ function Tritone($$anchor, $$props) {
20521
20522
  $.push($$props, true);
20522
20523
  let _experimentalWarnedOnce = false;
20523
20524
  if (componentDefinition$103.experimental && !_experimentalWarnedOnce) {
@@ -20681,7 +20682,7 @@ function Truchet($$anchor, $$props) {
20681
20682
  $.set(isRegistered, false);
20682
20683
  parentRegister(instanceId, null, null, null, null);
20683
20684
  });
20684
- var fragment = root$13();
20685
+ var fragment = root$14();
20685
20686
  var span = $.first_child(fragment);
20686
20687
  var node_1 = $.child(span);
20687
20688
  var consequent = ($$anchor$1) => {
@@ -20694,7 +20695,7 @@ function Truchet($$anchor, $$props) {
20694
20695
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
20695
20696
  var node_2 = $.sibling(span, 2);
20696
20697
  var consequent_1 = ($$anchor$1) => {
20697
- var canvas = root_2$12();
20698
+ var canvas = root_2$13();
20698
20699
  var node_3 = $.child(canvas);
20699
20700
  children?.(node_3);
20700
20701
  $.reset(canvas);
@@ -20713,9 +20714,9 @@ function Truchet($$anchor, $$props) {
20713
20714
  $.append($$anchor, fragment);
20714
20715
  $.pop();
20715
20716
  }
20716
- var root_2$11 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20717
- var root$12 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20718
- function Twirl($$anchor, $$props) {
20717
+ var root_2$12 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20718
+ var root$13 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20719
+ function Truchet($$anchor, $$props) {
20719
20720
  $.push($$props, true);
20720
20721
  let _experimentalWarnedOnce = false;
20721
20722
  if (componentDefinition$104.experimental && !_experimentalWarnedOnce) {
@@ -20879,7 +20880,7 @@ function Twirl($$anchor, $$props) {
20879
20880
  $.set(isRegistered, false);
20880
20881
  parentRegister(instanceId, null, null, null, null);
20881
20882
  });
20882
- var fragment = root$12();
20883
+ var fragment = root$13();
20883
20884
  var span = $.first_child(fragment);
20884
20885
  var node_1 = $.child(span);
20885
20886
  var consequent = ($$anchor$1) => {
@@ -20892,7 +20893,7 @@ function Twirl($$anchor, $$props) {
20892
20893
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
20893
20894
  var node_2 = $.sibling(span, 2);
20894
20895
  var consequent_1 = ($$anchor$1) => {
20895
- var canvas = root_2$11();
20896
+ var canvas = root_2$12();
20896
20897
  var node_3 = $.child(canvas);
20897
20898
  children?.(node_3);
20898
20899
  $.reset(canvas);
@@ -20911,9 +20912,9 @@ function Twirl($$anchor, $$props) {
20911
20912
  $.append($$anchor, fragment);
20912
20913
  $.pop();
20913
20914
  }
20914
- var root_2$10 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20915
- var root$11 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20916
- function VHS($$anchor, $$props) {
20915
+ var root_2$11 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
20916
+ var root$12 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
20917
+ function Twirl($$anchor, $$props) {
20917
20918
  $.push($$props, true);
20918
20919
  let _experimentalWarnedOnce = false;
20919
20920
  if (componentDefinition$105.experimental && !_experimentalWarnedOnce) {
@@ -21077,7 +21078,7 @@ function VHS($$anchor, $$props) {
21077
21078
  $.set(isRegistered, false);
21078
21079
  parentRegister(instanceId, null, null, null, null);
21079
21080
  });
21080
- var fragment = root$11();
21081
+ var fragment = root$12();
21081
21082
  var span = $.first_child(fragment);
21082
21083
  var node_1 = $.child(span);
21083
21084
  var consequent = ($$anchor$1) => {
@@ -21090,7 +21091,7 @@ function VHS($$anchor, $$props) {
21090
21091
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
21091
21092
  var node_2 = $.sibling(span, 2);
21092
21093
  var consequent_1 = ($$anchor$1) => {
21093
- var canvas = root_2$10();
21094
+ var canvas = root_2$11();
21094
21095
  var node_3 = $.child(canvas);
21095
21096
  children?.(node_3);
21096
21097
  $.reset(canvas);
@@ -21109,9 +21110,9 @@ function VHS($$anchor, $$props) {
21109
21110
  $.append($$anchor, fragment);
21110
21111
  $.pop();
21111
21112
  }
21112
- var root_2$9 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21113
- var root$10 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21114
- function Vesica($$anchor, $$props) {
21113
+ var root_2$10 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21114
+ var root$11 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21115
+ function VHS($$anchor, $$props) {
21115
21116
  $.push($$props, true);
21116
21117
  let _experimentalWarnedOnce = false;
21117
21118
  if (componentDefinition$106.experimental && !_experimentalWarnedOnce) {
@@ -21275,7 +21276,7 @@ function Vesica($$anchor, $$props) {
21275
21276
  $.set(isRegistered, false);
21276
21277
  parentRegister(instanceId, null, null, null, null);
21277
21278
  });
21278
- var fragment = root$10();
21279
+ var fragment = root$11();
21279
21280
  var span = $.first_child(fragment);
21280
21281
  var node_1 = $.child(span);
21281
21282
  var consequent = ($$anchor$1) => {
@@ -21288,7 +21289,7 @@ function Vesica($$anchor, $$props) {
21288
21289
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
21289
21290
  var node_2 = $.sibling(span, 2);
21290
21291
  var consequent_1 = ($$anchor$1) => {
21291
- var canvas = root_2$9();
21292
+ var canvas = root_2$10();
21292
21293
  var node_3 = $.child(canvas);
21293
21294
  children?.(node_3);
21294
21295
  $.reset(canvas);
@@ -21307,9 +21308,9 @@ function Vesica($$anchor, $$props) {
21307
21308
  $.append($$anchor, fragment);
21308
21309
  $.pop();
21309
21310
  }
21310
- var root_2$8 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21311
- var root$9 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21312
- function Vibrance($$anchor, $$props) {
21311
+ var root_2$9 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21312
+ var root$10 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21313
+ function Vesica($$anchor, $$props) {
21313
21314
  $.push($$props, true);
21314
21315
  let _experimentalWarnedOnce = false;
21315
21316
  if (componentDefinition$107.experimental && !_experimentalWarnedOnce) {
@@ -21473,7 +21474,7 @@ function Vibrance($$anchor, $$props) {
21473
21474
  $.set(isRegistered, false);
21474
21475
  parentRegister(instanceId, null, null, null, null);
21475
21476
  });
21476
- var fragment = root$9();
21477
+ var fragment = root$10();
21477
21478
  var span = $.first_child(fragment);
21478
21479
  var node_1 = $.child(span);
21479
21480
  var consequent = ($$anchor$1) => {
@@ -21486,7 +21487,7 @@ function Vibrance($$anchor, $$props) {
21486
21487
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
21487
21488
  var node_2 = $.sibling(span, 2);
21488
21489
  var consequent_1 = ($$anchor$1) => {
21489
- var canvas = root_2$8();
21490
+ var canvas = root_2$9();
21490
21491
  var node_3 = $.child(canvas);
21491
21492
  children?.(node_3);
21492
21493
  $.reset(canvas);
@@ -21505,9 +21506,9 @@ function Vibrance($$anchor, $$props) {
21505
21506
  $.append($$anchor, fragment);
21506
21507
  $.pop();
21507
21508
  }
21508
- var root_2$7 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21509
- var root$8 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21510
- function VideoTexture($$anchor, $$props) {
21509
+ var root_2$8 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21510
+ var root$9 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21511
+ function Vibrance($$anchor, $$props) {
21511
21512
  $.push($$props, true);
21512
21513
  let _experimentalWarnedOnce = false;
21513
21514
  if (componentDefinition$108.experimental && !_experimentalWarnedOnce) {
@@ -21671,7 +21672,7 @@ function VideoTexture($$anchor, $$props) {
21671
21672
  $.set(isRegistered, false);
21672
21673
  parentRegister(instanceId, null, null, null, null);
21673
21674
  });
21674
- var fragment = root$8();
21675
+ var fragment = root$9();
21675
21676
  var span = $.first_child(fragment);
21676
21677
  var node_1 = $.child(span);
21677
21678
  var consequent = ($$anchor$1) => {
@@ -21684,7 +21685,7 @@ function VideoTexture($$anchor, $$props) {
21684
21685
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
21685
21686
  var node_2 = $.sibling(span, 2);
21686
21687
  var consequent_1 = ($$anchor$1) => {
21687
- var canvas = root_2$7();
21688
+ var canvas = root_2$8();
21688
21689
  var node_3 = $.child(canvas);
21689
21690
  children?.(node_3);
21690
21691
  $.reset(canvas);
@@ -21703,9 +21704,9 @@ function VideoTexture($$anchor, $$props) {
21703
21704
  $.append($$anchor, fragment);
21704
21705
  $.pop();
21705
21706
  }
21706
- var root_2$6 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21707
- var root$7 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21708
- function Vignette($$anchor, $$props) {
21707
+ var root_2$7 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21708
+ var root$8 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21709
+ function VideoTexture($$anchor, $$props) {
21709
21710
  $.push($$props, true);
21710
21711
  let _experimentalWarnedOnce = false;
21711
21712
  if (componentDefinition$109.experimental && !_experimentalWarnedOnce) {
@@ -21869,7 +21870,7 @@ function Vignette($$anchor, $$props) {
21869
21870
  $.set(isRegistered, false);
21870
21871
  parentRegister(instanceId, null, null, null, null);
21871
21872
  });
21872
- var fragment = root$7();
21873
+ var fragment = root$8();
21873
21874
  var span = $.first_child(fragment);
21874
21875
  var node_1 = $.child(span);
21875
21876
  var consequent = ($$anchor$1) => {
@@ -21882,7 +21883,7 @@ function Vignette($$anchor, $$props) {
21882
21883
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
21883
21884
  var node_2 = $.sibling(span, 2);
21884
21885
  var consequent_1 = ($$anchor$1) => {
21885
- var canvas = root_2$6();
21886
+ var canvas = root_2$7();
21886
21887
  var node_3 = $.child(canvas);
21887
21888
  children?.(node_3);
21888
21889
  $.reset(canvas);
@@ -21901,9 +21902,9 @@ function Vignette($$anchor, $$props) {
21901
21902
  $.append($$anchor, fragment);
21902
21903
  $.pop();
21903
21904
  }
21904
- var root_2$5 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21905
- var root$6 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21906
- function Voronoi($$anchor, $$props) {
21905
+ var root_2$6 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
21906
+ var root$7 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
21907
+ function Vignette($$anchor, $$props) {
21907
21908
  $.push($$props, true);
21908
21909
  let _experimentalWarnedOnce = false;
21909
21910
  if (componentDefinition$110.experimental && !_experimentalWarnedOnce) {
@@ -22067,7 +22068,7 @@ function Voronoi($$anchor, $$props) {
22067
22068
  $.set(isRegistered, false);
22068
22069
  parentRegister(instanceId, null, null, null, null);
22069
22070
  });
22070
- var fragment = root$6();
22071
+ var fragment = root$7();
22071
22072
  var span = $.first_child(fragment);
22072
22073
  var node_1 = $.child(span);
22073
22074
  var consequent = ($$anchor$1) => {
@@ -22080,7 +22081,7 @@ function Voronoi($$anchor, $$props) {
22080
22081
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
22081
22082
  var node_2 = $.sibling(span, 2);
22082
22083
  var consequent_1 = ($$anchor$1) => {
22083
- var canvas = root_2$5();
22084
+ var canvas = root_2$6();
22084
22085
  var node_3 = $.child(canvas);
22085
22086
  children?.(node_3);
22086
22087
  $.reset(canvas);
@@ -22099,9 +22100,9 @@ function Voronoi($$anchor, $$props) {
22099
22100
  $.append($$anchor, fragment);
22100
22101
  $.pop();
22101
22102
  }
22102
- var root_2$4 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22103
- var root$5 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22104
- function WaveDistortion($$anchor, $$props) {
22103
+ var root_2$5 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22104
+ var root$6 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22105
+ function Voronoi($$anchor, $$props) {
22105
22106
  $.push($$props, true);
22106
22107
  let _experimentalWarnedOnce = false;
22107
22108
  if (componentDefinition$111.experimental && !_experimentalWarnedOnce) {
@@ -22265,7 +22266,7 @@ function WaveDistortion($$anchor, $$props) {
22265
22266
  $.set(isRegistered, false);
22266
22267
  parentRegister(instanceId, null, null, null, null);
22267
22268
  });
22268
- var fragment = root$5();
22269
+ var fragment = root$6();
22269
22270
  var span = $.first_child(fragment);
22270
22271
  var node_1 = $.child(span);
22271
22272
  var consequent = ($$anchor$1) => {
@@ -22278,7 +22279,7 @@ function WaveDistortion($$anchor, $$props) {
22278
22279
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
22279
22280
  var node_2 = $.sibling(span, 2);
22280
22281
  var consequent_1 = ($$anchor$1) => {
22281
- var canvas = root_2$4();
22282
+ var canvas = root_2$5();
22282
22283
  var node_3 = $.child(canvas);
22283
22284
  children?.(node_3);
22284
22285
  $.reset(canvas);
@@ -22297,9 +22298,9 @@ function WaveDistortion($$anchor, $$props) {
22297
22298
  $.append($$anchor, fragment);
22298
22299
  $.pop();
22299
22300
  }
22300
- var root_2$3 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22301
- var root$4 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22302
- function Weave($$anchor, $$props) {
22301
+ var root_2$4 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22302
+ var root$5 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22303
+ function WaveDistortion($$anchor, $$props) {
22303
22304
  $.push($$props, true);
22304
22305
  let _experimentalWarnedOnce = false;
22305
22306
  if (componentDefinition$112.experimental && !_experimentalWarnedOnce) {
@@ -22463,7 +22464,7 @@ function Weave($$anchor, $$props) {
22463
22464
  $.set(isRegistered, false);
22464
22465
  parentRegister(instanceId, null, null, null, null);
22465
22466
  });
22466
- var fragment = root$4();
22467
+ var fragment = root$5();
22467
22468
  var span = $.first_child(fragment);
22468
22469
  var node_1 = $.child(span);
22469
22470
  var consequent = ($$anchor$1) => {
@@ -22476,7 +22477,7 @@ function Weave($$anchor, $$props) {
22476
22477
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
22477
22478
  var node_2 = $.sibling(span, 2);
22478
22479
  var consequent_1 = ($$anchor$1) => {
22479
- var canvas = root_2$3();
22480
+ var canvas = root_2$4();
22480
22481
  var node_3 = $.child(canvas);
22481
22482
  children?.(node_3);
22482
22483
  $.reset(canvas);
@@ -22495,9 +22496,9 @@ function Weave($$anchor, $$props) {
22495
22496
  $.append($$anchor, fragment);
22496
22497
  $.pop();
22497
22498
  }
22498
- var root_2$2 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22499
- var root$3 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22500
- function WebcamTexture($$anchor, $$props) {
22499
+ var root_2$3 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22500
+ var root$4 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22501
+ function Weave($$anchor, $$props) {
22501
22502
  $.push($$props, true);
22502
22503
  let _experimentalWarnedOnce = false;
22503
22504
  if (componentDefinition$113.experimental && !_experimentalWarnedOnce) {
@@ -22661,7 +22662,7 @@ function WebcamTexture($$anchor, $$props) {
22661
22662
  $.set(isRegistered, false);
22662
22663
  parentRegister(instanceId, null, null, null, null);
22663
22664
  });
22664
- var fragment = root$3();
22665
+ var fragment = root$4();
22665
22666
  var span = $.first_child(fragment);
22666
22667
  var node_1 = $.child(span);
22667
22668
  var consequent = ($$anchor$1) => {
@@ -22674,7 +22675,7 @@ function WebcamTexture($$anchor, $$props) {
22674
22675
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
22675
22676
  var node_2 = $.sibling(span, 2);
22676
22677
  var consequent_1 = ($$anchor$1) => {
22677
- var canvas = root_2$2();
22678
+ var canvas = root_2$3();
22678
22679
  var node_3 = $.child(canvas);
22679
22680
  children?.(node_3);
22680
22681
  $.reset(canvas);
@@ -22693,9 +22694,9 @@ function WebcamTexture($$anchor, $$props) {
22693
22694
  $.append($$anchor, fragment);
22694
22695
  $.pop();
22695
22696
  }
22696
- var root_2$1 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22697
- var root$2 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22698
- function WorleyNoise($$anchor, $$props) {
22697
+ var root_2$2 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22698
+ var root$3 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22699
+ function WebcamTexture($$anchor, $$props) {
22699
22700
  $.push($$props, true);
22700
22701
  let _experimentalWarnedOnce = false;
22701
22702
  if (componentDefinition$114.experimental && !_experimentalWarnedOnce) {
@@ -22859,7 +22860,7 @@ function WorleyNoise($$anchor, $$props) {
22859
22860
  $.set(isRegistered, false);
22860
22861
  parentRegister(instanceId, null, null, null, null);
22861
22862
  });
22862
- var fragment = root$2();
22863
+ var fragment = root$3();
22863
22864
  var span = $.first_child(fragment);
22864
22865
  var node_1 = $.child(span);
22865
22866
  var consequent = ($$anchor$1) => {
@@ -22872,7 +22873,7 @@ function WorleyNoise($$anchor, $$props) {
22872
22873
  $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
22873
22874
  var node_2 = $.sibling(span, 2);
22874
22875
  var consequent_1 = ($$anchor$1) => {
22875
- var canvas = root_2$1();
22876
+ var canvas = root_2$2();
22876
22877
  var node_3 = $.child(canvas);
22877
22878
  children?.(node_3);
22878
22879
  $.reset(canvas);
@@ -22891,9 +22892,9 @@ function WorleyNoise($$anchor, $$props) {
22891
22892
  $.append($$anchor, fragment);
22892
22893
  $.pop();
22893
22894
  }
22894
- var root_2 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22895
- var root$1 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22896
- function ZoomBlur($$anchor, $$props) {
22895
+ var root_2$1 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
22896
+ var root$2 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
22897
+ function WorleyNoise($$anchor, $$props) {
22897
22898
  $.push($$props, true);
22898
22899
  let _experimentalWarnedOnce = false;
22899
22900
  if (componentDefinition$115.experimental && !_experimentalWarnedOnce) {
@@ -23057,6 +23058,204 @@ function ZoomBlur($$anchor, $$props) {
23057
23058
  $.set(isRegistered, false);
23058
23059
  parentRegister(instanceId, null, null, null, null);
23059
23060
  });
23061
+ var fragment = root$2();
23062
+ var span = $.first_child(fragment);
23063
+ var node_1 = $.child(span);
23064
+ var consequent = ($$anchor$1) => {
23065
+ children?.($$anchor$1);
23066
+ };
23067
+ $.if(node_1, ($$render) => {
23068
+ if (!isCapturesDOM) $$render(consequent);
23069
+ });
23070
+ $.reset(span);
23071
+ $.bind_this(span, ($$value) => orderMarker = $$value, () => orderMarker);
23072
+ var node_2 = $.sibling(span, 2);
23073
+ var consequent_1 = ($$anchor$1) => {
23074
+ var canvas = root_2$1();
23075
+ var node_3 = $.child(canvas);
23076
+ children?.(node_3);
23077
+ $.reset(canvas);
23078
+ $.action(canvas, ($$node) => teleportToBody?.($$node));
23079
+ $.bind_this(canvas, ($$value) => captureCanvas = $$value, () => captureCanvas);
23080
+ $.template_effect(() => {
23081
+ $.set_attribute(canvas, "width", $.get(captureW));
23082
+ $.set_attribute(canvas, "height", $.get(captureH));
23083
+ });
23084
+ $.append($$anchor$1, canvas);
23085
+ };
23086
+ $.if(node_2, ($$render) => {
23087
+ if (isCapturesDOM) $$render(consequent_1);
23088
+ });
23089
+ $.template_effect(() => $.set_attribute(span, "data-shader-id", instanceId));
23090
+ $.append($$anchor, fragment);
23091
+ $.pop();
23092
+ }
23093
+ var root_2 = $.from_html(`<canvas layoutsubtree="" style="position:fixed;inset:0;width:100vw;height:100vh;z-index:-9999"><!></canvas>`);
23094
+ var root$1 = $.from_html(`<span style="display:contents"><!></span> <!>`, 1);
23095
+ function ZoomBlur($$anchor, $$props) {
23096
+ $.push($$props, true);
23097
+ let _experimentalWarnedOnce = false;
23098
+ if (componentDefinition$116.experimental && !_experimentalWarnedOnce) {
23099
+ _experimentalWarnedOnce = true;
23100
+ const _e = componentDefinition$116.experimental;
23101
+ console.info(`%c⚠ [Shaders] ${componentDefinition$116.name} is experimental: ${_e.message}`, "color: #f59e0b; font-weight: bold");
23102
+ }
23103
+ function isPropDriver(value) {
23104
+ return typeof value === "object" && value !== null && "type" in value && (value.type === "map" || value.type === "mouse" || value.type === "mouse-position" || value.type === "auto-animate");
23105
+ }
23106
+ const DEFAULT_TRANSFORM = {
23107
+ offsetX: 0,
23108
+ offsetY: 0,
23109
+ rotation: 0,
23110
+ scale: 1,
23111
+ anchorX: .5,
23112
+ anchorY: .5,
23113
+ edges: "transparent"
23114
+ };
23115
+ const componentDefaults = {
23116
+ blendMode: "normal",
23117
+ visible: true,
23118
+ ...Object.entries(componentDefinition$116.props).reduce((acc, [key, config]) => {
23119
+ acc[key] = config.default;
23120
+ return acc;
23121
+ }, {})
23122
+ };
23123
+ const props = $.rest_props($$props, [
23124
+ "$$slots",
23125
+ "$$events",
23126
+ "$$legacy"
23127
+ ]);
23128
+ const blendMode = $.derived(() => $$props.blendMode ?? componentDefaults.blendMode);
23129
+ const opacity = $.derived(() => $$props.opacity);
23130
+ const visible = $.derived(() => $$props.visible ?? componentDefaults.visible);
23131
+ const id = $.derived(() => $$props.id);
23132
+ const maskSource = $.derived(() => $$props.maskSource);
23133
+ const maskType = $.derived(() => $$props.maskType);
23134
+ const renderOrder = $.derived(() => $$props.renderOrder);
23135
+ const { children } = props;
23136
+ const mapsFromProps = $.derived(() => {
23137
+ const maps = {};
23138
+ for (const key of Object.keys(componentDefinition$116.props)) {
23139
+ const val = props[key];
23140
+ if (isPropDriver(val)) maps[key] = val;
23141
+ }
23142
+ return Object.keys(maps).length > 0 ? maps : void 0;
23143
+ });
23144
+ const effectiveTransform = $.derived(() => ({
23145
+ ...DEFAULT_TRANSFORM,
23146
+ ...$$props.transform
23147
+ }));
23148
+ const parentId = getContext("shaderParentId");
23149
+ if (parentId === void 0) throw new Error("Shader components must be used inside an <Shader> component or another shader component");
23150
+ const instanceId = ($.get(id) ? $.get(id).replace(/[^a-zA-Z0-9_]/g, "_") : null) || Math.random().toString(36).substring(2, 10);
23151
+ setContext("shaderParentId", instanceId);
23152
+ const shaderReadyProps = $.derived(() => {
23153
+ let baseProps = { ...componentDefaults };
23154
+ for (const key in props) if (key !== "blendMode" && key !== "opacity" && key !== "visible" && key !== "id" && key !== "maskSource" && key !== "maskType" && key !== "renderOrder" && key !== "transform" && key !== "children") {
23155
+ const propValue = props[key];
23156
+ if (isPropDriver(propValue)) continue;
23157
+ const defaultValue = componentDefaults[key];
23158
+ if (propValue !== void 0 && propValue !== defaultValue) baseProps[key] = propValue;
23159
+ }
23160
+ return baseProps;
23161
+ });
23162
+ const shaderColorSpace = getContext("shaderColorSpace");
23163
+ if (shaderColorSpace) setColorSpaceMode(shaderColorSpace());
23164
+ const uniforms = createUniformsMap(componentDefinition$116, $.get(shaderReadyProps), instanceId);
23165
+ const parentRegister = getContext("shaderNodeRegister");
23166
+ if (parentRegister === void 0) throw new Error("Shader components must be used inside an <Shader> component or another shader component");
23167
+ const parentUniformUpdate = getContext("shaderUniformUpdate");
23168
+ if (parentUniformUpdate === void 0) throw new Error("Shader components require shaderUniformUpdate from parent");
23169
+ const parentMetadataUpdate = getContext("shaderMetadataUpdate");
23170
+ if (parentMetadataUpdate === void 0) throw new Error("Shader components require shaderMetadataUpdate from parent");
23171
+ const isCapturesDOM = !!componentDefinition$116.capturesDOM;
23172
+ let captureCanvas;
23173
+ let captureW = $.state($.proxy(typeof window !== "undefined" ? Math.round(window.innerWidth * Math.min(window.devicePixelRatio, 2)) : 0));
23174
+ let captureH = $.state($.proxy(typeof window !== "undefined" ? Math.round(window.innerHeight * Math.min(window.devicePixelRatio, 2)) : 0));
23175
+ function teleportToBody(node) {
23176
+ document.body.appendChild(node);
23177
+ return { destroy() {
23178
+ node.remove();
23179
+ } };
23180
+ }
23181
+ if (isCapturesDOM) {
23182
+ const onWinResize = () => {
23183
+ const d = Math.min(window.devicePixelRatio, 2);
23184
+ $.set(captureW, Math.round(window.innerWidth * d), true);
23185
+ $.set(captureH, Math.round(window.innerHeight * d), true);
23186
+ };
23187
+ onMount(() => {
23188
+ window.addEventListener("resize", onWinResize);
23189
+ });
23190
+ onDestroy(() => {
23191
+ window.removeEventListener("resize", onWinResize);
23192
+ });
23193
+ }
23194
+ let orderMarker;
23195
+ let detectedRenderOrder = void 0;
23196
+ let isRegistered = $.state(false);
23197
+ Object.entries(uniforms).forEach(([propName, { uniform, transform }]) => {
23198
+ $.user_effect(() => {
23199
+ if (!$.get(isRegistered)) return;
23200
+ if (uniform && uniform.value !== void 0) {
23201
+ const newValue = props[propName];
23202
+ if (newValue !== void 0 && !isPropDriver(newValue)) parentUniformUpdate(instanceId, propName, newValue);
23203
+ }
23204
+ });
23205
+ });
23206
+ $.user_effect(() => {
23207
+ if (!$.get(isRegistered)) return;
23208
+ parentMetadataUpdate(instanceId, {
23209
+ blendMode: $.get(blendMode),
23210
+ opacity: $.get(opacity),
23211
+ visible: $.get(visible) === false ? false : true,
23212
+ id: $.get(id),
23213
+ mask: $.get(maskSource) ? {
23214
+ source: $.get(maskSource),
23215
+ type: $.get(maskType) || "alpha"
23216
+ } : void 0,
23217
+ maps: $.get(mapsFromProps),
23218
+ renderOrder: $.get(renderOrder) ?? detectedRenderOrder,
23219
+ transform: $.get(effectiveTransform)
23220
+ });
23221
+ });
23222
+ onMount(() => {
23223
+ if (componentDefinition$116 && typeof componentDefinition$116.fragmentNode === "function") {
23224
+ parentRegister(instanceId, componentDefinition$116.fragmentNode, parentId, {
23225
+ blendMode: $.get(blendMode),
23226
+ opacity: $.get(opacity),
23227
+ visible: $.get(visible) !== false ? true : false,
23228
+ id: $.get(id),
23229
+ mask: $.get(maskSource) ? {
23230
+ source: $.get(maskSource),
23231
+ type: $.get(maskType) || "alpha"
23232
+ } : void 0,
23233
+ maps: $.get(mapsFromProps),
23234
+ renderOrder: $.get(renderOrder) ?? detectedRenderOrder,
23235
+ transform: $.get(effectiveTransform)
23236
+ }, uniforms, componentDefinition$116, isCapturesDOM ? captureCanvas : void 0);
23237
+ $.set(isRegistered, true);
23238
+ if ($.get(renderOrder) === void 0 && orderMarker) {
23239
+ const parent = orderMarker.parentElement;
23240
+ if (parent) {
23241
+ const siblings = parent.querySelectorAll(":scope > [data-shader-id]");
23242
+ const position = Array.from(siblings).indexOf(orderMarker);
23243
+ if (position >= 0) {
23244
+ detectedRenderOrder = position;
23245
+ parentMetadataUpdate(instanceId, { renderOrder: position });
23246
+ }
23247
+ }
23248
+ }
23249
+ } else console.error("componentDefinition.fragmentNode is not a function:", {
23250
+ componentDefinition: componentDefinition$116,
23251
+ fragmentNode: componentDefinition$116?.fragmentNode,
23252
+ type: typeof componentDefinition$116?.fragmentNode
23253
+ });
23254
+ });
23255
+ onDestroy(() => {
23256
+ $.set(isRegistered, false);
23257
+ parentRegister(instanceId, null, null, null, null);
23258
+ });
23060
23259
  var fragment = root$1();
23061
23260
  var span = $.first_child(fragment);
23062
23261
  var node_1 = $.child(span);
@@ -23132,7 +23331,7 @@ function Shader($$anchor, $$props) {
23132
23331
  const checkRendering = () => {
23133
23332
  if (!rendererInstance) return;
23134
23333
  if (rendererInstance.getPerformanceStats().fps > 0) {
23135
- telemetryCollector = startTelemetry(rendererInstance, "2.5.122", disableTelemetry(), isPreview());
23334
+ telemetryCollector = startTelemetry(rendererInstance, "2.5.123", disableTelemetry(), isPreview());
23136
23335
  if (telemetryCollector) telemetryCollector.start();
23137
23336
  telemetryStartTimeout = null;
23138
23337
  } else telemetryStartTimeout = window.setTimeout(checkRendering, 500);
@@ -23392,6 +23591,7 @@ function Preview($$anchor, $$props) {
23392
23591
  ProgressiveBlur,
23393
23592
  RadialGradient,
23394
23593
  RectangularCoordinates,
23594
+ ReflectivePlane,
23395
23595
  Ring,
23396
23596
  Ripples,
23397
23597
  RoundedRect,
@@ -23691,4 +23891,4 @@ function Preview($$anchor, $$props) {
23691
23891
  $.append($$anchor, fragment);
23692
23892
  $.pop();
23693
23893
  }
23694
- export { AngularBlur, Ascii, Aurora, BarShift, Beam, Blob, Blur, BrickPattern, BrightnessContrast, Bulge, CRTScreen, ChannelBlur, Checkerboard, Chevron, ChromaFlow, ChromaticAberration, Circle, ColorWheel, ConcentricSpin, ConicGradient, ContourLines, Crescent, Cross, Crystal, CursorRipples, CursorTrail, DOMTexture, DiamondGradient, DiffuseBlur, Dither, DotGrid, DropShadow, Duotone, Ellipse, Emboss, FallingLines, FilmGrain, FloatingParticles, FlowField, Flower, FlowingGradient, FlutedGlass, Fog, Form3D, FractalNoise, Glass, GlassTiles, Glitch, Glow, Godrays, Grayscale, Grid, GridDistortion, Group, Halftone, HexGrid, HueShift, ImageTexture, Invert, Kaleidoscope, LensFlare, LinearBlur, LinearGradient, Liquify, Marble, Mirror, MultiPointGradient, Neon, Paper, Perspective, Pixelate, Plasma, PolarCoordinates, Polygon, Posterize, Preview, ProgressiveBlur, RadialGradient, RectangularCoordinates, Ring, Ripples, RoundedRect, Saturation, Shader, Sharpness, Shatter, SimplexNoise, SineWave, Smoke, SmokeFill, Solarize, SolidColor, Spherize, Spiral, Star, Strands, Stretch, Stripes, StudioBackground, SunBurst, Swirl, TiltShift, Tint, Trapezoid, Tritone, Truchet, Twirl, VHS, Vesica, Vibrance, VideoTexture, Vignette, Voronoi, WaveDistortion, Weave, WebcamTexture, WorleyNoise, ZoomBlur };
23894
+ export { AngularBlur, Ascii, Aurora, BarShift, Beam, Blob, Blur, BrickPattern, BrightnessContrast, Bulge, CRTScreen, ChannelBlur, Checkerboard, Chevron, ChromaFlow, ChromaticAberration, Circle, ColorWheel, ConcentricSpin, ConicGradient, ContourLines, Crescent, Cross, Crystal, CursorRipples, CursorTrail, DOMTexture, DiamondGradient, DiffuseBlur, Dither, DotGrid, DropShadow, Duotone, Ellipse, Emboss, FallingLines, FilmGrain, FloatingParticles, FlowField, Flower, FlowingGradient, FlutedGlass, Fog, Form3D, FractalNoise, Glass, GlassTiles, Glitch, Glow, Godrays, Grayscale, Grid, GridDistortion, Group, Halftone, HexGrid, HueShift, ImageTexture, Invert, Kaleidoscope, LensFlare, LinearBlur, LinearGradient, Liquify, Marble, Mirror, MultiPointGradient, Neon, Paper, Perspective, Pixelate, Plasma, PolarCoordinates, Polygon, Posterize, Preview, ProgressiveBlur, RadialGradient, RectangularCoordinates, ReflectivePlane, Ring, Ripples, RoundedRect, Saturation, Shader, Sharpness, Shatter, SimplexNoise, SineWave, Smoke, SmokeFill, Solarize, SolidColor, Spherize, Spiral, Star, Strands, Stretch, Stripes, StudioBackground, SunBurst, Swirl, TiltShift, Tint, Trapezoid, Tritone, Truchet, Twirl, VHS, Vesica, Vibrance, VideoTexture, Vignette, Voronoi, WaveDistortion, Weave, WebcamTexture, WorleyNoise, ZoomBlur };