asciify-engine 1.0.96 → 1.0.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -7
- package/dist/index.d.ts +24 -7
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/asciify-engine/SKILL.md +6 -6
package/dist/index.d.cts
CHANGED
|
@@ -6,15 +6,28 @@ type HoverEffect = 'spotlight' | 'magnify' | 'repel' | 'glow' | 'colorShift' | '
|
|
|
6
6
|
type HoverShape = 'circle' | 'box';
|
|
7
7
|
type HoverPreset = 'none' | 'subtle' | 'flashlight' | 'magnifier' | 'forceField' | 'neon' | 'fire' | 'ice' | 'gravity' | 'shatter' | 'ghost' | 'glitchReveal';
|
|
8
8
|
type SourceCropUnit = 'percent' | 'pixel';
|
|
9
|
+
type SourceCropAnchor = 'center' | 'top' | 'bottom' | 'left' | 'right' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
9
10
|
interface SourceCrop {
|
|
10
|
-
/**
|
|
11
|
+
/** Legacy crop origin on the source media. Percent values use 0–1. Default: centered when cropped */
|
|
11
12
|
x?: number;
|
|
12
|
-
/**
|
|
13
|
+
/** Legacy crop origin on the source media. Percent values use 0–1. Default: centered when cropped */
|
|
13
14
|
y?: number;
|
|
14
|
-
/**
|
|
15
|
+
/** Legacy crop width on the source media. Percent values use 0–1. Default: mirrors `height` to preserve proportions */
|
|
15
16
|
width?: number;
|
|
16
|
-
/**
|
|
17
|
+
/** Legacy crop height on the source media. Percent values use 0–1. Default: mirrors `width` to preserve proportions */
|
|
17
18
|
height?: number;
|
|
19
|
+
/** CSS-like crop inset from the top edge. Percent values use 0–1. */
|
|
20
|
+
top?: number;
|
|
21
|
+
/** CSS-like crop inset from the right edge. Percent values use 0–1. */
|
|
22
|
+
right?: number;
|
|
23
|
+
/** CSS-like crop inset from the bottom edge. Percent values use 0–1. */
|
|
24
|
+
bottom?: number;
|
|
25
|
+
/** CSS-like crop inset from the left edge. Percent values use 0–1. */
|
|
26
|
+
left?: number;
|
|
27
|
+
/** Keep the source aspect ratio when deriving a crop from insets or a single dimension. Default: `true` */
|
|
28
|
+
preserveAspect?: boolean;
|
|
29
|
+
/** Bias auto-centered crops toward an edge or corner. Default: `'center'` */
|
|
30
|
+
anchor?: SourceCropAnchor;
|
|
18
31
|
/** Interpret values as normalized percentages or source pixels. Default: `'percent'` */
|
|
19
32
|
unit?: SourceCropUnit;
|
|
20
33
|
}
|
|
@@ -221,12 +234,16 @@ interface AsciiOptions {
|
|
|
221
234
|
* tighter without changing the destination canvas size.
|
|
222
235
|
*
|
|
223
236
|
* @example
|
|
224
|
-
* //
|
|
237
|
+
* // Remove 15% from the top and 15% from the bottom, preserving proportions:
|
|
238
|
+
* options: { sourceCrop: { top: 0.15, bottom: 0.15 } }
|
|
239
|
+
*
|
|
240
|
+
* @example
|
|
241
|
+
* // Keep 70% of the source, preserve proportions, and center it:
|
|
225
242
|
* options: { sourceCrop: { height: 0.7 } }
|
|
226
243
|
*
|
|
227
244
|
* @example
|
|
228
|
-
* // Use an
|
|
229
|
-
* options: { sourceCrop: { x: 0.05, y: 0.08, width: 0.9, height: 0.9 } }
|
|
245
|
+
* // Use an exact source window when manual framing should override proportions:
|
|
246
|
+
* options: { sourceCrop: { x: 0.05, y: 0.08, width: 0.9, height: 0.9, preserveAspect: false } }
|
|
230
247
|
*/
|
|
231
248
|
sourceCrop?: SourceCrop | null;
|
|
232
249
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -6,15 +6,28 @@ type HoverEffect = 'spotlight' | 'magnify' | 'repel' | 'glow' | 'colorShift' | '
|
|
|
6
6
|
type HoverShape = 'circle' | 'box';
|
|
7
7
|
type HoverPreset = 'none' | 'subtle' | 'flashlight' | 'magnifier' | 'forceField' | 'neon' | 'fire' | 'ice' | 'gravity' | 'shatter' | 'ghost' | 'glitchReveal';
|
|
8
8
|
type SourceCropUnit = 'percent' | 'pixel';
|
|
9
|
+
type SourceCropAnchor = 'center' | 'top' | 'bottom' | 'left' | 'right' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
9
10
|
interface SourceCrop {
|
|
10
|
-
/**
|
|
11
|
+
/** Legacy crop origin on the source media. Percent values use 0–1. Default: centered when cropped */
|
|
11
12
|
x?: number;
|
|
12
|
-
/**
|
|
13
|
+
/** Legacy crop origin on the source media. Percent values use 0–1. Default: centered when cropped */
|
|
13
14
|
y?: number;
|
|
14
|
-
/**
|
|
15
|
+
/** Legacy crop width on the source media. Percent values use 0–1. Default: mirrors `height` to preserve proportions */
|
|
15
16
|
width?: number;
|
|
16
|
-
/**
|
|
17
|
+
/** Legacy crop height on the source media. Percent values use 0–1. Default: mirrors `width` to preserve proportions */
|
|
17
18
|
height?: number;
|
|
19
|
+
/** CSS-like crop inset from the top edge. Percent values use 0–1. */
|
|
20
|
+
top?: number;
|
|
21
|
+
/** CSS-like crop inset from the right edge. Percent values use 0–1. */
|
|
22
|
+
right?: number;
|
|
23
|
+
/** CSS-like crop inset from the bottom edge. Percent values use 0–1. */
|
|
24
|
+
bottom?: number;
|
|
25
|
+
/** CSS-like crop inset from the left edge. Percent values use 0–1. */
|
|
26
|
+
left?: number;
|
|
27
|
+
/** Keep the source aspect ratio when deriving a crop from insets or a single dimension. Default: `true` */
|
|
28
|
+
preserveAspect?: boolean;
|
|
29
|
+
/** Bias auto-centered crops toward an edge or corner. Default: `'center'` */
|
|
30
|
+
anchor?: SourceCropAnchor;
|
|
18
31
|
/** Interpret values as normalized percentages or source pixels. Default: `'percent'` */
|
|
19
32
|
unit?: SourceCropUnit;
|
|
20
33
|
}
|
|
@@ -221,12 +234,16 @@ interface AsciiOptions {
|
|
|
221
234
|
* tighter without changing the destination canvas size.
|
|
222
235
|
*
|
|
223
236
|
* @example
|
|
224
|
-
* //
|
|
237
|
+
* // Remove 15% from the top and 15% from the bottom, preserving proportions:
|
|
238
|
+
* options: { sourceCrop: { top: 0.15, bottom: 0.15 } }
|
|
239
|
+
*
|
|
240
|
+
* @example
|
|
241
|
+
* // Keep 70% of the source, preserve proportions, and center it:
|
|
225
242
|
* options: { sourceCrop: { height: 0.7 } }
|
|
226
243
|
*
|
|
227
244
|
* @example
|
|
228
|
-
* // Use an
|
|
229
|
-
* options: { sourceCrop: { x: 0.05, y: 0.08, width: 0.9, height: 0.9 } }
|
|
245
|
+
* // Use an exact source window when manual framing should override proportions:
|
|
246
|
+
* options: { sourceCrop: { x: 0.05, y: 0.08, width: 0.9, height: 0.9, preserveAspect: false } }
|
|
230
247
|
*/
|
|
231
248
|
sourceCrop?: SourceCrop | null;
|
|
232
249
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{parseGIF as t,decompressFrames as e}from"gifuct-js";var o={dracula:{name:"Dracula",accent:"#bd93f9",bg:"#282a36",fg:"#f8f8f2"},monokai:{name:"Monokai",accent:"#a6e22e",bg:"#272822",fg:"#f8f8f2"},nord:{name:"Nord",accent:"#88c0d0",bg:"#2e3440",fg:"#eceff4"},catppuccin:{name:"Catppuccin",accent:"#cba6f7",bg:"#1e1e2e",fg:"#cdd6f4"},solarized:{name:"Solarized",accent:"#268bd2",bg:"#002b36",fg:"#839496"},gruvbox:{name:"Gruvbox",accent:"#b8bb26",bg:"#282828",fg:"#ebdbb2"}},n={standard:" .:-=+*#%@",blocks:" ░▒▓█",minimal:" .:+",dense:" .'`^\",:;Il!i><~+_-?][}{1)(|/tfjrxnuvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$",binary:"01",dots:" ⠁⠃⠇⡇⣇⣧⣷⣿",letters:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",claudeCode:" ╔╗╚╝║═╠╣╦╩╬░▒▓█│─┌┐└┘├┤┬┴┼",box:" ▪◾◼■█",lines:" ˗‐–—―━",braille:" ⠁⠂⠃⠄⠅⠆⠇⠈⠉⠊⠋⠌⠍⠎⠏⠐⠑⠒⠓⠔⠕⠖⠗⠘⠙⠚⠛⠜⠝⠞⠟⠠⠡⠢⠣⠤⠥⠦⠧⠨⠩⠪⠫⠬⠭⠮⠯⠰⠱⠲⠳⠴⠵⠶⠷⠸⠹⠺⠻⠼⠽⠾⠿⡀⡁⡂⡃⡄⡅⡆⡇⣀⣁⣂⣃⣄⣅⣆⣇⣈⣉⣊⣋⣌⣍⣎⣏⣐⣑⣒⣓⣔⣕⣖⣗⣘⣙⣚⣛⣜⣝⣞⣟⣠⣡⣢⣣⣤⣥⣦⣧⣨⣩⣪⣫⣬⣭⣮⣯⣰⣱⣲⣳⣴⣵⣶⣷⣸⣹⣺⣻⣼⣽⣾⣿",katakana:" ヲァィゥェォャュョッアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン",musical:" ♩♪♫♬♭♮♯",emoji:" ⬛🟫🟥🟧🟨🟩🟦🟪⬜",circles:" .·:∘○◦°•∙",shadows:" ·∘◦○◎⊙●◉",starfield:" ˙·∘∗✦✧★◆●",geometric:" ·△▷◇◈◆▣■█",pipes:" ╶─┐└├┤┬┴┼╬▒▓█",waves:" ˜∼≈〰≋∿∾∭∫",shards:" ╱╲╳◤◥◣◢△▲◆◼█",smoke:" ·˙⁚⁖∶∷⋮⋰⋱∴∵",ascii:" .'`^\",:;~-_+<>i!lI?/\\|()[]{}1tfjrxnuvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$",interface:" ·•-–—+=:;<>[]{}()⌘⌥⇧⌃↵↗↘◇◆◈□■",prompt:" .:;>_`/\\|{}[]()=+*#@$",data:" ·∙•◦○●◇◆◈▱▰▣█",humanist:" ·˙,:;∴∵∷∶⁚⋮⋯∼≈≋∞",mesh:" ·╶╴╷╵─│┌┐└┘├┤┬┴┼╬░▒▓█"},r={cosmic:[n.starfield,n.circles,n.shadows],rain:[n.katakana,n.braille,n.binary],terminal:[n.pipes,n.claudeCode,n.standard],crystal:[n.shards,n.geometric,n.blocks],fluid:[n.waves,n.smoke,n.circles],pulse:[n.dense,n.standard,n.blocks],dream:[n.braille,n.shadows,n.smoke],angular:[n.geometric,n.shards,n.starfield],assistant:[n.interface,n.prompt,n.data],signal:[n.mesh,n.data,n.ascii],editorial:[n.humanist,n.waves,n.smoke]},a={classic:{renderMode:"ascii",charset:n.standard,colorMode:"grayscale"},particles:{renderMode:"dots",colorMode:"fullcolor",dotSizeRatio:.8},letters:{renderMode:"ascii",charset:n.letters,colorMode:"fullcolor"},claudeCode:{renderMode:"ascii",charset:n.claudeCode,colorMode:"accent",accentColor:"#f97316"},art:{renderMode:"ascii",charset:n.dense,colorMode:"fullcolor"},terminal:{renderMode:"ascii",charset:n.standard,colorMode:"matrix"},box:{renderMode:"ascii",charset:n.box,colorMode:"grayscale"},lines:{renderMode:"ascii",charset:n.lines,colorMode:"fullcolor"},braille:{renderMode:"ascii",charset:n.braille,colorMode:"fullcolor"},katakana:{renderMode:"ascii",charset:n.katakana,colorMode:"matrix"},musical:{renderMode:"ascii",charset:n.musical,colorMode:"accent",accentColor:"#e040fb"},emoji:{renderMode:"ascii",charset:n.emoji,colorMode:"fullcolor"},circles:{renderMode:"ascii",charset:n.circles,colorMode:"accent",accentColor:"#d4ff00"},shadows:{renderMode:"ascii",charset:n.shadows,colorMode:"accent",accentColor:"#50a0ff"},starfield:{renderMode:"ascii",charset:n.starfield,colorMode:"fullcolor"},geometric:{renderMode:"ascii",charset:n.geometric,colorMode:"grayscale"},pipes:{renderMode:"ascii",charset:n.pipes,colorMode:"accent",accentColor:"#00ff88"},waves:{renderMode:"ascii",charset:n.waves,colorMode:"fullcolor"},shards:{renderMode:"ascii",charset:n.shards,colorMode:"grayscale"},smoke:{renderMode:"ascii",charset:n.smoke,colorMode:"accent",accentColor:"#c850ff"},ascii:{renderMode:"ascii",charset:n.ascii,colorMode:"grayscale"},interface:{renderMode:"ascii",charset:n.interface,colorMode:"accent",accentColor:"#f4f1ea"},prompt:{renderMode:"ascii",charset:n.prompt,colorMode:"matrix"},data:{renderMode:"ascii",charset:n.data,colorMode:"fullcolor"},humanist:{renderMode:"ascii",charset:n.humanist,colorMode:"accent",accentColor:"#d6ccc2"},mesh:{renderMode:"ascii",charset:n.mesh,colorMode:"accent",accentColor:"#8fd3ff"}},i={agentField:{...a.interface,charsetFrames:r.assistant,charsetFps:1.6,animationStyle:"breathe",animationSpeed:.75,ditherStrength:.12,hoverEffect:"glow",hoverStrength:.42,hoverRadius:.18,hoverColor:"#f4f1ea",normalize:!0},liquidSignal:{...a.data,charsetFrames:r.signal,charsetFps:2.4,animationStyle:"melt",animationSpeed:.65,ditherStrength:.45,hoverEffect:"repel",hoverStrength:.55,hoverRadius:.22,hoverColor:"#8fd3ff",normalize:!0},cursorGravity:{...a.mesh,charsetFrames:r.angular,charsetFps:1.2,animationStyle:"orbit",animationSpeed:.9,ditherStrength:.2,hoverEffect:"attract",hoverStrength:.82,hoverRadius:.24,hoverColor:"#ffffff",normalize:!0},editorialPulse:{...a.humanist,charsetFrames:r.editorial,charsetFps:.9,animationStyle:"ripple",animationSpeed:.55,ditherStrength:.18,hoverEffect:"spotlight",hoverStrength:.35,hoverRadius:.2,hoverColor:"#fff8ea",normalize:!0},terminalFlow:{...a.prompt,charsetFrames:r.terminal,charsetFps:3,animationStyle:"rain",animationSpeed:1.1,ditherStrength:.22,hoverEffect:"glitchText",hoverStrength:.65,hoverRadius:.16,hoverColor:"#d4ff00",hoverText:["BUILD","SHIP","RUN","ASK","MODEL"],normalize:!0}},s={fontSize:10,charSpacing:1,brightness:0,contrast:0,charset:n.standard,colorMode:"grayscale",accentColor:"#d4ff00",invert:!1,renderMode:"ascii",animationStyle:"none",animationSpeed:1,dotSizeRatio:.8,ditherStrength:0,charAspect:.55,normalize:!1,hoverStrength:0,hoverRadius:.2,hoverEffect:"spotlight",hoverColor:"#ffffff",hoverShape:"circle",hoverText:"ASCIIFY",artStyle:"classic",customText:"",chromaKey:null,chromaKeyTolerance:60},c={none:{label:"Off",options:{hoverStrength:0,hoverEffect:"spotlight",hoverRadius:.2,hoverColor:"#ffffff"}},subtle:{label:"Subtle",options:{hoverStrength:.25,hoverEffect:"glow",hoverRadius:.12,hoverColor:"#ffffff"}},flashlight:{label:"Flashlight",options:{hoverStrength:.6,hoverEffect:"spotlight",hoverRadius:.15,hoverColor:"#fffbe6"}},magnifier:{label:"Magnifier",options:{hoverStrength:.7,hoverEffect:"magnify",hoverRadius:.12,hoverColor:"#ffffff"}},forceField:{label:"Force Field",options:{hoverStrength:.7,hoverEffect:"repel",hoverRadius:.15,hoverColor:"#a0e8ff"}},neon:{label:"Neon",options:{hoverStrength:.6,hoverEffect:"colorShift",hoverRadius:.15,hoverColor:"#d946ef"}},fire:{label:"Fire",options:{hoverStrength:.7,hoverEffect:"spotlight",hoverRadius:.15,hoverColor:"#ff6b2b"}},ice:{label:"Ice",options:{hoverStrength:.5,hoverEffect:"glow",hoverRadius:.15,hoverColor:"#60d5f7"}},gravity:{label:"Gravity",options:{hoverStrength:.7,hoverEffect:"attract",hoverRadius:.18,hoverColor:"#a5d6ff"}},shatter:{label:"Shatter",options:{hoverStrength:.8,hoverEffect:"shatter",hoverRadius:.14,hoverColor:"#ff6090"}},ghost:{label:"Ghost",options:{hoverStrength:.55,hoverEffect:"trail",hoverRadius:.2,hoverColor:"#b39ddb"}},glitchReveal:{label:"Glitch Reveal",options:{hoverStrength:.8,hoverEffect:"glitchText",hoverRadius:.18,hoverColor:"#a3e635"}}};function l(t,e){const o=document.createElement("canvas");o.width=t,o.height=e;const n=o.getContext("2d",{willReadFrequently:!0});return{canvas:o,ctx:n}}function h(t,e,o){let n=t+255*e;return n=259*(255*o+255)/(255*(259-255*o))*(n-128)+128,Math.max(0,Math.min(255,n))}function f(t,e,o){const n=o?1-t/255:t/255,r=[...e],a=Math.floor(n*(r.length-1));return r[Math.max(0,Math.min(r.length-1,a))]}function d(t,e,o,n,r,a){if((a?1-t/255:t/255)<.12)return" ";const i=[...e];return i[(n*r+o)%i.length]}var m=[[0,8,2,10],[12,4,14,6],[3,11,1,9],[15,7,13,5]];function u(t,e,o,n){if(n<=0)return t;const r=(m[o%4][e%4]/16-.5)*n*128;return Math.max(0,Math.min(255,t+r))}var g=new Array(256),M=new Array(256);for(let t=0;t<256;t++)g[t]=`rgb(${t},${t},${t})`,M[t]=`rgb(0,${t},0)`;function p(t,e,o,n,r,a=!1){switch(e){case"fullcolor":return`rgb(${t.r},${t.g},${t.b})`;case"matrix":return M[.299*t.r+.587*t.g+.114*t.b|0];case"accent":return`rgb(${o},${n},${r})`;default:{const e=.299*t.r+.587*t.g+.114*t.b|0;return g[e]}}}var v=[0,0,0];function w(t,e,o,n,r,a=!1){switch(e){case"fullcolor":v[0]=t.r,v[1]=t.g,v[2]=t.b;break;case"matrix":{const e=.299*t.r+.587*t.g+.114*t.b|0;v[0]=0,v[1]=e,v[2]=0;break}case"accent":v[0]=o,v[1]=n,v[2]=r;break;default:{const e=.299*t.r+.587*t.g+.114*t.b|0;v[0]=e,v[1]=e,v[2]=e;break}}return v}function b(t){const e=t.match(/rgba?\(\s*(\d+)\s*[,\s]\s*(\d+)\s*[,\s]\s*(\d+)(?:\s*[,/]\s*([\d.]+))?\s*\)/);return e?{r:+e[1],g:+e[2],b:+e[3],a:void 0!==e[4]?+e[4]:1}:null}function x(t){let e=t;for(;e&&e!==document.documentElement.parentElement;){const t=getComputedStyle(e).backgroundColor;if(t&&"transparent"!==t&&"rgba(0, 0, 0, 0)"!==t){const e=b(t);if(e&&e.a>.1)return e}e=e.parentElement}return null}function y(t){if(t){const e=x(t);if(e){return(.299*e.r+.587*e.g+.114*e.b)/255<.4}}if("undefined"!=typeof document){const t=document.documentElement,e=(t.getAttribute("data-theme")||"").toLowerCase();if("dark"===e)return!0;if("light"===e)return!1;if(t.classList.contains("dark"))return!0;if(document.body){const t=x(document.body);if(t){return(.299*t.r+.587*t.g+.114*t.b)/255<.4}}}return"undefined"!=typeof window&&window.matchMedia("(prefers-color-scheme: dark)").matches}function S(t){if("string"!=typeof t)return t;const e=document.createElement("canvas");e.width=1,e.height=1;const o=e.getContext("2d");o.fillStyle=t,o.fillRect(0,0,1,1);const n=o.getImageData(0,0,1,1).data;return{r:n[0],g:n[1],b:n[2]}}function $(t,e,o,n,r,a,i){if("none"===a)return 1;const s=r*i;switch(a){case"wave":return.3+.7*(.6*(.5*Math.sin(t/o*Math.PI*4+3*s)+.5)+.4*(.5*Math.sin(e/n*Math.PI*3+2*s)+.5));case"pulse":{const r=o/2,a=n/2,i=Math.sqrt((t-r)**2+(e-a)**2),c=Math.sqrt(r**2+a**2);return.2+.8*(.5*Math.sin(i/c*Math.PI*6-4*s)+.5)}case"rain":return.1+.9*(.5*Math.sin(e/n*Math.PI*8-5*s+.3*t)+.5)*(.3*Math.sin(t/o*Math.PI*2+s)+.7);case"breathe":{const o=.3*Math.sin(2*s)+.7,n=.1*Math.sin(.1*(t+e)+s);return Math.max(.1,Math.min(1,o+n))}case"sparkle":{const o=43758.5453*Math.sin(127.1*t+311.7*e+43758.5453*Math.floor(8*s)),n=o-Math.floor(o);return n>.7?1:.15+.4*n}case"glitch":{const t=Math.floor(e/(.05*n)),o=43758.5453*Math.sin(43.23*t+17.89*Math.floor(6*s));if(o-Math.floor(o)>.85){const e=.5*Math.sin(30*s+t)+.5;return e<.3?0:e}return 1}case"spiral":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.atan2(c,i),h=Math.sqrt(i*i+c*c),f=Math.sqrt(r*r+a*a);return.15+.85*(.5*Math.sin(3*l+h/f*Math.PI*8-3*s)+.5)}case"typewriter":{const r=o*n,a=e*o+t-.5*s%1*r*1.3;if(a>0)return 0;const i=Math.max(0,1+a/(.15*r));return Math.min(1,i)}case"scatter":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.sqrt(i*i+c*c)/Math.sqrt(r*r+a*a),h=.5*Math.sin(1.5*s)+.5;return l>h?Math.max(0,1-3*(l-h)):.7+.3*Math.sin(10*l-2*s)}case"waveField":default:return 1;case"ripple":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.sqrt(i*i+c*c),h=Math.sqrt(r*r+a*a);return.1+.9*(.5*Math.sin(l/h*Math.PI*10-5*s)+.5)*(.4+.6*(1-Math.min(1,l/(1.1*h))))}case"melt":{const o=e/n*Math.PI;return.05+(.5*Math.sin(o-1.8*s+.15*t)+.5)*(1-.6*(Math.max(0,e/n-.1)/.9))*.95}case"orbit":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.atan2(c,i),h=Math.sqrt(i*i+c*c)/Math.sqrt(r*r+a*a);return.1+.9*(.5*Math.sin(2*l+6*h-2.5*s)+.5)}case"cellular":{const o=Math.floor(4*s),n=(t,e)=>{const n=43758.5453*Math.sin(127.1*t+311.7*e+43758.5453*o);return n-Math.floor(n)>.38?1:0},r=n(t,e),a=n(t-1,e)+n(t+1,e)+n(t,e-1)+n(t,e+1)+n(t-1,e-1)+n(t+1,e-1)+n(t-1,e+1)+n(t+1,e+1);return 1===(1===r?2===a||3===a?1:0:3===a?1:0)?1:.05}}}var C={scale:1,offsetX:0,offsetY:0,glow:0,colorBlend:0,proximity:0};function E(t,e,o,n,r,a,i,s,c="spotlight",l=.5,h="circle"){const f=t-o,d=e-n,m=.08+.35*l+.04*a;let u,g;if("box"===h){const t=Math.abs(f),e=Math.abs(d);u=Math.max(t,e),g=m}else u=Math.sqrt(f*f+d*d),g=m;if(u>=g)return C.scale=1,C.offsetX=0,C.offsetY=0,C.glow=0,C.colorBlend=0,C.proximity=0,C;const M=function(t){return t*t*(3-2*t)}(1-u/g)*r;let p=1,v=0,w=0,b=0,x=0;switch(c){case"spotlight":{p=1+M*a*1.8;const t=Math.atan2(d,f),e=M*M*a*.6;v=Math.cos(t)*e*i,w=Math.sin(t)*e*s,b=M*a*.4,x=M*M*a*.25;break}case"magnify":p=1+M*a*2.5,b=M*a*.15;break;case"repel":{p=1+M*a*.3;const t=Math.atan2(d,f),e=M*M*a*1.2;v=Math.cos(t)*e*i,w=Math.sin(t)*e*s;break}case"glow":b=M*a*.8,x=M*a*.4;break;case"colorShift":p=1+M*a*.4,b=M*a*.2,x=M*a*.7;break;case"attract":{const t=Math.atan2(d,f),e=M*M*a*1;v=-Math.cos(t)*e*i,w=-Math.sin(t)*e*s,b=M*a*.3;break}case"shatter":{const t=Math.atan2(d,f),e=.5*Math.sin(43.7*f+29.3*d),o=M*a*1.4*(.7+.3*e);v=Math.cos(t+e)*o*i,w=Math.sin(t+e)*o*s,p=Math.max(.1,1-M*a*.6),b=M*a*.25;break}case"trail":x=M*a*.9,b=M*a*.6,p=1+M*a*.15;break;case"glitchText":p=1,b=M*a*.5,x=M*a*.6}return C.scale=p,C.offsetX=v,C.offsetY=w,C.glow=b,C.colorBlend=x,C.proximity=M,C}function A(t){const e=t.match(/^#([0-9a-f]{3,8})$/i)?.[1];if(e){const t=e.length<=4?e.split("").map(t=>parseInt(t+t,16)):[parseInt(e.slice(0,2),16),parseInt(e.slice(2,4),16),parseInt(e.slice(4,6),16)];return{r:t[0],g:t[1],b:t[2]}}const o=t.match(/rgba?\(\s*(\d+)[,\s]+(\d+)[,\s]+(\d+)/i);return o?{r:+o[1],g:+o[2],b:+o[3]}:null}function T(t){return t*t*t*(t*(6*t-15)+10)}function I(t,e,o){return t+(e-t)*o}function R(t,e){let o=127*t+311*e;return o^=o>>13,(o*(o*o*15731+789221)+1376312589&2147483647)/2147483647}function F(t,e){const o=Math.floor(t),n=Math.floor(e),r=e-n,a=T(t-o),i=T(r),s=R(o,n),c=R(o+1,n),l=R(o,n+1),h=R(o+1,n+1);return I(I(s,c,a),I(l,h,a),i)}function k(t,e){return(.5*F(t,e)+.25*F(2.1*t,2.1*e)+.125*F(4.3*t,4.3*e))/.875}function L(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=13,charAspect:s=.62,lineHeightRatio:c=1.4,chars:l=" .:-=+*#%@",baseColor:h=null,accentColor:f,accentThreshold:d=.52,mouseInfluence:m=.55,mouseFalloff:u=2.8,speed:g=1,vortex:M=!0,sparkles:p=!0,breathe:v=!0,lightMode:w=!1}=a,b=f??(w?"#6b8700":"#d4ff00"),x=i*s,y=i*c,S=Math.ceil(e/x),$=Math.ceil(o/y),C=r.x,E=r.y;let A=212,T=255,I=0;{const t=b.replace("#","");6===t.length&&(A=parseInt(t.slice(0,2),16),T=parseInt(t.slice(2,4),16),I=parseInt(t.slice(4,6),16))}t.clearRect(0,0,e,o),t.font=`${i}px "JetBrains Mono", monospace`,t.textBaseline="top";const F=n*g,L=v?.12*(.5*Math.sin(.22*F)+.5):0;for(let e=0;e<$;e++)for(let o=0;o<S;o++){const n=o/S,r=e/$,a=.045,i=.08*F,s=.06,c=.45*((.5*Math.sin(.08*o+.05*e+.6*F)+.5+(.5*Math.sin(.03*o-.07*e+.4*F)+.5)+(.5*Math.sin(.05*o+.03*e+.8*F)+.5))/3)+.35*(.5*k(o*a+i,e*a*1.4-.7*i)+.5)+.2*(.5*Math.sin((o+.65*e)*s+1.1*F)+.5)+L,f=n-C,g=r-E,v=Math.sqrt(f*f+g*g);let b=0;if(M&&v<.35){const t=Math.atan2(g,f),e=Math.sin(4*t+2.2*F-14*v),o=Math.max(0,1-v/.35);b=e*o*o*.22}const z=c*(1-m)+(Math.max(0,1-v*u)+.5*b)*m+.15*b,q=Math.min(1,Math.max(0,z));let P=q;if(p&&q>.72){const t=Math.floor(8*F),n=R(7*o+3*t,11*e+t);n>.88&&(P=Math.min(1,q+4*(n-.88)))}const B=Math.floor(P*(l.length-1));if(" "===l[B])continue;const H=.015+.07*P;if(P>d){const e=Math.min(w?.9:.28,H*(w?14:2.8));t.fillStyle=`rgba(${A},${T},${I},${e})`}else t.fillStyle=h?h.replace("{a}",String(H)):w?`rgba(55,55,55,${7*H})`:`rgba(255,255,255,${H})`;t.fillText(l[B],o*x,e*y)}}var z=new WeakMap,q=new WeakMap,P=null,B=null;function H(t,e){if(!P||!B){const o=l(t,e);P=o.canvas,B=o.ctx}return P.width!==t&&(P.width=t),P.height!==e&&(P.height=e),B}var W=new Map,j=new Map,D=new Map,U=new WeakMap,O=new WeakMap,V=new WeakMap;function Y(t){let e=W.get(t);return e||(e=[...t],W.set(t,e)),e}function X(t,e,o){const n=o?1-t/255:t/255,r=Math.floor(n*(e.length-1));return e[Math.max(0,Math.min(e.length-1,r))]??" "}function _(t,e,o,n){const r=`${t}\0${e?1:0}\0${o}\0${n}`;let a=j.get(r);if(!a){const i=Y(t);a=new Array(256);for(let t=0;t<256;t++)a[t]=X(h(t,o,n),i,e);j.set(r,a)}return a}function J(t){let e=D.get(t);if(!e){const o=Y(t),n=Math.max(1,o.length);e=new Map;for(let t=0;t<o.length;t++)e.has(o[t])||e.set(o[t],Math.max(.08,(t+.5)/n));D.set(t,e)}return e}function N(){W.clear(),j.clear(),D.clear(),P=null,B=null}function K(t,e){return"auto"!==t?t:!y(e)}function G(t){const e=t.match(/^#([0-9a-fA-F]{3,6})$/);if(e){let t=e[1];if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return t}const o=t.match(/rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/);return o?[o[1],o[2],o[3]].map(t=>parseInt(t).toString(16).padStart(2,"0")).join(""):null}function Q(t){const e=t||"auto";if("auto"!==e)return e.replace("#","");if("undefined"!=typeof document){const t=getComputedStyle(document.documentElement);for(const e of["--accent-color","--color-accent","--accent","--color-primary","--primary","--brand-color"]){const o=G(t.getPropertyValue(e).trim());if(o)return o}const e=G(getComputedStyle(document.body).accentColor??"");if(e)return e}return y("undefined"!=typeof document?document.body:null)?"faf9f7":"0d0d0d"}function Z(t,e,o){return Math.max(e,Math.min(o,t))}function tt(t,e,o){if(!t)return{x:0,y:0,width:e,height:o};const n=t.unit??"percent",r=t=>void 0===t?void 0:"percent"===n?t*e:t,a=t=>void 0===t?void 0:"percent"===n?t*o:t,i=r(t.width),s=a(t.height),c=void 0===s?void 0:s/o,l=void 0===i?void 0:i/e,h=s??(void 0===l?o:o*l),f=Z(i??(void 0===c?e:e*c),1,e),d=Z(h,1,o),m=(e-f)/2,u=(o-d)/2,g=r(t.x),M=a(t.y);return{x:Z(g??m,0,Math.max(0,e-f)),y:Z(M??u,0,Math.max(0,o-d)),width:f,height:d}}function et(t,e,o,n){const r=t instanceof HTMLVideoElement?t.videoWidth:t.width,a=t instanceof HTMLVideoElement?t.videoHeight:t.height;if(0===r||0===a)return{frame:[],cols:0,rows:0};const i=e.charAspect,s=e.fontSize*e.charSpacing,c=e.fontSize/i*e.charSpacing,l=o||r,f=n||a,m=Math.floor(l/s),g=Math.floor(f/c);if(m<=0||g<=0)return{frame:[],cols:0,rows:0};const M=tt(e.sourceCrop,r,a),p=Math.max(1,Math.min(Math.floor(2048/m),Math.floor(M.width/m))),v=Math.max(1,Math.min(Math.floor(2048/g),Math.floor(M.height/g))),w=m*p,b=g*v,x=H(w,b);x.drawImage(t,M.x,M.y,M.width,M.height,0,0,w,b);const y=x.getImageData(0,0,w,b).data,$=e.chromaKey,C=null!=$&&!1!==$,E=!0===$,A="blue-screen"===$;let T=null,I=0;!C||E||A||(T=S($),I=(e.chromaKeyTolerance??60)**2);let R=0,F=255;if(e.normalize){let t=255,e=0;for(let o=0;o<y.length;o+=4){if(C){const t=y[o],e=y[o+1],n=y[o+2];let r=!1;if(E)r=e>1.4*t&&e>1.4*n&&e>80;else if(A)r=n>1.4*t&&n>1.4*e&&n>80;else if(null!==T){const o=t-T.r,a=e-T.g,i=n-T.b;r=o*o+a*a+i*i<=I}if(r)continue}const n=.299*y[o]+.587*y[o+1]+.114*y[o+2];n<t&&(t=n),n>e&&(e=n)}R=t,F=e>t?e-t:255}const k=[],L=K(e.invert),z=C&&e.charset.replace(/ /g,"")||e.charset,q=Y(z),P=e.customText?null:_(z,L,e.brightness,e.contrast),B=p*v;for(let t=0;t<g;t++){const o=[];for(let n=0;n<m;n++){let r=0,a=0,i=0,s=0,c=0;for(let e=0;e<v;e++){const o=(t*v+e)*w;for(let t=0;t<p;t++){const e=4*(o+n*p+t),l=y[e],h=y[e+1],f=y[e+2],d=y[e+3];if(C){let t=!1;if(E)t=h>1.4*l&&h>1.4*f&&h>80;else if(A)t=f>1.4*l&&f>1.4*h&&f>80;else if(null!==T){const e=l-T.r,o=h-T.g,n=f-T.b;t=e*e+o*o+n*n<=I}if(t){c++;continue}}r+=l,a+=h,i+=f,s+=d}}if(C&&c>B/2){o.push({char:" ",r:0,g:0,b:0,a:0});continue}const l=B-c,f=l>0?r/l:0,g=l>0?a/l:0,M=l>0?i/l:0,b=l>0?s/l:0,x=.299*f+.587*g+.114*M,S=e.normalize?(x-R)/F*255:x,$=h(S,e.brightness,e.contrast),k=e.ditherStrength>0?u($,n,t,e.ditherStrength):$,z=e.customText?d(k,e.customText,n,t,m,L):e.ditherStrength>0?X(k,q,L):P[Math.max(0,Math.min(255,0|S))];o.push({char:z,r:f,g:g,b:M,a:b,lum:k})}k.push(o)}return{frame:k,cols:m,rows:g}}function ot(t,e,o,n){const r=t instanceof HTMLVideoElement?t.videoWidth:t.width,a=t instanceof HTMLVideoElement?t.videoHeight:t.height;if(0===r||0===a)return{rows:[],cols:0,rowCount:0};const i=e.charAspect,s=e.fontSize*e.charSpacing,c=e.fontSize/i*e.charSpacing,l=o||r,f=n||a,d=Math.floor(l/s),m=Math.floor(f/c);if(d<=0||m<=0)return{rows:[],cols:0,rowCount:0};const g=d,M=m,p=H(g,M),v=tt(e.sourceCrop,r,a);p.drawImage(t,v.x,v.y,v.width,v.height,0,0,g,M);const w=p.getImageData(0,0,g,M).data,b=e.chromaKey,x=null!=b&&!1!==b,y=!0===b,$="blue-screen"===b;let C=null,E=0;!x||y||$||(C=S(b),E=(e.chromaKeyTolerance??60)**2);let A=0,T=255;if(e.normalize){let t=255,e=0;for(let o=0;o<w.length;o+=4){if(x){const t=w[o],e=w[o+1],n=w[o+2];let r=!1;if(y)r=e>1.4*t&&e>1.4*n&&e>80;else if($)r=n>1.4*t&&n>1.4*e&&n>80;else if(null!==C){const o=t-C.r,a=e-C.g,i=n-C.b;r=o*o+a*a+i*i<=E}if(r)continue}const n=.299*w[o]+.587*w[o+1]+.114*w[o+2];n<t&&(t=n),n>e&&(e=n)}A=t,T=e>t?e-t:255}const I=K(e.invert),R=x&&e.charset.replace(/ /g,"")||e.charset,F=Y(R),k=e.customText?null:_(R,I,e.brightness,e.contrast),L=e.customText?Y(e.customText):null,z="fullcolor"===e.colorMode?new Uint8ClampedArray(d*m*4):void 0,q=[];for(let t=0;t<m;t++){let o="";for(let n=0;n<d;n++){const r=4*(t*g+n),a=r,i=w[r],s=w[r+1],c=w[r+2],l=w[r+3];if(x){let t=!1;if(y)t=s>1.4*i&&s>1.4*c&&s>80;else if($)t=c>1.4*i&&c>1.4*s&&c>80;else if(null!==C){const e=i-C.r,o=s-C.g,n=c-C.b;t=e*e+o*o+n*n<=E}if(t){o+=" ",z&&(z[a]=0,z[a+1]=0,z[a+2]=0,z[a+3]=0);continue}}z&&(z[a]=i,z[a+1]=s,z[a+2]=c,z[a+3]=l);const f=.299*i+.587*s+.114*c,m=e.normalize?(f-A)/T*255:f,M=e.ditherStrength>0||L?h(m,e.brightness,e.contrast):m,p=e.ditherStrength>0?u(M,n,t,e.ditherStrength):M;if(L){o+=(I?1-p/255:p/255)<.12?" ":L[(t*d+n)%L.length]}else e.ditherStrength<=0?o+=k[Math.max(0,Math.min(255,0|m))]:o+=X(p,F,I)}q.push(o)}return{rows:q,cols:d,rowCount:m,colors:z}}function nt(t,e,o,n,r){if(0===e.rows.length)return;const a=t.canvas,i=Boolean(o.chromaKey)||e.rows.some(t=>t.includes(" "));i||(V.delete(t),t.clearRect(0,0,n,r),t.fillStyle=y(a)?"#0a0a0a":"#faf9f7",t.fillRect(0,0,n,r));const s=Q(o.accentColor),c=parseInt(s.substring(0,2),16)||255,h=parseInt(s.substring(2,4),16)||255,f=parseInt(s.substring(4,6),16)||255,d=n/e.cols,m=r/e.rowCount,u=.9*Math.min(d/.55,m),g=e.colors;if("fullcolor"===o.colorMode&&g){if(V.delete(t),t.clearRect(0,0,n,r),u<6){const{canvas:a,ctx:i}=function(t,e,o){let n=U.get(t);n||(n=l(e,o).canvas,U.set(t,n)),n.width!==e&&(n.width=e),n.height!==o&&(n.height=o);const r=n.getContext("2d",{willReadFrequently:!1});if(!r)throw new Error("renderTextFrameToCanvas: could not create raster context.");return{canvas:n,ctx:r}}(t,e.cols,e.rowCount);let s=O.get(i);s&&s.width===e.cols&&s.height===e.rowCount||(s={width:e.cols,height:e.rowCount,imageData:i.createImageData(e.cols,e.rowCount)},O.set(i,s));const c=s.imageData,h=c.data;h.fill(0);const f=J(o.charset);for(let t=0;t<e.rowCount;t++){const o=e.rows[t];for(let n=0;n<e.cols;n++){const r=o[n];if(" "===r)continue;const a=4*(t*e.cols+n),i=g[a+3];if(i<10)continue;const s=f.get(r)??.5;h[a]=g[a],h[a+1]=g[a+1],h[a+2]=g[a+2],h[a+3]=0|Math.min(255,i*s)}}return i.putImageData(c,0,0),t.imageSmoothingEnabled=!1,t.drawImage(a,0,0,n,r),t.imageSmoothingEnabled=!0,void(t.globalAlpha=1)}t.font=`${u}px "JetBrains Mono", monospace`,t.textAlign="left",t.textBaseline="middle",t.globalAlpha=1;let a="";for(let o=0;o<e.rows.length;o++){const n=e.rows[o];let r=0;for(;r<e.cols;){for(;r<e.cols&&" "===n[r];)r++;if(r>=e.cols)break;const i=r,s=4*(o*e.cols+r),c=240&g[s],l=240&g[s+1],h=240&g[s+2];for(r++;r<e.cols&&" "!==n[r];){const t=4*(o*e.cols+r);if((240&g[t])!==c||(240&g[t+1])!==l||(240&g[t+2])!==h)break;r++}const f=`rgb(${c},${l},${h})`;f!==a&&(t.fillStyle=f,a=f),t.fillText(n.slice(i,r),i*d+.5*d,o*m+.5*m)}}return void(t.globalAlpha=1)}t.font=`${u}px "JetBrains Mono", monospace`,t.textAlign="left",t.textBaseline="middle";const M="matrix"===o.colorMode?"rgb(0,255,0)":"grayscale"===o.colorMode?y(a)?"rgb(230,230,230)":"rgb(24,24,24)":`rgb(${c},${h},${f})`;t.fillStyle=M,t.globalAlpha=1;const p=V.get(t),v=i&&p&&p.cols===e.cols&&p.rowCount===e.rowCount&&p.canvasWidth===n&&p.canvasHeight===r&&p.fillStyle===M;v||t.clearRect(0,0,n,r);for(let o=0;o<e.rows.length;o++){const r=e.rows[o];v&&p.rows[o]===r||(v&&t.clearRect(0,o*m,n,m+1),0!==r.trim().length&&t.fillText(r,.5*d,o*m+.5*m))}V.set(t,{rows:e.rows.slice(),cols:e.cols,rowCount:e.rowCount,canvasWidth:n,canvasHeight:r,fillStyle:M}),t.globalAlpha=1}async function rt(t,e,o,n,r=12,a=10,i,s=0){const c=Math.min(t.duration-s,a),l=Math.ceil(c*r),h=[];let f=0,d=0;for(let a=0;a<l;a++){const m=s+a/r;if(m>s+c)break;t.currentTime=m,await new Promise(e=>{const o=()=>{t.removeEventListener("seeked",o),e()};t.addEventListener("seeked",o)});const u=et(t,e,o,n);h.push(u.frame),f=u.cols,d=u.rows,i?.((a+1)/l)}return{frames:h,cols:f,rows:d,fps:r}}async function at(t,e,o,n,r=12,a=10,i,s=0){const c=Math.min(t.duration-s,a),l=Math.ceil(c*r),h=[];let f=0,d=0;for(let a=0;a<l;a++){const m=s+a/r;if(m>s+c)break;t.currentTime=m,await new Promise(e=>{const o=()=>{t.removeEventListener("seeked",o),e()};t.addEventListener("seeked",o)});const u=ot(t,e,o,n);h.push(u),f=u.cols,d=u.rowCount,i?.((a+1)/l)}return{frames:h,cols:f,rows:d,fps:r}}async function it(o,n,r,a,i){const s=t(o),c=e(s,!0);if(0===c.length)return{frames:[],cols:0,rows:0,fps:10};const l=c[0].dims.width,h=c[0].dims.height,f=s.lsd?.width||l,d=s.lsd?.height||h,m=document.createElement("canvas");m.width=f,m.height=d;const u=m.getContext("2d"),g=document.createElement("canvas");g.width=f,g.height=d;const M=g.getContext("2d"),p=document.createElement("canvas"),v=p.getContext("2d"),w=[];let b=0,x=0,y=0;for(const t of c)y+=t.delay||100;const S=y/c.length,$=Math.round(Math.min(30,Math.max(5,1e3/S))),C=Math.min(c.length,300);for(let t=0;t<C;t++){const e=c[t],{dims:o,patch:s,disposalType:l}=e;3===l&&(M.clearRect(0,0,f,d),M.drawImage(m,0,0)),p.width!==o.width&&(p.width=o.width),p.height!==o.height&&(p.height=o.height);const h=new ImageData(new Uint8ClampedArray(s.buffer),o.width,o.height);v.putImageData(h,0,0),u.drawImage(p,o.left||0,o.top||0);const y=et(m,n,r,a);w.push(y.frame),b=y.cols,x=y.rows,2===l?u.clearRect(o.left||0,o.top||0,o.width,o.height):3===l&&(u.clearRect(0,0,f,d),u.drawImage(g,0,0)),i?.((t+1)/C)}return{frames:w,cols:b,rows:x,fps:$}}async function st(o,n,r,a,i){const s=t(o),c=e(s,!0);if(0===c.length)return{frames:[],cols:0,rows:0,fps:10};const l=c[0].dims.width,h=c[0].dims.height,f=s.lsd?.width||l,d=s.lsd?.height||h,m=document.createElement("canvas");m.width=f,m.height=d;const u=m.getContext("2d"),g=document.createElement("canvas");g.width=f,g.height=d;const M=g.getContext("2d"),p=document.createElement("canvas"),v=p.getContext("2d"),w=[];let b=0,x=0,y=0;for(const t of c)y+=t.delay||100;const S=y/c.length,$=Math.round(Math.min(30,Math.max(5,1e3/S))),C=Math.min(c.length,300);for(let t=0;t<C;t++){const e=c[t],{dims:o,patch:s,disposalType:l}=e;3===l&&(M.clearRect(0,0,f,d),M.drawImage(m,0,0)),p.width!==o.width&&(p.width=o.width),p.height!==o.height&&(p.height=o.height);const h=new ImageData(new Uint8ClampedArray(s.buffer),o.width,o.height);v.putImageData(h,0,0),u.drawImage(p,o.left||0,o.top||0);const y=ot(m,n,r,a);w.push(y),b=y.cols,x=y.rowCount,2===l?u.clearRect(o.left||0,o.top||0,o.width,o.height):3===l&&(u.clearRect(0,0,f,d),u.drawImage(g,0,0)),i?.((t+1)/C)}return{frames:w,cols:b,rows:x,fps:$}}function ct(t,e,o,n,r,a=0,i){if("waveField"===o.animationStyle){return void L(t,n,r,a,i?{x:i.x,y:i.y}:{x:.5,y:.5},{accentColor:`#${o.accentColor?Q(o.accentColor):"d4ff00"}`,accentThreshold:.52,mouseInfluence:o.hoverStrength>0?Math.min(1,.3+.5*o.hoverStrength):.55,mouseFalloff:2.8,speed:o.animationSpeed,vortex:o.hoverStrength>0,sparkles:!0,breathe:!0})}const s=e.length;if(0===s)return;const c=e[0].length;t.clearRect(0,0,n,r);let h=!1;const d=Math.max(1,s>>2),m=Math.max(1,c>>2);t:for(let t=0;t<s;t+=d){const o=e[t];for(let t=0;t<c;t+=m)if(o[t].a<200){h=!0;break t}}const u=t.canvas,g=y(u);h||(t.fillStyle=g?"#0a0a0a":"#faf9f7",t.fillRect(0,0,n,r));const M=n/c,v=r/s,b=s*c,x=i?.intensity??1,S=!("none"!==o.animationStyle&&b>5e3)&&!!(i&&o.hoverStrength>0&&x>.005),C=o.hoverColor||"#ffffff",A=parseInt(C.slice(1,3),16)||255,T=parseInt(C.slice(3,5),16)||255,I=parseInt(C.slice(5,7),16)||255,R=Q(o.accentColor),F=parseInt(R.substring(0,2),16)||255,k=parseInt(R.substring(2,4),16)||255,P=parseInt(R.substring(4,6),16)||255,B=b>3e4?.25:b>15e3?.4:b>5e3?.6:1,H=o.hoverRadius*B;let W=0,j=c,D=0,U=s,O=0,V=0;if(S&&i){O=i.x,V=i.y;const t=.08+.35*H+.04*o.hoverStrength;W=Math.max(0,Math.floor((O-t)*c)-1),j=Math.min(c,Math.ceil((O+t)*c)+1),D=Math.max(0,Math.floor((V-t)*s)-1),U=Math.min(s,Math.ceil((V+t)*s)+1)}const Y=o.animationStyle,X=o.animationSpeed,_="none"===Y,N=o.hoverStrength,G=o.hoverEffect,Z=H,tt=o.hoverShape||"circle",et=K(o.invert,u),ot=o.colorMode,nt=2*Math.PI,rt=1/c,at=1/s;let it="",st=-1;if("dots"===o.renderMode){const n=.5*Math.min(M,v)*o.dotSizeRatio;for(let o=0;o<s;o++){const r=e[o];for(let e=0;e<c;e++){const i=r[e];if(i.a<10)continue;const l=.00392156863*(.299*i.r+.587*i.g+.114*i.b),h=et?1-l:l;if(h<.02)continue;const f=_?1:$(e,o,c,s,a,Y,X);let d=1,m=0,u=0,g=0,b=0;if(S&&e>=W&&e<=j&&o>=D&&o<=U){const t=E(e*rt,o*at,O,V,x,N,M,v,G,Z,tt);d=t.scale,m=t.offsetX,u=t.offsetY,g=t.glow,b=t.colorBlend}const y=n*h*f*d;if(y<.3)continue;const C=e*M+.5*M+m,R=o*v+.5*v+u;let L;if(b>0){const t=w(i,ot,F,k,P,et);L=`rgb(${Math.min(255,t[0]+(A-t[0])*b|0)},${Math.min(255,t[1]+(T-t[1])*b|0)},${Math.min(255,t[2]+(I-t[2])*b|0)})`}else L=p(i,ot,F,k,P,et);const z=Math.min(1,.00392156863*i.a*f*(1+g));if(z!==st&&(t.globalAlpha=z,st=z),L!==it&&(t.fillStyle=L,it=L),y<=3){const e=2*y;t.fillRect(C-y,R-y,e,e)}else t.beginPath(),t.arc(C,R,y,0,nt),t.fill()}}}else{const i=.55,h=.9*Math.min(M/i,v),d=h<6;if(!d){const e="emoji"===o.artStyle;t.font=e?`${h}px "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif`:`${h}px "JetBrains Mono", monospace`,t.textAlign="center",t.textBaseline="middle"}const m=o.charsetFrames,u=!!m?.length,g=u?m[Math.floor(Math.max(0,a)*(o.charsetFps??2))%m.length]:o.charset;if(d){const{canvas:o,ctx:a}=function(t,e,o){let n=z.get(t);n||(n=l(e,o).canvas,z.set(t,n)),n.width!==e&&(n.width=e),n.height!==o&&(n.height=o);const r=n.getContext("2d",{willReadFrequently:!1});if(!r)throw new Error("renderFrameToCanvas: could not create raster context.");return{canvas:n,ctx:r}}(t,c,s);let i=q.get(a);i&&i.width===c&&i.height===s||(i={width:c,height:s,imageData:a.createImageData(c,s)},q.set(a,i));const h=i.imageData,d=h.data;d.fill(0);const m=J(g);for(let t=0;t<s;t++){const o=e[t];for(let e=0;e<c;e++){const n=o[e],r=4*(t*c+e);if(n.a<10)continue;const a=u&&null!=n.lum?f(n.lum,g,et):n.char;if(" "===a)continue;let i,s,l,h=m.get(a)??.5,p=0,b=0;if(S&&e>=W&&e<=j&&t>=D&&t<=U){const o=E(e*rt,t*at,O,V,x,N,M,v,G,Z,tt);h*=o.scale,p=o.glow,b=o.colorBlend}if(b>0){const t=w(n,ot,F,k,P,et);i=Math.min(255,t[0]+(A-t[0])*b|0),s=Math.min(255,t[1]+(T-t[1])*b|0),l=Math.min(255,t[2]+(I-t[2])*b|0)}else{const t=w(n,ot,F,k,P,et);i=t[0],s=t[1],l=t[2]}const y=Math.min(255,Math.max(0,n.a*h*(1+p)));d[r]=i,d[r+1]=s,d[r+2]=l,d[r+3]=y}}return a.putImageData(h,0,0),t.imageSmoothingEnabled=!1,t.drawImage(o,0,0,n,r),t.imageSmoothingEnabled=!0,void(t.globalAlpha=1)}const b=d?null:t.getTransform();if(!d&&!S&&_&&!u&&"accent"===ot){t.fillStyle=`rgb(${F},${k},${P})`,t.globalAlpha=1,t.textAlign="left";for(let o=0;o<s;o++){const n=e[o];let r="";for(let t=0;t<c;t++){const e=n[t];r+=e.a<10?" ":e.char}0!==r.trim().length&&t.fillText(r,.5*M,o*v+.5*v)}return void(t.globalAlpha=1)}const y="glitchText"===G&&S,C="!@#$%^&*<>{}[]|/\\~`0123456789",R=C.length;let L="",B=0,K=0,Q=0,nt=0,ct=0,lt=0;if(y){const t=o.hoverText??"ASCIIFY";if(K=Math.round(O*c),Q=Math.round(V*s),Array.isArray(t)){const e=t.filter(t=>t.length>0);0===e.length&&e.push("ASCIIFY");L=e[((7*Math.floor(K/Math.max(1,Math.ceil(c/5)))+13*Math.floor(Q/Math.max(1,Math.ceil(s/3))))%e.length+e.length)%e.length]}else L=t||"ASCIIFY";B=L.length,nt=Math.max(3,Math.min(12,Math.round(s*H*.6)));const e=Math.floor(nt/2);ct=Math.max(0,Q-e),ct+nt>s&&(ct=Math.max(0,s-nt)),lt=K-Math.floor(B/2)}for(let o=0;o<s;o++){const n=e[o];for(let e=0;e<c;e++){const r=n[e];if(r.a<10)continue;let i=u&&null!=r.lum?f(r.lum,g,et):r.char;if(" "===i)continue;const l=_?1:$(e,o,c,s,a,Y,X);if(l<.05)continue;let h=1,d=0,m=0,z=0,q=0;if(S&&!y&&e>=W&&e<=j&&o>=D&&o<=U){const t=E(e*rt,o*at,O,V,x,N,M,v,G,Z,tt);h=t.scale,d=t.offsetX,m=t.offsetY,z=t.glow,q=t.colorBlend}if(y&&o>=ct&&o<ct+nt){const t=e-lt;if(t>=0&&t<B){const n=L[t],r=Math.abs(o-Q)/Math.max(1,.5*nt),s=Math.abs(e-K)/Math.max(1,B),c=Math.max(r,s),l=Math.max(0,Math.min(1,1-.9*c)),h=43758.5453*Math.sin(127.1*e+311.7*o+43758.5453*Math.floor(12*a));i=Math.abs(h-Math.floor(h))<l?n:C[Math.abs(Math.floor(97*h))%R],z=.3+.7*l,q=.3+.65*l}}const H=e*M+.5*M+d,J=o*v+.5*v+m;let ht;if(q>0){const t=w(r,ot,F,k,P,et);ht=`rgb(${Math.min(255,t[0]+(A-t[0])*q|0)},${Math.min(255,t[1]+(T-t[1])*q|0)},${Math.min(255,t[2]+(I-t[2])*q|0)})`}else ht=p(r,ot,F,k,P,et);const ft=Math.min(1,.00392156863*r.a*l*(1+z));ft!==st&&(t.globalAlpha=ft,st=ft),ht!==it&&(t.fillStyle=ht,it=ht),1!==h?(t.translate(H,J),t.scale(h,h),t.fillText(i,0,0),t.setTransform(b)):t.fillText(i,H,J)}}}t.globalAlpha=1}function lt(t){return Math.max(0,Math.min(1,t))}function ht(t){return"string"==typeof t?document.querySelector(t):t instanceof HTMLElement?t:null}function ft(t){return"ascii"===t.renderMode&&"none"===t.animationStyle&&t.hoverStrength<=0&&!t.charsetFrames?.length}function dt(t,e,o={}){if(!Number.isFinite(t.duration)||t.duration<=0)return;const n=o.from??0,r=o.to??t.duration,a=Math.max(n,Math.min(r,t.duration)),i=lt(o.ease?o.ease(lt(e)):e),s=n+(a-n)*i;t.currentTime=Math.min(Math.max(n,s),Math.max(n,a-.04)),o.onUpdate?.(i,t)}function mt(t){const e=t.requestVideoFrameCallback;return new Promise(e?o=>{let n=!1;const r=()=>{n||(n=!0,o())};e.call(t,r),window.setTimeout(r,32)}:t=>requestAnimationFrame(()=>t()))}function ut(t,e={}){const o=ht(e.trigger)??t;t.pause();const n=e.gsap,r=e.ScrollTrigger??n?.ScrollTrigger;if(n&&r?.create){n.registerPlugin?.(r);const a=r.create({trigger:o,start:e.start??"top bottom",end:e.end??"bottom top",scrub:e.scrub??!0,onUpdate:o=>dt(t,o.progress,e)});return()=>a.kill?.()}return function(t,e,o){let n=0;const r=()=>{n=0;const r=e.getBoundingClientRect(),a=window.innerHeight||document.documentElement.clientHeight,i=r.height+a,s=i>0?lt((a-r.top)/i):0;dt(t,s,o)},a=()=>{n||(n=requestAnimationFrame(r))};return window.addEventListener("scroll",a,{passive:!0}),window.addEventListener("resize",a),a(),()=>{window.removeEventListener("scroll",a),window.removeEventListener("resize",a),n&&cancelAnimationFrame(n)}}(t,o,e)}function gt(t,e,o){const n=e.gsap,r=e.ScrollTrigger??n?.ScrollTrigger;if(n&&r?.create){n.registerPlugin?.(r);const a=r.create({trigger:t,start:e.start??"top bottom",end:e.end??"bottom top",scrub:e.scrub??!0,onUpdate:t=>o(t.progress)});return()=>a.kill?.()}return function(t,e){let o=0;const n=()=>{o=0;const n=t.getBoundingClientRect(),r=window.innerHeight||document.documentElement.clientHeight,a=n.height+r,i=a>0?lt((r-n.top)/a):0;e(i)},r=()=>{o||(o=requestAnimationFrame(n))};return window.addEventListener("scroll",r,{passive:!0}),window.addEventListener("resize",r),r(),()=>{window.removeEventListener("scroll",r),window.removeEventListener("resize",r),o&&cancelAnimationFrame(o)}}(t,o)}function Mt(t,e,o=2048){const n=o,r=Math.min(1,n/Math.max(t,e));return{renderW:Math.round(t*r),renderH:Math.round(e*r)}}function pt(t,e,o,n,r,a=2048){const{width:i,height:s}=e.getBoundingClientRect();if(!i||!s)return{renderW:0,renderH:0,dpr:1};let c,l,h=i,f=h/o;f>s&&(f=s,h=f*o),h=Math.round(h),f=Math.round(f),n&&r?({renderW:c,renderH:l}=Mt(n,r,a)):(c=h,l=f);const d="undefined"!=typeof window&&window.devicePixelRatio||1,m=8e6,u=c*d*l*d>m?Math.sqrt(m/(c*l)):d;return t.width=Math.round(c*u),t.height=Math.round(l*u),t.style.width=h+"px",t.style.height=f+"px",{renderW:c,renderH:l,dpr:u}}async function vt(t,e,{fontSize:o,artStyle:n="classic",options:r={}}={}){let i;if("string"==typeof t){const e=new Image;e.crossOrigin="anonymous",await new Promise((o,n)=>{e.onload=()=>o(),e.onerror=()=>n(new Error(`Failed to load image: ${t}`)),e.src=t}),i=e}else t instanceof HTMLImageElement&&!t.complete?(await new Promise((e,o)=>{t.onload=()=>e(),t.onerror=()=>o(new Error("Image failed to load"))}),i=t):i=t;const c=a[n],l=o??r.fontSize??10,h={...s,...c,...r,fontSize:l},f=e.getContext("2d");if(!f)throw new Error("Could not get 2d context from canvas");const{w:d,h:m}=function(t){return t instanceof HTMLVideoElement?{w:t.videoWidth,h:t.videoHeight}:t instanceof HTMLImageElement?{w:t.naturalWidth||t.width,h:t.naturalHeight||t.height}:{w:t.width,h:t.height}}(i),{renderW:u,renderH:g}=Mt(d,m),M="undefined"!=typeof window&&window.devicePixelRatio||1,p=8e6,v=u*M*g*M>p?Math.sqrt(p/(u*g)):M;if((e.width<u||e.height<g)&&(e.width=Math.round(u*v),e.height=Math.round(g*v)),h.hoverStrength>0){const{frame:t}=et(i,h,u,g);let o=null,n=!1,r=0;const a=t=>{const n=e.getBoundingClientRect();o={x:(t.clientX-n.left)/n.width,y:(t.clientY-n.top)/n.height}},s=()=>{o=null};e.addEventListener("mousemove",a),e.addEventListener("mouseleave",s);const c=e=>{n||(f.save(),f.setTransform(v,0,0,v,0,0),ct(f,t,h,u,g,e/1e3,o),f.restore(),r=requestAnimationFrame(c))};return r=requestAnimationFrame(c),()=>{n=!0,cancelAnimationFrame(r),e.removeEventListener("mousemove",a),e.removeEventListener("mouseleave",s)}}if(f.save(),f.setTransform(v,0,0,v,0,0),ft(h)){const t=ot(i,h,u,g);nt(f,t,h,u,g)}else{const{frame:t}=et(i,h,u,g);ct(f,t,h,u,g)}f.restore()}async function wt(t,e,{fontSize:o,artStyle:n="classic",options:r={}}={}){const i="string"==typeof t?await fetch(t).then(t=>t.arrayBuffer()):t,c=o??r.fontSize??10,l={...s,...a[n],...r,fontSize:c},h=e.getContext("2d");if(!h)throw new Error("Could not get 2d context from canvas");if(ft(l)){const{frames:t,fps:o}=await st(i,l,e.width,e.height);let n,r=!1,a=0,s=performance.now();const c=1e3/o,f=o=>{r||(o-s>=c&&(nt(h,t[a],l,e.width,e.height),a=(a+1)%t.length,s=o),n=requestAnimationFrame(f))};return n=requestAnimationFrame(f),()=>{r=!0,cancelAnimationFrame(n)}}const{frames:f,fps:d}=await it(i,l,e.width,e.height);let m,u=!1,g=0,M=performance.now();const p=1e3/d,v=t=>{u||(t-M>=p&&(ct(h,f[g],l,e.width,e.height),g=(g+1)%f.length,M=t),m=requestAnimationFrame(v))};return m=requestAnimationFrame(v),()=>{u=!0,cancelAnimationFrame(m)}}async function bt(t,e,{fontSize:o,artStyle:n="classic",options:r={},fitTo:i,preExtract:c=!1,fps:l,maxRenderDimension:h=2048,trim:f,scroll:d,onReady:m,onFrame:u}={}){const g=f?.start??0,M=f?.end,p=o??r.fontSize??10,v={...s,...a[n],...r,fontSize:p},w=e.getContext("2d");if(!w)throw new Error("asciifyVideo: could not get 2d context from canvas.");const b="string"==typeof i?document.querySelector(i):i instanceof HTMLElement?i:null;if(c){let o;"string"==typeof t?(o=document.createElement("video"),o.crossOrigin="anonymous",o.src=t,o.readyState<2&&await new Promise((e,n)=>{o.onloadeddata=()=>e(),o.onerror=()=>n(new Error(`asciifyVideo: failed to load "${t}"`))})):o=t,b&&pt(e,b,o.videoWidth/o.videoHeight,o.videoWidth,o.videoHeight,h);const{renderW:n,renderH:r}=Mt(o.videoWidth,o.videoHeight,h),a="undefined"!=typeof window&&window.devicePixelRatio||1,i=8e6,s=n*a*r*a>i?Math.sqrt(i/(n*r)):a;e.width<Math.round(n*s)&&(e.width=Math.round(n*s),e.height=Math.round(r*s));const c=void 0!==M?M-g:10,f=l??(d?18:void 0);if(ft(v)){const{frames:t,fps:a}=await at(o,v,n,r,f,c,void 0,g),i=e=>{const o=t[e];o&&(w.save(),w.setTransform(s,0,0,s,0,0),nt(w,o,v,n,r),w.restore(),u?.())};if(d){let n=!1,r=-1;const a=!0===d?{}:d,s=gt(ht(a.trigger)??b??e,a,e=>{const s=lt(a.ease?a.ease(lt(e)):e),c=Math.max(0,Math.min(t.length-1,Math.round(s*(t.length-1))));c!==r&&(r=c,i(c),n||(n=!0,m?.(o)),a.onUpdate?.(s,o))});return i(0),n=!0,m?.(o),s}let l,h=!1,M=0,p=performance.now(),x=!0;const y=1e3/a,S=e=>{h||(e-p>=y&&(i(M),M=(M+1)%t.length,p=e,x&&(x=!1,m?.(o))),l=requestAnimationFrame(S))};return l=requestAnimationFrame(S),()=>{h=!0,cancelAnimationFrame(l)}}const{frames:p,fps:x}=await rt(o,v,n,r,f,c,void 0,g),y=t=>{const e=p[t];e&&(w.save(),w.setTransform(s,0,0,s,0,0),ct(w,e,v,n,r),w.restore(),u?.())};if(d){let t=!1,n=-1;const r=!0===d?{}:d,a=gt(ht(r.trigger)??b??e,r,e=>{const a=lt(r.ease?r.ease(lt(e)):e),i=Math.max(0,Math.min(p.length-1,Math.round(a*(p.length-1))));i!==n&&(n=i,y(i),t||(t=!0,m?.(o)),r.onUpdate?.(a,o))});return y(0),t=!0,m?.(o),a}let S,$=!1,C=0,E=performance.now(),A=!0;const T=1e3/x,I=t=>{$||(t-E>=T&&(y(C),C=(C+1)%p.length,E=t,A&&(A=!1,m?.(o))),S=requestAnimationFrame(I))};return S=requestAnimationFrame(I),()=>{$=!0,cancelAnimationFrame(S)}}let x,y=!1;"string"==typeof t?(x=document.createElement("video"),x.src=t,x.muted=!0,x.loop=!0,x.playsInline=!0,x.setAttribute("playsinline",""),Object.assign(x.style,{position:"fixed",top:"0",left:"0",width:"1px",height:"1px",opacity:"0",pointerEvents:"none",zIndex:"-1"}),document.body.appendChild(x),y=!0,await new Promise((e,o)=>{x.onloadedmetadata=()=>e(),x.onerror=()=>o(new Error(`asciifyVideo: failed to load "${t}"`))}),await x.play().catch(()=>{})):(x=t,x.readyState<HTMLMediaElement.HAVE_METADATA&&await new Promise((t,e)=>{const o=()=>{x.removeEventListener("loadedmetadata",n),x.removeEventListener("error",r)},n=()=>{o(),t()},r=()=>{o(),e(new Error("asciifyVideo: provided video element failed to load metadata."))};x.addEventListener("loadedmetadata",n),x.addEventListener("error",r),x.load()}),x.paused&&await x.play().catch(()=>{})),g>0&&(x.currentTime=g,await new Promise(t=>{const e=()=>{x.removeEventListener("seeked",e),t()};x.addEventListener("seeked",e)}),await mt(x));let S=null;(g>0||void 0!==M)&&(S=()=>{(void 0!==M&&x.currentTime>=M||g>0&&x.currentTime<g)&&(x.currentTime=g)},x.addEventListener("timeupdate",S));let $=null;const{renderW:C,renderH:E}=Mt(x.videoWidth,x.videoHeight,h);if(b){const t=x.videoWidth/x.videoHeight,o=x.videoWidth,n=x.videoHeight,r=pt(e,b,t,o,n,h),a=e.getContext("2d");a&&a.setTransform(r.dpr,0,0,r.dpr,0,0),$=new ResizeObserver(()=>{const r=pt(e,b,t,o,n,h),a=e.getContext("2d");a&&a.setTransform(r.dpr,0,0,r.dpr,0,0)}),$.observe(b)}else{const t="undefined"!=typeof window&&window.devicePixelRatio||1,o=8e6,n=C*t*E*t>o?Math.sqrt(o/(C*E)):t;e.width<Math.round(C*n)&&(e.width=Math.round(C*n),e.height=Math.round(E*n)),w.setTransform(n,0,0,n,0,0)}let A,T=!1,I=!0,R=null;const F=d&&!c,k=l&&l>0?1e3/l:0;let L=0,z=-1;const q=!F&&ft(v);if(F&&"ascii"===v.renderMode&&"none"===v.animationStyle&&v.hoverStrength<=0&&!v.charsetFrames?.length){const t=!0===d?{}:d,o=ht(t.trigger)??b??e,n=t.from??g,r=t.to??M??x.duration,a=Math.max(n,Math.min(r,x.duration)),i=Math.max(.001,a-n),s=Math.min(60,Math.max(12,l??30)),c=Math.max(2,Math.ceil(i*s)+1),h=new Array(c);let f=0,p=0,A=-1,T=0,I=!1,F=!1,z=!1;const q=new Set,P=document.createElement("video");P.muted=!0,P.playsInline=!0,P.preload="auto",P.crossOrigin=x.crossOrigin||"anonymous",P.src=x.currentSrc||x.src,Object.assign(P.style,{position:"fixed",top:"0",left:"0",width:"1px",height:"1px",opacity:"0",pointerEvents:"none",zIndex:"-1"}),document.body.appendChild(P),P.readyState<HTMLMediaElement.HAVE_METADATA&&await new Promise((t,e)=>{const o=()=>{P.removeEventListener("loadedmetadata",n),P.removeEventListener("error",r)},n=()=>{o(),t()},r=()=>{o(),e(new Error("asciifyVideo: cache video failed to load metadata."))};P.addEventListener("loadedmetadata",n),P.addEventListener("error",r),P.load()}),P.pause(),x.paused&&await x.play().catch(()=>{});const B=t=>n+i*t/Math.max(1,c-1),H=t=>Math.max(0,Math.min(c-1,Math.round(t*(c-1)))),W=ot(x,v,C,E);W.rows.length>0&&(h[0]=W,nt(w,W,v,C,E),z=!0,m?.(x),u?.());const j=t=>{if(h[t])return t;for(let e=1;e<c;e++){const o=t-e,n=t+e;if(o>=0&&h[o])return o;if(n<c&&h[n])return n}return-1},D=()=>{if(!h[f])return f;for(const t of q)if(!h[t])return t;for(let t=1;t<c;t++){const e=f-t,o=f+t;if(e>=0&&!h[e])return e;if(o<c&&!h[o])return o}return-1},U=t=>{t<0||t>=c||h[t]||(q.add(t),O())},O=async()=>{if(I||F)return;const t=D();if(!(t<0)){q.delete(t),F=!0;try{if(await function(t,e){return Math.abs(t.currentTime-e)<1/240?mt(t):new Promise(o=>{const n=()=>{t.removeEventListener("seeked",n),o()};t.addEventListener("seeked",n,{once:!0});const r=t.fastSeek;r?r.call(t,e):t.currentTime=e})}(P,B(t)),!I){const e=ot(P,v,C,E);e.rows.length>0&&(h[t]=e)}}finally{F=!1,I||requestAnimationFrame(()=>{O()})}}},V=()=>{if(I)return;const t=j(f);if(t>=0&&t!==A){const e=h[t];e&&(nt(w,e,v,C,E),A=t,z||(z=!0,m?.(x)),u?.())}else if(t<0||A<0){const t=performance.now();if(k<=0||t-L>=k){const e=ot(x,v,C,E);e.rows.length>0&&(nt(w,e,v,C,E),L=t,z||(z=!0,m?.(x)),u?.())}}U(f),T=requestAnimationFrame(V)};return R=gt(o,t,e=>{const o=function(t,e,o={}){if(!Number.isFinite(t.duration)||t.duration<=0)return null;const n=o.from??0,r=o.to??t.duration,a=Math.max(n,Math.min(r,t.duration)),i=lt(o.ease?o.ease(lt(e)):e),s=n+(a-n)*i;return{progress:i,time:Math.min(Math.max(n,s),Math.max(n,a-.04))}}(x,e,{...t,from:n,to:a});p=o?.progress??lt(e),f=H(p),U(f),U(f-1),U(f+1),U(f-2),U(f+2),U(f-3),U(f+3),t.onUpdate?.(p,x)}),U(0),U(1),T=requestAnimationFrame(V),()=>{I=!0,cancelAnimationFrame(T),R?.(),$?.disconnect(),P.pause(),P.src="",document.body.removeChild(P),S&&x.removeEventListener("timeupdate",S),y&&(x.pause(),x.src="",document.body.removeChild(x))}}if(F){const t=!0===d?{}:d;R=ut(x,{...t,trigger:t.trigger??b??e,from:t.from??g,to:t.to??M})}const P=t=>{if(T)return;if(A=requestAnimationFrame(P),x.readyState<2||0===e.width||0===e.height)return;if(k>0&&t-L<k)return;if(g>0&&x.currentTime<g)return;if(void 0!==M&&x.currentTime>=M)return;if(F&&Math.abs(x.currentTime-z)<1/240)return;if(q){const e=ot(x,v,C,E);return void(e.rows.length>0&&(nt(w,e,v,C,E),L=t,z=x.currentTime,I&&(I=!1,m?.(x)),u?.()))}const{frame:o}=et(x,v,C,E);o.length>0&&(ct(w,o,v,C,E,0,null),L=t,z=x.currentTime,I&&(I=!1,m?.(x)),u?.())};return A=requestAnimationFrame(P),()=>{T=!0,cancelAnimationFrame(A),R?.(),$?.disconnect(),S&&x.removeEventListener("timeupdate",S),y&&(x.pause(),x.src="",document.body.removeChild(x))}}function xt(t,e,o){return bt(t,e,o)}function yt(t,e,o,n,r={}){const{fontSize:a=13,chars:i="0123456789ABCDEF@#$&*+=/<>",accentColor:s,color:c,speed:l=1,density:h=.55,tailLength:f=14,lightMode:d=!1}=r,m=s??(d?"#6b8700":"#d4ff00"),u=.62*a,g=1.4*a,M=Math.ceil(e/u),p=Math.ceil(o/g);t.clearRect(0,0,e,o),t.font=`${a}px monospace`,t.textBaseline="top";let v=255,w=255,b=255;if(d&&(v=55,w=55,b=55),c){const t=A(c);t&&(v=t.r,w=t.g,b=t.b)}let x=212,y=255,S=0;const $=A(m);$&&(x=$.r,y=$.g,S=$.b);const C=p+f;for(let e=0;e<M;e++){if(R(17*e,3)>h)continue;const o=(.5+1.5*R(31*e,7))*l,r=R(13*e,11)*C,a=Math.floor((n*o*7+r)%C),s=e*u;for(let o=0;o<=f;o++){const r=a-(f-o);if(r<0||r>=p)continue;const c=r*g,l=R(53*e+Math.floor(5*n+o),7*r),h=i[Math.floor(l*i.length)],m=o/f;if(o===f)t.fillStyle=`rgba(${x},${y},${S},${d?.7:.85})`;else{const e=d?.85*m:.15*m;t.fillStyle=`rgba(${v},${w},${b},${e})`}t.fillText(h,s,c)}}}function St(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=" . · * + ° ★",accentColor:c,color:l,speed:h=1,count:f=180,lightMode:d=!1}=a,m=c??(d?"#6b8700":"#d4ff00");t.clearRect(0,0,e,o),t.textBaseline="middle",t.textAlign="center";const u=e*(.2+.6*r.x),g=o*(.2+.6*r.y),M=.65*Math.sqrt(e*e+o*o);let p=255,v=255,w=255;if(d&&(p=55,v=55,w=55),l){const t=A(l);t&&(p=t.r,v=t.g,w=t.b)}let b=212,x=255,y=0;const S=A(m);S&&(b=S.r,x=S.g,y=S.b);const $=s.replace(/ /g,"").split("");if(0!==$.length){for(let r=0;r<f;r++){const a=R(17*r,3)*Math.PI*2,s=(n*(.15+.85*R(31*r,7))*h*.22+R(13*r,11))%1,c=u+Math.cos(a)*s*M,l=g+Math.sin(a)*s*M;if(c<-20||c>e+20||l<-20||l>o+20)continue;const f=Math.max(6,i*(.4+.9*s));t.font=`${f}px monospace`;const m=$[Math.min($.length-1,Math.floor(s*$.length))],S=s>.72,C=d?.85*s:.2*s;t.fillStyle=S?`rgba(${b},${x},${y},${Math.min(d?.92:.32,2.2*C)})`:`rgba(${p},${v},${w},${C})`,t.fillText(m,c,l)}t.textAlign="left"}}function $t(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=". · ○ ◎ ●",accentColor:c,color:l,rings:h=5,speed:f=1,sharpness:d=4,lightMode:m=!1}=a,u=c??(m?"#007a5e":"#00ffcc");t.clearRect(0,0,e,o),t.textBaseline="middle",t.textAlign="center";const g=e*r.x,M=o*r.y,p=1.6*Math.sqrt(g*g+M*M)+.2*Math.sqrt(e*e+o*o);let v=255,w=255,b=255;if(m&&(v=55,w=55,b=55),l){const t=A(l);t&&(v=t.r,w=t.g,b=t.b)}let x=0,y=255,S=204;const $=A(u);$&&(x=$.r,y=$.g,S=$.b);const C=s.replace(/ /g,"").split("");if(0===C.length)return;const E=Math.ceil(e/i),T=Math.ceil(o/i);for(let e=0;e<T;e++)for(let o=0;o<E;o++){const r=o*i+.5*i,a=e*i+.5*i,s=r-g,c=a-M,l=Math.sqrt(s*s+c*c)/p;let u=0;for(let t=0;t<h;t++){const e=(n*f*.38+t/h)%1,o=Math.abs(l-e),r=Math.max(0,1-o*p/(i*(12-d)));u+=Math.cos(r*Math.PI*.5)*r}if(u=Math.min(1,u),u<.02)continue;const $=u>.6;t.font=`${i}px monospace`;const E=Math.floor(u*(C.length-1)),A=C[Math.min(E,C.length-1)],T=m?.88*u:.22*u;t.fillStyle=$?`rgba(${x},${y},${S},${Math.min(m?.95:.4,.55*u)})`:`rgba(${v},${w},${b},${T})`,t.fillText(A,r,a)}t.textAlign="left"}function Ct(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=" .·:;=+*#%@░▒▓",accentColor:c,color:l,octaves:h=4,speed:f=1,scale:d=1,accentThreshold:m=.78,mouseWarp:u=.3,lightMode:g=!1}=a,M=c??(g?"#6b8700":"#d4ff00"),p=.62*i,v=1.4*i,w=Math.ceil(e/p),b=Math.ceil(o/v);t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let x=255,y=255,S=255;if(g&&(x=55,y=55,S=55),l){const t=A(l);t&&(x=t.r,y=t.g,S=t.b)}let $=212,C=255,E=0;const T=A(M);T&&($=T.r,C=T.g,E=T.b);const I=.035*d,R=n*f,k=Math.min(6,Math.max(1,h)),L=(t,e)=>{let o=0,n=.5,r=1,a=0;for(let i=0;i<k;i++)o+=F(t*r,e*r)*n,a+=n,n*=.5,r*=2.1;return o/a};for(let e=0;e<b;e++)for(let o=0;o<w;o++){const n=o*I+.06*R,a=e*I*1.3-.04*R,i=o/w-r.x,c=e/b-r.y,l=Math.sqrt(i*i+c*c),h=u>0?.12*Math.max(0,1-l/u):0,f=.5*L(n+h*Math.sin(1.3*R+8*c),a+h*Math.cos(.9*R+8*i))+.5;if(f<.12)continue;const d=s[Math.floor(f*(s.length-1))];if(" "===d)continue;const M=f>m,A=g?.82*f:.13*f;t.fillStyle=M?`rgba(${$},${C},${E},${g?.92:.28})`:`rgba(${x},${y},${S},${A})`,t.fillText(d,o*p,e*v)}}function Et(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=12,chars:s="·-=+|/",accentColor:c,color:l,bands:h=3,speed:f=1,bandWidth:d=.12,glitch:m=!0,lightMode:u=!1}=a,g=c??(u?"#6b8700":"#d4ff00"),M=.62*i,p=1.4*i,v=Math.ceil(e/M),w=Math.ceil(o/p);t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let b=255,x=255,y=255;if(u&&(b=55,x=55,y=55),l){const t=A(l);t&&(b=t.r,x=t.g,y=t.b)}let S=212,$=255,C=0;const E=A(g);E&&(S=E.r,$=E.g,C=E.b);const T=n*f;for(let e=0;e<w;e++)for(let o=0;o<v;o++){const n=e/w,a=((n*h-.5*T)%1+1)%1,i=Math.max(0,1-a/d),c=.35*(.5*R(3*o,7*e)+.5);let l=0;if(m){const t=o/v-r.x,a=n-r.y,i=Math.sqrt(t*t+a*a);if(i<.18){const t=R(11*o+Math.floor(12*T),5*e);l=Math.max(0,1-i/.18)*(t>.5?t-.3:0)}}const f=Math.min(1,c+.8*i+.6*l);if(f<.04)continue;const g=s[Math.floor(f*(s.length-1))],E=i>.55,A=u?.82*f:.12*f;t.fillStyle=E?`rgba(${S},${$},${C},${u?.92:.28})`:`rgba(${b},${x},${y},${A})`,t.fillText(g,o*M,e*p)}}function At(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=" ·∙•:;+=≡≣#@",color:c,accentColor:l,speed:h=1,layers:f=5,softness:d=1.2,mouseRipple:m=.2,lightMode:u=!1}=a,g=l??(u?"#6b8700":"#d4ff00"),M=.62*i,p=1.4*i,v=Math.ceil(e/M),w=Math.ceil(o/p);t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let b=255,x=255,y=255;if(u&&(b=55,x=55,y=55),c){const t=A(c);t&&(b=t.r,x=t.g,y=t.b)}let S=212,$=255,C=0;const E=A(g);E&&(S=E.r,$=E.g,C=E.b);const T=n*h,I=[];for(let t=0;t<f;t++){const e=R(17*t,31*t+7),o=R(23*t+5,11*t);I.push({fx:.8+2.2*e,fy:1.2+1.8*o,phase:e*Math.PI*4,dt:(.3+.5*R(7*t,13*t+3))*(t%2==0?1:-1),amp:.55+.45*R(29*t,3*t)})}for(let e=0;e<w;e++){const o=e/w;for(let n=0;n<v;n++){const a=n/v,i=a-r.x,c=o-r.y,l=Math.sqrt(i*i+c*c),h=m*Math.exp(-l*l/.06),g=a+i*h,w=o+c*h;let E=0,A=0;for(let t=0;t<f;t++){const{fx:e,fy:o,phase:n,dt:r,amp:a}=I[t];E+=Math.sin(g*e*Math.PI*2+T*r+n)*Math.cos(w*o*Math.PI*2+T*r*.7+1.3*n)*a,A+=a}const R=E/A,F=.5+.5*Math.tanh(R*d*2.2);if(F<.12)continue;const k=(F-.12)/.88,L=s[Math.min(s.length-1,Math.floor(k*s.length))],z=F>.82,q=u?.82*F:.14*F;t.fillStyle=z?`rgba(${S},${$},${C},${u?.92:.32})`:`rgba(${b},${x},${y},${q})`,t.fillText(L,n*M,e*p)}}}function Tt(t,e,o,n,r={}){const{fontSize:a=13,color:i,accentColor:s,speed:c=.4,layers:l=4,turbulence:h=.8,lightMode:f=!1}=r,d=s??(f?"#6b8700":"#d4ff00"),m=.62*a,u=1.4*a,g=Math.ceil(e/m),M=Math.ceil(o/u);t.clearRect(0,0,e,o),t.font=`${a}px monospace`,t.textBaseline="top";let p=255,v=255,w=255;if(f&&(p=55,v=55,w=55),i){const t=A(i);t&&(p=t.r,v=t.g,w=t.b)}let b=212,x=255,y=0;const S=A(d);S&&(b=S.r,x=S.g,y=S.b);const $=n*c,C=["─","─","╌","·","╌","─","─","╌","·"];for(let e=0;e<M;e++){const o=e/M;for(let n=0;n<g;n++){const r=n/g;let a=0,i=0;for(let t=0;t<l;t++){const e=R(13*t,7*t+3),n=1.1+2.4*e,s=.9+2*R(29*t,11*t+1),c=e*Math.PI*6,l=(.2+.5*R(41*t,17*t))*(t%2==0?1:-1.3),f=Math.sin(r*n*Math.PI*2+$*l+c),d=Math.cos(o*s*Math.PI*2+$*l*.6+1.7*c),m=Math.sin(r*s*Math.PI*h+o*n*Math.PI*h+$*l*.4);a+=Math.atan2(d+.3*m,f),i+=.5*(f*d+1)}const s=a/l,c=Math.min(1,i/l);if(c<.1)continue;const d=(s+Math.PI)/(2*Math.PI),M=C[Math.floor(d*C.length)%C.length],S=c>.8,E=f?.8*c:.13*c;t.fillStyle=S?`rgba(${b},${x},${y},${f?.9:.26})`:`rgba(${p},${v},${w},${E})`,t.fillText(M,n*m,e*u)}}}function It(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=13,chars:s=" ·:;=+*#%@",color:c,accentColor:l,speed:h=1,radius:f=.38,swirl:d=3,lightMode:m=!1}=a,u=l??(m?"#6b8700":"#d4ff00"),g=.62*i,M=1.4*i,p=Math.ceil(e/g),v=Math.ceil(o/M),w=e/o;t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let b=255,x=255,y=255;if(m&&(b=55,x=55,y=55),c){const t=A(c);t&&(b=t.r,x=t.g,y=t.b)}let S=212,$=255,C=0;const E=A(u);E&&(S=E.r,$=E.g,C=E.b);const T=n*h;for(let e=0;e<v;e++){const o=e/v;for(let n=0;n<p;n++){const a=(n/p-r.x)*w,i=o-r.y,c=Math.sqrt(a*a+i*i)/f;if(c>1){const o=R(3*n,7*e)*Math.max(0,1-3*(c-1));if(o<.62)continue;const r=o*(m?.28:.04);t.fillStyle=`rgba(${b},${x},${y},${r})`,t.fillText(s[1],n*g,e*M);continue}const l=Math.max(0,1-Math.abs(c-(.15+.12*Math.sin(1.1*T)))/.07),h=Math.pow(1-c,2.2),d=Math.min(1,h+.6*l);if(d<.06)continue;const u=Math.floor(d*(s.length-1)),v=s[Math.min(s.length-1,u)],E=l>.35||c<.08,A=m?.85*d:.18*d;t.fillStyle=E?`rgba(${S},${$},${C},${m?.95:.38})`:`rgba(${b},${x},${y},${A})`,t.fillText(v,n*g,e*M)}}}function Rt(t,e,o,n,r={}){const{fontSize:a=14,chars:i=" ·∙•:-=+*#",color:s,accentColor:c,speed:l=.5,harmonics:h=3,lightMode:f=!1}=r,d=c??(f?"#6b8700":"#d4ff00"),m=.62*a,u=1.4*a,g=Math.ceil(e/m),M=Math.ceil(o/u);t.clearRect(0,0,e,o),t.font=`${a}px monospace`,t.textBaseline="top";let p=255,v=255,w=255;if(f&&(p=55,v=55,w=55),s){const t=A(s);t&&(p=t.r,v=t.g,w=t.b)}let b=212,x=255,y=0;const S=A(d);S&&(b=S.r,x=S.g,y=S.b);const $=n*l,C=Array.from({length:h},(t,e)=>1/(e+1)).reduce((t,e)=>t+e,0);for(let e=0;e<M;e++)for(let o=0;o<g;o++){let n=0;for(let t=0;t<h;t++){const r=.18+1.4*R(o*(t+3)+7,e*(t+5)+11),a=R(o*(t+7),e*(t+9)+3)*Math.PI*2,i=1/(t+1);n+=Math.sin($*r+a)*i}const r=.5*(n/C+1);if(r<.28)continue;const a=(r-.28)/.72,s=i[Math.min(i.length-1,Math.floor(a*i.length))],c=r>.88,l=f?.82*a:.13*a;t.fillStyle=c?`rgba(${b},${x},${y},${f?.92:.28})`:`rgba(${p},${v},${w},${l})`,t.fillText(s,o*m,e*u)}}function Ft(t,e,o,n,r={}){const{fontSize:a=13,chars:i=" .,:;i+xX#&@",color:s="#ff4500",hotColor:c="#ffe066",intensity:l=.85,wind:h=0,speed:f=1,lightMode:d=!1}=r,m=.62*a,u=1.4*a,g=Math.ceil(e/m),M=Math.ceil(o/u),p=g*M,v="__fire_heat__",w=t.canvas;let b=w[v];b&&b.length===p||(b=new Float32Array(p),w[v]=b);const x=.18*(.016*f),y=h*f*.8,S=M-1,$=n*f;for(let t=0;t<g;t++){const e=(.6*(.5*Math.sin(.31*t+4.1*$)+.5)+.4*(.5*Math.sin(.73*t-2.7*$)+.5))*l;b[S*g+t]=Math.min(1,e+.15*Math.random()*l),S>0&&(b[(S-1)*g+t]=Math.min(1,.85*e+.1*Math.random()*l))}const C=new Float32Array(p);for(let t=0;t<M-2;t++)for(let e=0;e<g;e++){const o=.4*b[(t+1)*g+e]+.25*b[(t+2)*g+Math.max(0,Math.min(g-1,e+Math.round(y)))]+.175*b[(t+1)*g+Math.max(0,e-1)]+.175*b[(t+1)*g+Math.min(g-1,e+1)];C[t*g+e]=Math.max(0,o-x-.02*Math.random()*f)}for(let t=0;t<g;t++)C[(M-1)*g+t]=b[(M-1)*g+t],M>1&&(C[(M-2)*g+t]=b[(M-2)*g+t]);w[v]=C;const E=A(s)??{r:255,g:69,b:0},T=A(c)??{r:255,g:224,b:102};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";for(let e=0;e<M;e++)for(let o=0;o<g;o++){const n=C[e*g+o];if(n<.03)continue;const r=i[Math.min(i.length-1,Math.floor(n*i.length))];if(" "===r)continue;const a=Math.min(1,1.2*n),s=E.r+(T.r-E.r)*a|0,c=E.g+(T.g-E.g)*a|0,l=E.b+(T.b-E.b)*a|0,h=d?1-.3*n:Math.min(1,n+.15);t.globalAlpha=h,t.fillStyle=`rgb(${s},${c},${l})`,t.fillText(r,o*m,e*u)}t.globalAlpha=1}function kt(t,e,o,n,r={}){const{fontSize:a=13,baseChars:i="ATCG",bridgeChars:s="-=≡",color:c="#00e5ff",color2:l="#ff4081",bridgeColor:h="#88ffcc",speed:f=1,helixCount:d,lightMode:m=!1}=r,u=.62*a,g=1.4*a,M=Math.ceil(e/u),p=Math.ceil(o/g),v=d??Math.max(1,Math.floor(e/80)),w=M/v,b=A(c)??{r:0,g:229,b:255},x=A(l)??{r:255,g:64,b:129},y=A(h)??{r:136,g:255,b:204};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";const S=n*f,$=.35*w;for(let e=0;e<v;e++){const o=w*(e+.5);for(let n=0;n<p;n++){const r=n/p*Math.PI*6-1.8*S,a=o+Math.sin(r)*$,c=o+Math.sin(r+Math.PI)*$,l=Math.round(a),h=Math.round(c);if(l<0||l>=M)continue;const f=R(31*e+7*n,3),d=i[Math.floor(f*i.length)],m=.5*(Math.sin(r)+1),v=.5*(Math.sin(r+Math.PI)+1);if(t.globalAlpha=.35+.65*m,t.fillStyle=`rgb(${b.r},${b.g},${b.b})`,t.fillText(d,l*u,n*g),h>=0&&h<M){const o=R(53*e+11*n,7),r=i[Math.floor(o*i.length)];t.globalAlpha=.35+.65*v,t.fillStyle=`rgb(${x.r},${x.g},${x.b})`,t.fillText(r,h*u,n*g)}if(n%3===0){const o=Math.min(l,h),r=Math.max(l,h);if(r-o>1){const a=R(17*n+43*e,5),i=s[Math.floor(a*s.length)],c=.25*(m+v)+.2;t.globalAlpha=c,t.fillStyle=`rgb(${y.r},${y.g},${y.b})`;for(let e=o+1;e<r;e++)t.fillText(i,e*u,n*g)}}}}t.globalAlpha=1}function Lt(t,e,o,n,r={}){const{fontSize:a=13,chars:i=" .,:;+*#@",color:s="#4caf50",skyColor:c="#1a237e",peakColor:l="#e0e0e0",speed:h=1,roughness:f=.55,heightScale:d=.55,stars:m=!0,lightMode:u=!1}=r,g=.62*a,M=1.4*a,p=Math.ceil(e/g),v=Math.ceil(o/M),w=A(s)??{r:76,g:175,b:80},b=A(c)??{r:26,g:35,b:126},x=A(l)??{r:224,g:224,b:224};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";const y=n*h*.4,S=new Array(p);for(let t=0;t<p;t++){const e=(.5*k((t/p+y)*f*3,.5)+.5)*d;S[t]=Math.floor(e*v)}for(let e=0;e<v;e++)for(let o=0;o<p;o++){const r=v-1-S[o],a=e===r;if(!(e>=r)){if(m){const r=R(7*o+Math.floor(.3*y),13*e);if(r>.97){const a=.3*Math.sin(2*n+100*r)+.7;t.globalAlpha=.5*a,t.fillStyle=`rgb(${b.r+60},${b.g+60},${b.b+80})`,t.fillText("·",o*g,e*M)}}continue}const s=(e-r)/Math.max(1,S[o]),c=i[Math.min(i.length-1,Math.floor(s*i.length))];if(" "===c&&!a)continue;const l=a?1:Math.max(0,1-4*s),h=w.r+(x.r-w.r)*l|0,f=w.g+(x.g-w.g)*l|0,d=w.b+(x.b-w.b)*l|0;t.globalAlpha=.5+.5*s,t.fillStyle=`rgb(${h},${f},${d})`,t.fillText(a?i[i.length-1]:c,o*g,e*M)}t.globalAlpha=1}var zt=1,qt=2,Pt=4,Bt=8,Ht={3:"─",12:"│",9:"┌",10:"┐",5:"└",6:"┘",11:"┬",7:"┴",13:"├",14:"┤",15:"┼",[zt]:"╶",[qt]:"╴",[Pt]:"╵",[Bt]:"╷"};function Wt(t,e,o,n,r={}){const{fontSize:a=13,pulseColor:i="#ffffff",color:s="#00ff88",density:c=.38,speed:l=1,lightMode:h=!1}=r,f=.62*a,d=1.4*a,m=Math.ceil(e/f),u=Math.ceil(o/d),g=A(s)??{r:0,g:255,b:136},M=A(i)??{r:255,g:255,b:255},p=(t,e)=>{if(R(17*t+1,7*e+2)>c)return 0;let o=0;return t+1<m&&R(17*t+1,7*e+2)>.15&&(o|=1),t-1>=0&&R(17*(t-1)+1,7*e+2)>.15&&(o|=2),e+1<u&&R(17*t+1,7*(e+1)+2)>.15&&(o|=8),e-1>=0&&R(17*t+1,7*(e-1)+2)>.15&&(o|=4),o};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";const v=n*l;for(let e=0;e<u;e++)for(let o=0;o<m;o++){const n=p(o,e);if(0===n)continue;const r=Ht[n]??"·",a=(8*v+40*R(o,23*e))%m,i=(6*v+40*R(17*e,11*o))%u,s=(1&n||2&n)&&Math.abs(o-a)<1.5,c=(4&n||8&n)&&Math.abs(e-i)<1.5,l=s||c,h=.25+.35*R(3*o,5*e);l?(t.globalAlpha=.95,t.fillStyle=`rgb(${M.r},${M.g},${M.b})`):(t.globalAlpha=h,t.fillStyle=`rgb(${g.r},${g.g},${g.b})`),t.fillText(r,o*f,e*d)}t.globalAlpha=1}var jt=["wave","rain","stars","pulse","noise","grid","aurora","silk","void","morph","fire","dna","terrain","circuit"];function Dt(t,e={}){const{type:o="wave",opacity:n=.2,className:r,zIndex:a=0,colorScheme:i="auto",color:s,...c}=e,l="string"==typeof t?document.querySelector(t):t;if(!l)return console.warn("[asciify] asciiBackground: target not found",t),{destroy:()=>{}};const h=l.style.position;"static"===getComputedStyle(l).position&&(l.style.position="relative");const f=document.createElement("canvas");f.style.cssText=["position:absolute","inset:0","width:100%","height:100%",`opacity:${n}`,"pointer-events:none",`z-index:${a}`].join(";"),r&&(f.className=r),l.prepend(f);const d=f.getContext("2d"),m=window.devicePixelRatio||1,u={x:.5,y:.5},g={x:.5,y:.5},M=()=>"light"===i||"dark"!==i&&(()=>{let t=l;for(;t&&t!==document.documentElement.parentElement;){const e=getComputedStyle(t).backgroundColor;if(e&&"transparent"!==e&&"rgba(0, 0, 0, 0)"!==e){const t=e.match(/rgba?\(\s*(\d+)\s*[,\s]\s*(\d+)\s*[,\s]\s*(\d+)/);if(t)return(.299*+t[1]+.587*+t[2]+.114*+t[3])/255>=.4}t=t.parentElement}const e=document.documentElement,o=(e.getAttribute("data-theme")||"").toLowerCase();return"dark"!==o&&("light"===o||!e.classList.contains("dark")&&window.matchMedia("(prefers-color-scheme: light)").matches)})(),p=s?function(t){const e=t.match(/^#([0-9a-f]{3,8})$/i)?.[1];if(e){const t=e.length<=4?e.split("").map(t=>parseInt(t+t,16)):[parseInt(e.slice(0,2),16),parseInt(e.slice(2,4),16),parseInt(e.slice(4,6),16)];return{r:t[0],g:t[1],b:t[2]}}const o=t.match(/rgba?\(\s*(\d+)[,\s]+(\d+)[,\s]+(\d+)/i);return o?{r:+o[1],g:+o[2],b:+o[3]}:null}(s):null,v=()=>({...c,lightMode:void 0!==c.lightMode?c.lightMode:M(),baseColor:p?`rgba(${p.r},${p.g},${p.b},{a})`:c.baseColor}),w={current:v()},b=()=>{w.current="rain"===o||"stars"===o||"pulse"===o||"noise"===o||"grid"===o||"aurora"===o||"silk"===o||"void"===o||"morph"===o?{...c,lightMode:void 0!==c.lightMode?c.lightMode:M(),color:s??c.color}:"fire"===o||"dna"===o?{...c,color:s??c.color}:"terrain"===o||"circuit"===o?{...c,color:s??c.color,lightMode:void 0!==c.lightMode?c.lightMode:M()}:v()};b();const x=window.matchMedia("(prefers-color-scheme: light)"),y=()=>{b()};let S=null;"auto"===i&&(x.addEventListener("change",y),S=new MutationObserver(y),S.observe(document.documentElement,{attributes:!0,attributeFilter:["data-theme","class"]}));const $=()=>{const t=l.getBoundingClientRect();f.width=t.width*m,f.height=t.height*m,d.setTransform(m,0,0,m,0,0)};$();const C=t=>{const e=l.getBoundingClientRect();u.x=(t.clientX-e.left)/e.width,u.y=(t.clientY-e.top)/e.height},E=new ResizeObserver($);E.observe(l),window.addEventListener("mousemove",C);let A=0,T=0;const I=()=>{g.x+=.07*(u.x-g.x),g.y+=.07*(u.y-g.y);const t=l.getBoundingClientRect();"rain"===o?yt(d,t.width,t.height,A,w.current):"stars"===o?St(d,t.width,t.height,A,g,w.current):"pulse"===o?$t(d,t.width,t.height,A,g,w.current):"noise"===o?Ct(d,t.width,t.height,A,g,w.current):"grid"===o?Et(d,t.width,t.height,A,g,w.current):"aurora"===o?At(d,t.width,t.height,A,g,w.current):"silk"===o?Tt(d,t.width,t.height,A,w.current):"void"===o?It(d,t.width,t.height,A,g,w.current):"morph"===o?Rt(d,t.width,t.height,A,w.current):"fire"===o?Ft(d,t.width,t.height,A,w.current):"dna"===o?kt(d,t.width,t.height,A,w.current):"terrain"===o?Lt(d,t.width,t.height,A,w.current):"circuit"===o?Wt(d,t.width,t.height,A,w.current):L(d,t.width,t.height,A,g,w.current),A+=.016,T=requestAnimationFrame(I)};return T=requestAnimationFrame(I),{destroy:()=>{cancelAnimationFrame(T),E.disconnect(),"auto"===i&&(x.removeEventListener("change",y),S?.disconnect()),window.removeEventListener("mousemove",C),f.remove(),l.style.position=h}}}var Ut=Dt;function Ot(t,e={},o,n){const r={...s,...e},{frame:a,cols:i}=et(t,r,o,n);if(!a.length||0===i)return"";const c=[];for(const t of a)c.push(t.map(t=>t.char).join(""));return c.join("\n")}function Vt(t,e={},o,n){const r={...s,...e},{frame:a,cols:i}=et(t,r,o,n);if(!a.length||0===i)return"";const c=[];for(const t of a){let e="";for(const o of t)" "===o.char||o.a<10?e+=" ":e+=`[38;2;${o.r};${o.g};${o.b}m${o.char}[0m`;c.push(e)}return c.join("\n")}function Yt(t,e,o,n="#505050",r=100){if(!t||e<=0||o<=0)return[];const a=A(n)??{r:80,g:80,b:80},i=t,s=i.length;return Array.from({length:o},(t,o)=>Array.from({length:e},(t,n)=>({char:i[(o*e+n)%s],r:a.r,g:a.g,b:a.b,a:r})))}function Xt(t,e,o,n,r={},a){const{fontSize:i=10,lineHeight:c=1.6,color:l="#505050",opacity:h=100,hoverEffect:f="spotlight",hoverStrength:d=.85,hoverRadius:m=.18,hoverColor:u="#d4ff00"}=r;ct(t,Yt(n,Math.max(1,Math.floor(e/i)),Math.max(1,Math.floor(o/(i*c))),l,h),{...s,hoverEffect:f,hoverStrength:d,hoverRadius:m,hoverColor:u},e,o,0,a??null)}function _t(t,{format:e="png",quality:o=.92,scale:n=1}={}){return new Promise((r,a)=>{let i=t;if(1!==n){const e=document.createElement("canvas");e.width=Math.round(t.width*n),e.height=Math.round(t.height*n);const o=e.getContext("2d");if(!o)return void a(new Error("captureSnapshot: could not get 2d context"));o.drawImage(t,0,0,e.width,e.height),i=e}i.toBlob(t=>t?r(t):a(new Error("captureSnapshot: toBlob returned null")),`image/${e}`,o)})}async function Jt(t,e={}){const{filename:o="asciify-snapshot",format:n="png",...r}=e,a=await _t(t,{format:n,...r}),i="jpeg"===n?"jpg":n,s=document.createElement("a");s.href=URL.createObjectURL(a),s.download=`${o}.${i}`,s.click(),setTimeout(()=>URL.revokeObjectURL(s.href),1e4)}async function Nt(t,{fontSize:e=10,style:o="classic",options:n={},liveOptions:r,mirror:i=!0,constraints:c={facingMode:"user"},dpr:l}={}){if(!navigator.mediaDevices?.getUserMedia)throw new Error("asciifyWebcam: getUserMedia is not supported in this browser.");const h=await navigator.mediaDevices.getUserMedia({video:c}),f=document.createElement("video");f.srcObject=h,f.muted=!0,f.playsInline=!0,await new Promise((t,e)=>{f.onloadedmetadata=()=>t(),f.onerror=()=>e(new Error("asciifyWebcam: video stream failed to load.")),f.play().catch(e)});const d={...s,...a[o],...n,fontSize:e},m=t.getContext("2d");if(!m)throw new Error("asciifyWebcam: could not get 2d context from canvas.");const u=l??("undefined"!=typeof window?window.devicePixelRatio:1)??1;1!==u&&m.scale(u,u);let g=null;const M={x:.5,y:.5,intensity:0},p=e=>{const o=t.getBoundingClientRect();g={x:(e.clientX-o.left)/o.width,y:(e.clientY-o.top)/o.height}},v=()=>{g=null};d.hoverStrength>0&&(t.addEventListener("mousemove",p),t.addEventListener("mouseleave",v));let w,b=!1;const x=performance.now(),y=e=>{if(!b){if(f.readyState>=f.HAVE_CURRENT_DATA){const o=t.width/u,n=t.height/u,a=(e-x)/1e3,s=r?{...d,...r()}:d;s.hoverStrength>0?(t.addEventListener("mousemove",p),t.addEventListener("mouseleave",v)):(t.removeEventListener("mousemove",p),t.removeEventListener("mouseleave",v));const{frame:c}=et(f,s,o,n);if(g){const t=g.x-M.x,e=g.y-M.y,o=Math.sqrt(t*t+e*e),n=Math.min(.25,.06+.8*o);M.x+=t*n,M.y+=e*n,M.intensity+=.12*(1-M.intensity)}else M.intensity*=.965,M.intensity<.003&&(M.intensity=0);const l=M.intensity>.003?{x:M.x,y:M.y,intensity:M.intensity}:null;i?(m.save(),m.scale(-1,1),m.translate(-o,0),ct(m,c,s,o,n,a,l),m.restore()):ct(m,c,s,o,n,a,l)}w=requestAnimationFrame(y)}};return w=requestAnimationFrame(y),()=>{b=!0,cancelAnimationFrame(w),t.removeEventListener("mousemove",p),t.removeEventListener("mouseleave",v),h.getTracks().forEach(t=>t.stop()),f.srcObject=null}}var Kt={A:[28,54,99,127,99,99,99],B:[126,99,99,126,99,99,126],C:[62,99,96,96,96,99,62],D:[124,102,99,99,99,102,124],E:[127,96,96,124,96,96,127],F:[127,96,96,124,96,96,96],G:[62,99,96,111,99,99,62],H:[99,99,99,127,99,99,99],I:[127,8,8,8,8,8,127],J:[63,6,6,6,102,102,60],K:[99,102,108,120,108,102,99],L:[96,96,96,96,96,96,127],M:[99,119,107,107,99,99,99],N:[99,115,107,103,99,99,99],O:[62,99,99,99,99,99,62],P:[126,99,99,126,96,96,96],Q:[62,99,99,99,107,102,61],R:[126,99,99,126,108,102,99],S:[62,99,96,62,3,99,62],T:[127,8,8,8,8,8,8],U:[99,99,99,99,99,99,62],V:[99,99,99,99,54,28,8],W:[99,99,99,107,107,54,20],X:[99,54,28,8,28,54,99],Y:[99,99,54,28,8,8,8],Z:[127,3,6,12,24,48,127],a:[0,0,60,3,62,99,61],b:[96,96,124,99,99,99,124],c:[0,0,62,96,96,96,62],d:[3,3,31,99,99,99,31],e:[0,0,62,99,127,96,62],f:[30,48,48,126,48,48,48],g:[0,0,63,99,63,3,62],h:[96,96,124,99,99,99,99],i:[8,0,24,8,8,8,28],j:[4,0,12,4,4,36,24],k:[96,96,102,108,120,108,102],l:[24,8,8,8,8,8,28],m:[0,0,92,107,107,99,99],n:[0,0,94,99,99,99,99],o:[0,0,62,99,99,99,62],p:[0,0,126,99,126,96,96],q:[0,0,63,99,63,3,3],r:[0,0,94,99,96,96,96],s:[0,0,62,96,62,3,124],t:[48,48,126,48,48,48,30],u:[0,0,99,99,99,103,59],v:[0,0,99,99,54,28,8],w:[0,0,99,99,107,54,20],x:[0,0,99,54,28,54,99],y:[0,0,99,99,63,3,62],z:[0,0,127,6,12,24,127],0:[62,99,103,107,115,99,62],1:[8,24,56,8,8,8,62],2:[62,99,3,6,24,48,127],3:[62,99,3,30,3,99,62],4:[6,14,22,38,127,6,6],5:[127,96,126,3,3,99,62],6:[62,99,96,126,99,99,62],7:[127,3,6,12,24,24,24],8:[62,99,99,62,99,99,62],9:[62,99,99,63,3,99,62]," ":[0,0,0,0,0,0,0],"!":[24,24,24,24,24,0,24],"?":[62,99,3,14,8,0,8],".":[0,0,0,0,0,24,24],",":[0,0,0,0,0,24,48],";":[0,24,24,0,24,24,48],":":[0,24,24,0,24,24,0],"-":[0,0,0,62,0,0,0],_:[0,0,0,0,0,0,127],"'":[24,24,32,0,0,0,0],'"':[54,54,36,0,0,0,0],"`":[24,8,0,0,0,0,0],")":[24,12,6,6,6,12,24],"(":[12,24,48,48,48,24,12],"[":[60,48,48,48,48,48,60],"]":[30,6,6,6,6,6,30],"{":[14,24,24,48,24,24,14],"}":[56,12,12,6,12,12,56],"/":[3,6,12,24,48,96,0],"\\":[96,48,24,12,6,3,0],"|":[8,8,8,8,8,8,8],"+":[0,8,8,62,8,8,0],"=":[0,0,62,0,62,0,0],"*":[0,42,28,127,28,42,0],"#":[36,36,127,36,127,36,36],"@":[62,99,111,107,111,96,62],"&":[24,36,24,60,74,68,58],"%":[99,38,4,8,16,50,99],$:[8,62,72,62,9,62,8],"^":[8,20,34,0,0,0,0],"~":[0,0,50,76,0,0,0],"<":[6,12,24,48,24,12,6],">":[48,24,12,6,12,24,48]},Gt=[127,65,65,65,65,65,127];function Qt(t){return Kt[t]??Kt[t.toUpperCase()]??Gt}function Zt(t,e={}){if(!t)return"";const{char:o="█",scale:n=1}=e,r=[...o][0]??"█",a=Math.max(1,Math.floor(n)),i=7*a,s=a,c=Array.from({length:i},()=>"");for(let e=0;e<t.length;e++){const o=Qt(t[e]);for(let t=0;t<7;t++){const e=o[t];let n="";for(let t=6;t>=0;t--)n+=(e>>t&1?r:" ").repeat(a);for(let e=0;e<a;e++)c[t*a+e]+=n}if(e<t.length-1)for(let t=0;t<i;t++)c[t]+=" ".repeat(s)}return c.join("\n")}function te(t,e,o={}){const{color:n="#d4ff00",bgColor:r,fontSize:a=10}=o,i=Zt(e,o);if(!i)return;const s=i.split("\n"),c=Math.max(...s.map(t=>[...t].length));t.width=Math.ceil(c*a*.6),t.height=Math.ceil(s.length*a);const l=t.getContext("2d");r&&"transparent"!==r?(l.fillStyle=r,l.fillRect(0,0,t.width,t.height)):l.clearRect(0,0,t.width,t.height),l.fillStyle=n,l.font=`${a}px monospace`,l.textBaseline="top",s.forEach((t,e)=>l.fillText(t,0,e*a))}export{a as ART_STYLE_PRESETS,jt as BACKGROUND_TYPES,n as CHARSETS,r as CHARSET_SEQUENCES,s as DEFAULT_OPTIONS,c as HOVER_PRESETS,i as LIVING_STYLE_PRESETS,o as PALETTE_THEMES,Dt as asciiBackground,Ot as asciiText,Vt as asciiTextAnsi,vt as asciify,wt as asciifyGif,xt as asciifyLiveVideo,Zt as asciifyText,bt as asciifyVideo,Nt as asciifyWebcam,Yt as buildTextFrame,_t as captureSnapshot,N as clearAsciifyCaches,ut as createVideoScrollScrub,it as gifToAsciiFrames,st as gifToAsciiTextFrames,et as imageToAsciiFrame,ot as imageToAsciiTextFrame,Ut as mountWaveBackground,At as renderAuroraBackground,Wt as renderCircuitBackground,kt as renderDnaBackground,Ft as renderFireBackground,ct as renderFrameToCanvas,Et as renderGridBackground,Rt as renderMorphBackground,Ct as renderNoiseBackground,$t as renderPulseBackground,yt as renderRainBackground,Tt as renderSilkBackground,St as renderStarsBackground,Lt as renderTerrainBackground,Xt as renderTextBackground,nt as renderTextFrameToCanvas,te as renderTextToCanvas,It as renderVoidBackground,L as renderWaveBackground,Jt as snapshotAndDownload,rt as videoToAsciiFrames,at as videoToAsciiTextFrames};//# sourceMappingURL=index.js.map
|
|
1
|
+
import{parseGIF as t,decompressFrames as e}from"gifuct-js";var o={dracula:{name:"Dracula",accent:"#bd93f9",bg:"#282a36",fg:"#f8f8f2"},monokai:{name:"Monokai",accent:"#a6e22e",bg:"#272822",fg:"#f8f8f2"},nord:{name:"Nord",accent:"#88c0d0",bg:"#2e3440",fg:"#eceff4"},catppuccin:{name:"Catppuccin",accent:"#cba6f7",bg:"#1e1e2e",fg:"#cdd6f4"},solarized:{name:"Solarized",accent:"#268bd2",bg:"#002b36",fg:"#839496"},gruvbox:{name:"Gruvbox",accent:"#b8bb26",bg:"#282828",fg:"#ebdbb2"}},n={standard:" .:-=+*#%@",blocks:" ░▒▓█",minimal:" .:+",dense:" .'`^\",:;Il!i><~+_-?][}{1)(|/tfjrxnuvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$",binary:"01",dots:" ⠁⠃⠇⡇⣇⣧⣷⣿",letters:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",claudeCode:" ╔╗╚╝║═╠╣╦╩╬░▒▓█│─┌┐└┘├┤┬┴┼",box:" ▪◾◼■█",lines:" ˗‐–—―━",braille:" ⠁⠂⠃⠄⠅⠆⠇⠈⠉⠊⠋⠌⠍⠎⠏⠐⠑⠒⠓⠔⠕⠖⠗⠘⠙⠚⠛⠜⠝⠞⠟⠠⠡⠢⠣⠤⠥⠦⠧⠨⠩⠪⠫⠬⠭⠮⠯⠰⠱⠲⠳⠴⠵⠶⠷⠸⠹⠺⠻⠼⠽⠾⠿⡀⡁⡂⡃⡄⡅⡆⡇⣀⣁⣂⣃⣄⣅⣆⣇⣈⣉⣊⣋⣌⣍⣎⣏⣐⣑⣒⣓⣔⣕⣖⣗⣘⣙⣚⣛⣜⣝⣞⣟⣠⣡⣢⣣⣤⣥⣦⣧⣨⣩⣪⣫⣬⣭⣮⣯⣰⣱⣲⣳⣴⣵⣶⣷⣸⣹⣺⣻⣼⣽⣾⣿",katakana:" ヲァィゥェォャュョッアイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワン",musical:" ♩♪♫♬♭♮♯",emoji:" ⬛🟫🟥🟧🟨🟩🟦🟪⬜",circles:" .·:∘○◦°•∙",shadows:" ·∘◦○◎⊙●◉",starfield:" ˙·∘∗✦✧★◆●",geometric:" ·△▷◇◈◆▣■█",pipes:" ╶─┐└├┤┬┴┼╬▒▓█",waves:" ˜∼≈〰≋∿∾∭∫",shards:" ╱╲╳◤◥◣◢△▲◆◼█",smoke:" ·˙⁚⁖∶∷⋮⋰⋱∴∵",ascii:" .'`^\",:;~-_+<>i!lI?/\\|()[]{}1tfjrxnuvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$",interface:" ·•-–—+=:;<>[]{}()⌘⌥⇧⌃↵↗↘◇◆◈□■",prompt:" .:;>_`/\\|{}[]()=+*#@$",data:" ·∙•◦○●◇◆◈▱▰▣█",humanist:" ·˙,:;∴∵∷∶⁚⋮⋯∼≈≋∞",mesh:" ·╶╴╷╵─│┌┐└┘├┤┬┴┼╬░▒▓█"},r={cosmic:[n.starfield,n.circles,n.shadows],rain:[n.katakana,n.braille,n.binary],terminal:[n.pipes,n.claudeCode,n.standard],crystal:[n.shards,n.geometric,n.blocks],fluid:[n.waves,n.smoke,n.circles],pulse:[n.dense,n.standard,n.blocks],dream:[n.braille,n.shadows,n.smoke],angular:[n.geometric,n.shards,n.starfield],assistant:[n.interface,n.prompt,n.data],signal:[n.mesh,n.data,n.ascii],editorial:[n.humanist,n.waves,n.smoke]},a={classic:{renderMode:"ascii",charset:n.standard,colorMode:"grayscale"},particles:{renderMode:"dots",colorMode:"fullcolor",dotSizeRatio:.8},letters:{renderMode:"ascii",charset:n.letters,colorMode:"fullcolor"},claudeCode:{renderMode:"ascii",charset:n.claudeCode,colorMode:"accent",accentColor:"#f97316"},art:{renderMode:"ascii",charset:n.dense,colorMode:"fullcolor"},terminal:{renderMode:"ascii",charset:n.standard,colorMode:"matrix"},box:{renderMode:"ascii",charset:n.box,colorMode:"grayscale"},lines:{renderMode:"ascii",charset:n.lines,colorMode:"fullcolor"},braille:{renderMode:"ascii",charset:n.braille,colorMode:"fullcolor"},katakana:{renderMode:"ascii",charset:n.katakana,colorMode:"matrix"},musical:{renderMode:"ascii",charset:n.musical,colorMode:"accent",accentColor:"#e040fb"},emoji:{renderMode:"ascii",charset:n.emoji,colorMode:"fullcolor"},circles:{renderMode:"ascii",charset:n.circles,colorMode:"accent",accentColor:"#d4ff00"},shadows:{renderMode:"ascii",charset:n.shadows,colorMode:"accent",accentColor:"#50a0ff"},starfield:{renderMode:"ascii",charset:n.starfield,colorMode:"fullcolor"},geometric:{renderMode:"ascii",charset:n.geometric,colorMode:"grayscale"},pipes:{renderMode:"ascii",charset:n.pipes,colorMode:"accent",accentColor:"#00ff88"},waves:{renderMode:"ascii",charset:n.waves,colorMode:"fullcolor"},shards:{renderMode:"ascii",charset:n.shards,colorMode:"grayscale"},smoke:{renderMode:"ascii",charset:n.smoke,colorMode:"accent",accentColor:"#c850ff"},ascii:{renderMode:"ascii",charset:n.ascii,colorMode:"grayscale"},interface:{renderMode:"ascii",charset:n.interface,colorMode:"accent",accentColor:"#f4f1ea"},prompt:{renderMode:"ascii",charset:n.prompt,colorMode:"matrix"},data:{renderMode:"ascii",charset:n.data,colorMode:"fullcolor"},humanist:{renderMode:"ascii",charset:n.humanist,colorMode:"accent",accentColor:"#d6ccc2"},mesh:{renderMode:"ascii",charset:n.mesh,colorMode:"accent",accentColor:"#8fd3ff"}},i={agentField:{...a.interface,charsetFrames:r.assistant,charsetFps:1.6,animationStyle:"breathe",animationSpeed:.75,ditherStrength:.12,hoverEffect:"glow",hoverStrength:.42,hoverRadius:.18,hoverColor:"#f4f1ea",normalize:!0},liquidSignal:{...a.data,charsetFrames:r.signal,charsetFps:2.4,animationStyle:"melt",animationSpeed:.65,ditherStrength:.45,hoverEffect:"repel",hoverStrength:.55,hoverRadius:.22,hoverColor:"#8fd3ff",normalize:!0},cursorGravity:{...a.mesh,charsetFrames:r.angular,charsetFps:1.2,animationStyle:"orbit",animationSpeed:.9,ditherStrength:.2,hoverEffect:"attract",hoverStrength:.82,hoverRadius:.24,hoverColor:"#ffffff",normalize:!0},editorialPulse:{...a.humanist,charsetFrames:r.editorial,charsetFps:.9,animationStyle:"ripple",animationSpeed:.55,ditherStrength:.18,hoverEffect:"spotlight",hoverStrength:.35,hoverRadius:.2,hoverColor:"#fff8ea",normalize:!0},terminalFlow:{...a.prompt,charsetFrames:r.terminal,charsetFps:3,animationStyle:"rain",animationSpeed:1.1,ditherStrength:.22,hoverEffect:"glitchText",hoverStrength:.65,hoverRadius:.16,hoverColor:"#d4ff00",hoverText:["BUILD","SHIP","RUN","ASK","MODEL"],normalize:!0}},s={fontSize:10,charSpacing:1,brightness:0,contrast:0,charset:n.standard,colorMode:"grayscale",accentColor:"#d4ff00",invert:!1,renderMode:"ascii",animationStyle:"none",animationSpeed:1,dotSizeRatio:.8,ditherStrength:0,charAspect:.55,normalize:!1,hoverStrength:0,hoverRadius:.2,hoverEffect:"spotlight",hoverColor:"#ffffff",hoverShape:"circle",hoverText:"ASCIIFY",artStyle:"classic",customText:"",chromaKey:null,chromaKeyTolerance:60},c={none:{label:"Off",options:{hoverStrength:0,hoverEffect:"spotlight",hoverRadius:.2,hoverColor:"#ffffff"}},subtle:{label:"Subtle",options:{hoverStrength:.25,hoverEffect:"glow",hoverRadius:.12,hoverColor:"#ffffff"}},flashlight:{label:"Flashlight",options:{hoverStrength:.6,hoverEffect:"spotlight",hoverRadius:.15,hoverColor:"#fffbe6"}},magnifier:{label:"Magnifier",options:{hoverStrength:.7,hoverEffect:"magnify",hoverRadius:.12,hoverColor:"#ffffff"}},forceField:{label:"Force Field",options:{hoverStrength:.7,hoverEffect:"repel",hoverRadius:.15,hoverColor:"#a0e8ff"}},neon:{label:"Neon",options:{hoverStrength:.6,hoverEffect:"colorShift",hoverRadius:.15,hoverColor:"#d946ef"}},fire:{label:"Fire",options:{hoverStrength:.7,hoverEffect:"spotlight",hoverRadius:.15,hoverColor:"#ff6b2b"}},ice:{label:"Ice",options:{hoverStrength:.5,hoverEffect:"glow",hoverRadius:.15,hoverColor:"#60d5f7"}},gravity:{label:"Gravity",options:{hoverStrength:.7,hoverEffect:"attract",hoverRadius:.18,hoverColor:"#a5d6ff"}},shatter:{label:"Shatter",options:{hoverStrength:.8,hoverEffect:"shatter",hoverRadius:.14,hoverColor:"#ff6090"}},ghost:{label:"Ghost",options:{hoverStrength:.55,hoverEffect:"trail",hoverRadius:.2,hoverColor:"#b39ddb"}},glitchReveal:{label:"Glitch Reveal",options:{hoverStrength:.8,hoverEffect:"glitchText",hoverRadius:.18,hoverColor:"#a3e635"}}};function l(t,e){const o=document.createElement("canvas");o.width=t,o.height=e;const n=o.getContext("2d",{willReadFrequently:!0});return{canvas:o,ctx:n}}function h(t,e,o){let n=t+255*e;return n=259*(255*o+255)/(255*(259-255*o))*(n-128)+128,Math.max(0,Math.min(255,n))}function f(t,e,o){const n=o?1-t/255:t/255,r=[...e],a=Math.floor(n*(r.length-1));return r[Math.max(0,Math.min(r.length-1,a))]}function d(t,e,o,n,r,a){if((a?1-t/255:t/255)<.12)return" ";const i=[...e];return i[(n*r+o)%i.length]}var m=[[0,8,2,10],[12,4,14,6],[3,11,1,9],[15,7,13,5]];function u(t,e,o,n){if(n<=0)return t;const r=(m[o%4][e%4]/16-.5)*n*128;return Math.max(0,Math.min(255,t+r))}var g=new Array(256),M=new Array(256);for(let t=0;t<256;t++)g[t]=`rgb(${t},${t},${t})`,M[t]=`rgb(0,${t},0)`;function p(t,e,o,n,r,a=!1){switch(e){case"fullcolor":return`rgb(${t.r},${t.g},${t.b})`;case"matrix":return M[.299*t.r+.587*t.g+.114*t.b|0];case"accent":return`rgb(${o},${n},${r})`;default:{const e=.299*t.r+.587*t.g+.114*t.b|0;return g[e]}}}var v=[0,0,0];function w(t,e,o,n,r,a=!1){switch(e){case"fullcolor":v[0]=t.r,v[1]=t.g,v[2]=t.b;break;case"matrix":{const e=.299*t.r+.587*t.g+.114*t.b|0;v[0]=0,v[1]=e,v[2]=0;break}case"accent":v[0]=o,v[1]=n,v[2]=r;break;default:{const e=.299*t.r+.587*t.g+.114*t.b|0;v[0]=e,v[1]=e,v[2]=e;break}}return v}function b(t){const e=t.match(/rgba?\(\s*(\d+)\s*[,\s]\s*(\d+)\s*[,\s]\s*(\d+)(?:\s*[,/]\s*([\d.]+))?\s*\)/);return e?{r:+e[1],g:+e[2],b:+e[3],a:void 0!==e[4]?+e[4]:1}:null}function x(t){let e=t;for(;e&&e!==document.documentElement.parentElement;){const t=getComputedStyle(e).backgroundColor;if(t&&"transparent"!==t&&"rgba(0, 0, 0, 0)"!==t){const e=b(t);if(e&&e.a>.1)return e}e=e.parentElement}return null}function y(t){if(t){const e=x(t);if(e){return(.299*e.r+.587*e.g+.114*e.b)/255<.4}}if("undefined"!=typeof document){const t=document.documentElement,e=(t.getAttribute("data-theme")||"").toLowerCase();if("dark"===e)return!0;if("light"===e)return!1;if(t.classList.contains("dark"))return!0;if(document.body){const t=x(document.body);if(t){return(.299*t.r+.587*t.g+.114*t.b)/255<.4}}}return"undefined"!=typeof window&&window.matchMedia("(prefers-color-scheme: dark)").matches}function S(t){if("string"!=typeof t)return t;const e=document.createElement("canvas");e.width=1,e.height=1;const o=e.getContext("2d");o.fillStyle=t,o.fillRect(0,0,1,1);const n=o.getImageData(0,0,1,1).data;return{r:n[0],g:n[1],b:n[2]}}function $(t,e,o,n,r,a,i){if("none"===a)return 1;const s=r*i;switch(a){case"wave":return.3+.7*(.6*(.5*Math.sin(t/o*Math.PI*4+3*s)+.5)+.4*(.5*Math.sin(e/n*Math.PI*3+2*s)+.5));case"pulse":{const r=o/2,a=n/2,i=Math.sqrt((t-r)**2+(e-a)**2),c=Math.sqrt(r**2+a**2);return.2+.8*(.5*Math.sin(i/c*Math.PI*6-4*s)+.5)}case"rain":return.1+.9*(.5*Math.sin(e/n*Math.PI*8-5*s+.3*t)+.5)*(.3*Math.sin(t/o*Math.PI*2+s)+.7);case"breathe":{const o=.3*Math.sin(2*s)+.7,n=.1*Math.sin(.1*(t+e)+s);return Math.max(.1,Math.min(1,o+n))}case"sparkle":{const o=43758.5453*Math.sin(127.1*t+311.7*e+43758.5453*Math.floor(8*s)),n=o-Math.floor(o);return n>.7?1:.15+.4*n}case"glitch":{const t=Math.floor(e/(.05*n)),o=43758.5453*Math.sin(43.23*t+17.89*Math.floor(6*s));if(o-Math.floor(o)>.85){const e=.5*Math.sin(30*s+t)+.5;return e<.3?0:e}return 1}case"spiral":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.atan2(c,i),h=Math.sqrt(i*i+c*c),f=Math.sqrt(r*r+a*a);return.15+.85*(.5*Math.sin(3*l+h/f*Math.PI*8-3*s)+.5)}case"typewriter":{const r=o*n,a=e*o+t-.5*s%1*r*1.3;if(a>0)return 0;const i=Math.max(0,1+a/(.15*r));return Math.min(1,i)}case"scatter":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.sqrt(i*i+c*c)/Math.sqrt(r*r+a*a),h=.5*Math.sin(1.5*s)+.5;return l>h?Math.max(0,1-3*(l-h)):.7+.3*Math.sin(10*l-2*s)}case"waveField":default:return 1;case"ripple":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.sqrt(i*i+c*c),h=Math.sqrt(r*r+a*a);return.1+.9*(.5*Math.sin(l/h*Math.PI*10-5*s)+.5)*(.4+.6*(1-Math.min(1,l/(1.1*h))))}case"melt":{const o=e/n*Math.PI;return.05+(.5*Math.sin(o-1.8*s+.15*t)+.5)*(1-.6*(Math.max(0,e/n-.1)/.9))*.95}case"orbit":{const r=o/2,a=n/2,i=t-r,c=e-a,l=Math.atan2(c,i),h=Math.sqrt(i*i+c*c)/Math.sqrt(r*r+a*a);return.1+.9*(.5*Math.sin(2*l+6*h-2.5*s)+.5)}case"cellular":{const o=Math.floor(4*s),n=(t,e)=>{const n=43758.5453*Math.sin(127.1*t+311.7*e+43758.5453*o);return n-Math.floor(n)>.38?1:0},r=n(t,e),a=n(t-1,e)+n(t+1,e)+n(t,e-1)+n(t,e+1)+n(t-1,e-1)+n(t+1,e-1)+n(t-1,e+1)+n(t+1,e+1);return 1===(1===r?2===a||3===a?1:0:3===a?1:0)?1:.05}}}var C={scale:1,offsetX:0,offsetY:0,glow:0,colorBlend:0,proximity:0};function E(t,e,o,n,r,a,i,s,c="spotlight",l=.5,h="circle"){const f=t-o,d=e-n,m=.08+.35*l+.04*a;let u,g;if("box"===h){const t=Math.abs(f),e=Math.abs(d);u=Math.max(t,e),g=m}else u=Math.sqrt(f*f+d*d),g=m;if(u>=g)return C.scale=1,C.offsetX=0,C.offsetY=0,C.glow=0,C.colorBlend=0,C.proximity=0,C;const M=function(t){return t*t*(3-2*t)}(1-u/g)*r;let p=1,v=0,w=0,b=0,x=0;switch(c){case"spotlight":{p=1+M*a*1.8;const t=Math.atan2(d,f),e=M*M*a*.6;v=Math.cos(t)*e*i,w=Math.sin(t)*e*s,b=M*a*.4,x=M*M*a*.25;break}case"magnify":p=1+M*a*2.5,b=M*a*.15;break;case"repel":{p=1+M*a*.3;const t=Math.atan2(d,f),e=M*M*a*1.2;v=Math.cos(t)*e*i,w=Math.sin(t)*e*s;break}case"glow":b=M*a*.8,x=M*a*.4;break;case"colorShift":p=1+M*a*.4,b=M*a*.2,x=M*a*.7;break;case"attract":{const t=Math.atan2(d,f),e=M*M*a*1;v=-Math.cos(t)*e*i,w=-Math.sin(t)*e*s,b=M*a*.3;break}case"shatter":{const t=Math.atan2(d,f),e=.5*Math.sin(43.7*f+29.3*d),o=M*a*1.4*(.7+.3*e);v=Math.cos(t+e)*o*i,w=Math.sin(t+e)*o*s,p=Math.max(.1,1-M*a*.6),b=M*a*.25;break}case"trail":x=M*a*.9,b=M*a*.6,p=1+M*a*.15;break;case"glitchText":p=1,b=M*a*.5,x=M*a*.6}return C.scale=p,C.offsetX=v,C.offsetY=w,C.glow=b,C.colorBlend=x,C.proximity=M,C}function A(t){const e=t.match(/^#([0-9a-f]{3,8})$/i)?.[1];if(e){const t=e.length<=4?e.split("").map(t=>parseInt(t+t,16)):[parseInt(e.slice(0,2),16),parseInt(e.slice(2,4),16),parseInt(e.slice(4,6),16)];return{r:t[0],g:t[1],b:t[2]}}const o=t.match(/rgba?\(\s*(\d+)[,\s]+(\d+)[,\s]+(\d+)/i);return o?{r:+o[1],g:+o[2],b:+o[3]}:null}function T(t){return t*t*t*(t*(6*t-15)+10)}function I(t,e,o){return t+(e-t)*o}function R(t,e){let o=127*t+311*e;return o^=o>>13,(o*(o*o*15731+789221)+1376312589&2147483647)/2147483647}function F(t,e){const o=Math.floor(t),n=Math.floor(e),r=e-n,a=T(t-o),i=T(r),s=R(o,n),c=R(o+1,n),l=R(o,n+1),h=R(o+1,n+1);return I(I(s,c,a),I(l,h,a),i)}function k(t,e){return(.5*F(t,e)+.25*F(2.1*t,2.1*e)+.125*F(4.3*t,4.3*e))/.875}function L(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=13,charAspect:s=.62,lineHeightRatio:c=1.4,chars:l=" .:-=+*#%@",baseColor:h=null,accentColor:f,accentThreshold:d=.52,mouseInfluence:m=.55,mouseFalloff:u=2.8,speed:g=1,vortex:M=!0,sparkles:p=!0,breathe:v=!0,lightMode:w=!1}=a,b=f??(w?"#6b8700":"#d4ff00"),x=i*s,y=i*c,S=Math.ceil(e/x),$=Math.ceil(o/y),C=r.x,E=r.y;let A=212,T=255,I=0;{const t=b.replace("#","");6===t.length&&(A=parseInt(t.slice(0,2),16),T=parseInt(t.slice(2,4),16),I=parseInt(t.slice(4,6),16))}t.clearRect(0,0,e,o),t.font=`${i}px "JetBrains Mono", monospace`,t.textBaseline="top";const F=n*g,L=v?.12*(.5*Math.sin(.22*F)+.5):0;for(let e=0;e<$;e++)for(let o=0;o<S;o++){const n=o/S,r=e/$,a=.045,i=.08*F,s=.06,c=.45*((.5*Math.sin(.08*o+.05*e+.6*F)+.5+(.5*Math.sin(.03*o-.07*e+.4*F)+.5)+(.5*Math.sin(.05*o+.03*e+.8*F)+.5))/3)+.35*(.5*k(o*a+i,e*a*1.4-.7*i)+.5)+.2*(.5*Math.sin((o+.65*e)*s+1.1*F)+.5)+L,f=n-C,g=r-E,v=Math.sqrt(f*f+g*g);let b=0;if(M&&v<.35){const t=Math.atan2(g,f),e=Math.sin(4*t+2.2*F-14*v),o=Math.max(0,1-v/.35);b=e*o*o*.22}const z=c*(1-m)+(Math.max(0,1-v*u)+.5*b)*m+.15*b,q=Math.min(1,Math.max(0,z));let P=q;if(p&&q>.72){const t=Math.floor(8*F),n=R(7*o+3*t,11*e+t);n>.88&&(P=Math.min(1,q+4*(n-.88)))}const B=Math.floor(P*(l.length-1));if(" "===l[B])continue;const H=.015+.07*P;if(P>d){const e=Math.min(w?.9:.28,H*(w?14:2.8));t.fillStyle=`rgba(${A},${T},${I},${e})`}else t.fillStyle=h?h.replace("{a}",String(H)):w?`rgba(55,55,55,${7*H})`:`rgba(255,255,255,${H})`;t.fillText(l[B],o*x,e*y)}}var z=new WeakMap,q=new WeakMap,P=null,B=null;function H(t,e){if(!P||!B){const o=l(t,e);P=o.canvas,B=o.ctx}return P.width!==t&&(P.width=t),P.height!==e&&(P.height=e),B}var W=new Map,j=new Map,D=new Map,U=new WeakMap,O=new WeakMap,V=new WeakMap;function Y(t){let e=W.get(t);return e||(e=[...t],W.set(t,e)),e}function X(t,e,o){const n=o?1-t/255:t/255,r=Math.floor(n*(e.length-1));return e[Math.max(0,Math.min(e.length-1,r))]??" "}function _(t,e,o,n){const r=`${t}\0${e?1:0}\0${o}\0${n}`;let a=j.get(r);if(!a){const i=Y(t);a=new Array(256);for(let t=0;t<256;t++)a[t]=X(h(t,o,n),i,e);j.set(r,a)}return a}function J(t){let e=D.get(t);if(!e){const o=Y(t),n=Math.max(1,o.length);e=new Map;for(let t=0;t<o.length;t++)e.has(o[t])||e.set(o[t],Math.max(.08,(t+.5)/n));D.set(t,e)}return e}function N(){W.clear(),j.clear(),D.clear(),P=null,B=null}function K(t,e){return"auto"!==t?t:!y(e)}function G(t){const e=t.match(/^#([0-9a-fA-F]{3,6})$/);if(e){let t=e[1];if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6===t.length)return t}const o=t.match(/rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/);return o?[o[1],o[2],o[3]].map(t=>parseInt(t).toString(16).padStart(2,"0")).join(""):null}function Q(t){const e=t||"auto";if("auto"!==e)return e.replace("#","");if("undefined"!=typeof document){const t=getComputedStyle(document.documentElement);for(const e of["--accent-color","--color-accent","--accent","--color-primary","--primary","--brand-color"]){const o=G(t.getPropertyValue(e).trim());if(o)return o}const e=G(getComputedStyle(document.body).accentColor??"");if(e)return e}return y("undefined"!=typeof document?document.body:null)?"faf9f7":"0d0d0d"}function Z(t,e,o){return Math.max(e,Math.min(o,t))}function tt(t,e,o){if(!t)return{x:0,y:0,width:e,height:o};const n=t.unit??"percent",r=!1!==t.preserveAspect,a=t=>void 0===t?void 0:"percent"===n?t*e:t,i=t=>void 0===t?void 0:"percent"===n?t*o:t,s=Z(a(t.left)??0,0,e-1),c=Z(a(t.right)??0,0,e-s-1),l=Z(i(t.top)??0,0,o-1),h=Z(i(t.bottom)??0,0,o-l-1),f=void 0!==t.left||void 0!==t.right||void 0!==t.top||void 0!==t.bottom,d=Math.max(1,e-s-c),m=Math.max(1,o-l-h),u=f?d:a(t.width),g=f?m:i(t.height);let M=u??e,p=g??o;if(r){const t=M/e,n=p/o,r=Math.min(t,n),a=void 0===u?n:void 0===g?t:r;M=e*a,p=o*a}M=Z(M,1,f?d:e),p=Z(p,1,f?m:o);const v=t.anchor??"center",w=a(t.x),b=i(t.y),x=f?s:0,y=f?l:0,S=f?d:e,$=f?m:o,C=v.endsWith("left")||"left"===v?0:v.endsWith("right")||"right"===v?S-M:(S-M)/2,E=v.startsWith("top")||"top"===v?0:v.startsWith("bottom")||"bottom"===v?$-p:($-p)/2;return{x:Z(w??x+C,0,Math.max(0,e-M)),y:Z(b??y+E,0,Math.max(0,o-p)),width:M,height:p}}function et(t,e,o,n){const r=t instanceof HTMLVideoElement?t.videoWidth:t.width,a=t instanceof HTMLVideoElement?t.videoHeight:t.height;if(0===r||0===a)return{frame:[],cols:0,rows:0};const i=e.charAspect,s=e.fontSize*e.charSpacing,c=e.fontSize/i*e.charSpacing,l=o||r,f=n||a,m=Math.floor(l/s),g=Math.floor(f/c);if(m<=0||g<=0)return{frame:[],cols:0,rows:0};const M=tt(e.sourceCrop,r,a),p=Math.max(1,Math.min(Math.floor(2048/m),Math.floor(M.width/m))),v=Math.max(1,Math.min(Math.floor(2048/g),Math.floor(M.height/g))),w=m*p,b=g*v,x=H(w,b);x.drawImage(t,M.x,M.y,M.width,M.height,0,0,w,b);const y=x.getImageData(0,0,w,b).data,$=e.chromaKey,C=null!=$&&!1!==$,E=!0===$,A="blue-screen"===$;let T=null,I=0;!C||E||A||(T=S($),I=(e.chromaKeyTolerance??60)**2);let R=0,F=255;if(e.normalize){let t=255,e=0;for(let o=0;o<y.length;o+=4){if(C){const t=y[o],e=y[o+1],n=y[o+2];let r=!1;if(E)r=e>1.4*t&&e>1.4*n&&e>80;else if(A)r=n>1.4*t&&n>1.4*e&&n>80;else if(null!==T){const o=t-T.r,a=e-T.g,i=n-T.b;r=o*o+a*a+i*i<=I}if(r)continue}const n=.299*y[o]+.587*y[o+1]+.114*y[o+2];n<t&&(t=n),n>e&&(e=n)}R=t,F=e>t?e-t:255}const k=[],L=K(e.invert),z=C&&e.charset.replace(/ /g,"")||e.charset,q=Y(z),P=e.customText?null:_(z,L,e.brightness,e.contrast),B=p*v;for(let t=0;t<g;t++){const o=[];for(let n=0;n<m;n++){let r=0,a=0,i=0,s=0,c=0;for(let e=0;e<v;e++){const o=(t*v+e)*w;for(let t=0;t<p;t++){const e=4*(o+n*p+t),l=y[e],h=y[e+1],f=y[e+2],d=y[e+3];if(C){let t=!1;if(E)t=h>1.4*l&&h>1.4*f&&h>80;else if(A)t=f>1.4*l&&f>1.4*h&&f>80;else if(null!==T){const e=l-T.r,o=h-T.g,n=f-T.b;t=e*e+o*o+n*n<=I}if(t){c++;continue}}r+=l,a+=h,i+=f,s+=d}}if(C&&c>B/2){o.push({char:" ",r:0,g:0,b:0,a:0});continue}const l=B-c,f=l>0?r/l:0,g=l>0?a/l:0,M=l>0?i/l:0,b=l>0?s/l:0,x=.299*f+.587*g+.114*M,S=e.normalize?(x-R)/F*255:x,$=h(S,e.brightness,e.contrast),k=e.ditherStrength>0?u($,n,t,e.ditherStrength):$,z=e.customText?d(k,e.customText,n,t,m,L):e.ditherStrength>0?X(k,q,L):P[Math.max(0,Math.min(255,0|S))];o.push({char:z,r:f,g:g,b:M,a:b,lum:k})}k.push(o)}return{frame:k,cols:m,rows:g}}function ot(t,e,o,n){const r=t instanceof HTMLVideoElement?t.videoWidth:t.width,a=t instanceof HTMLVideoElement?t.videoHeight:t.height;if(0===r||0===a)return{rows:[],cols:0,rowCount:0};const i=e.charAspect,s=e.fontSize*e.charSpacing,c=e.fontSize/i*e.charSpacing,l=o||r,f=n||a,d=Math.floor(l/s),m=Math.floor(f/c);if(d<=0||m<=0)return{rows:[],cols:0,rowCount:0};const g=d,M=m,p=H(g,M),v=tt(e.sourceCrop,r,a);p.drawImage(t,v.x,v.y,v.width,v.height,0,0,g,M);const w=p.getImageData(0,0,g,M).data,b=e.chromaKey,x=null!=b&&!1!==b,y=!0===b,$="blue-screen"===b;let C=null,E=0;!x||y||$||(C=S(b),E=(e.chromaKeyTolerance??60)**2);let A=0,T=255;if(e.normalize){let t=255,e=0;for(let o=0;o<w.length;o+=4){if(x){const t=w[o],e=w[o+1],n=w[o+2];let r=!1;if(y)r=e>1.4*t&&e>1.4*n&&e>80;else if($)r=n>1.4*t&&n>1.4*e&&n>80;else if(null!==C){const o=t-C.r,a=e-C.g,i=n-C.b;r=o*o+a*a+i*i<=E}if(r)continue}const n=.299*w[o]+.587*w[o+1]+.114*w[o+2];n<t&&(t=n),n>e&&(e=n)}A=t,T=e>t?e-t:255}const I=K(e.invert),R=x&&e.charset.replace(/ /g,"")||e.charset,F=Y(R),k=e.customText?null:_(R,I,e.brightness,e.contrast),L=e.customText?Y(e.customText):null,z="fullcolor"===e.colorMode?new Uint8ClampedArray(d*m*4):void 0,q=[];for(let t=0;t<m;t++){let o="";for(let n=0;n<d;n++){const r=4*(t*g+n),a=r,i=w[r],s=w[r+1],c=w[r+2],l=w[r+3];if(x){let t=!1;if(y)t=s>1.4*i&&s>1.4*c&&s>80;else if($)t=c>1.4*i&&c>1.4*s&&c>80;else if(null!==C){const e=i-C.r,o=s-C.g,n=c-C.b;t=e*e+o*o+n*n<=E}if(t){o+=" ",z&&(z[a]=0,z[a+1]=0,z[a+2]=0,z[a+3]=0);continue}}z&&(z[a]=i,z[a+1]=s,z[a+2]=c,z[a+3]=l);const f=.299*i+.587*s+.114*c,m=e.normalize?(f-A)/T*255:f,M=e.ditherStrength>0||L?h(m,e.brightness,e.contrast):m,p=e.ditherStrength>0?u(M,n,t,e.ditherStrength):M;if(L){o+=(I?1-p/255:p/255)<.12?" ":L[(t*d+n)%L.length]}else e.ditherStrength<=0?o+=k[Math.max(0,Math.min(255,0|m))]:o+=X(p,F,I)}q.push(o)}return{rows:q,cols:d,rowCount:m,colors:z}}function nt(t,e,o,n,r){if(0===e.rows.length)return;const a=t.canvas,i=Boolean(o.chromaKey)||e.rows.some(t=>t.includes(" "));i||(V.delete(t),t.clearRect(0,0,n,r),t.fillStyle=y(a)?"#0a0a0a":"#faf9f7",t.fillRect(0,0,n,r));const s=Q(o.accentColor),c=parseInt(s.substring(0,2),16)||255,h=parseInt(s.substring(2,4),16)||255,f=parseInt(s.substring(4,6),16)||255,d=n/e.cols,m=r/e.rowCount,u=.9*Math.min(d/.55,m),g=e.colors;if("fullcolor"===o.colorMode&&g){if(V.delete(t),t.clearRect(0,0,n,r),u<6){const{canvas:a,ctx:i}=function(t,e,o){let n=U.get(t);n||(n=l(e,o).canvas,U.set(t,n)),n.width!==e&&(n.width=e),n.height!==o&&(n.height=o);const r=n.getContext("2d",{willReadFrequently:!1});if(!r)throw new Error("renderTextFrameToCanvas: could not create raster context.");return{canvas:n,ctx:r}}(t,e.cols,e.rowCount);let s=O.get(i);s&&s.width===e.cols&&s.height===e.rowCount||(s={width:e.cols,height:e.rowCount,imageData:i.createImageData(e.cols,e.rowCount)},O.set(i,s));const c=s.imageData,h=c.data;h.fill(0);const f=J(o.charset);for(let t=0;t<e.rowCount;t++){const o=e.rows[t];for(let n=0;n<e.cols;n++){const r=o[n];if(" "===r)continue;const a=4*(t*e.cols+n),i=g[a+3];if(i<10)continue;const s=f.get(r)??.5;h[a]=g[a],h[a+1]=g[a+1],h[a+2]=g[a+2],h[a+3]=0|Math.min(255,i*s)}}return i.putImageData(c,0,0),t.imageSmoothingEnabled=!1,t.drawImage(a,0,0,n,r),t.imageSmoothingEnabled=!0,void(t.globalAlpha=1)}t.font=`${u}px "JetBrains Mono", monospace`,t.textAlign="left",t.textBaseline="middle",t.globalAlpha=1;let a="";for(let o=0;o<e.rows.length;o++){const n=e.rows[o];let r=0;for(;r<e.cols;){for(;r<e.cols&&" "===n[r];)r++;if(r>=e.cols)break;const i=r,s=4*(o*e.cols+r),c=240&g[s],l=240&g[s+1],h=240&g[s+2];for(r++;r<e.cols&&" "!==n[r];){const t=4*(o*e.cols+r);if((240&g[t])!==c||(240&g[t+1])!==l||(240&g[t+2])!==h)break;r++}const f=`rgb(${c},${l},${h})`;f!==a&&(t.fillStyle=f,a=f),t.fillText(n.slice(i,r),i*d+.5*d,o*m+.5*m)}}return void(t.globalAlpha=1)}t.font=`${u}px "JetBrains Mono", monospace`,t.textAlign="left",t.textBaseline="middle";const M="matrix"===o.colorMode?"rgb(0,255,0)":"grayscale"===o.colorMode?y(a)?"rgb(230,230,230)":"rgb(24,24,24)":`rgb(${c},${h},${f})`;t.fillStyle=M,t.globalAlpha=1;const p=V.get(t),v=i&&p&&p.cols===e.cols&&p.rowCount===e.rowCount&&p.canvasWidth===n&&p.canvasHeight===r&&p.fillStyle===M;v||t.clearRect(0,0,n,r);for(let o=0;o<e.rows.length;o++){const r=e.rows[o];v&&p.rows[o]===r||(v&&t.clearRect(0,o*m,n,m+1),0!==r.trim().length&&t.fillText(r,.5*d,o*m+.5*m))}V.set(t,{rows:e.rows.slice(),cols:e.cols,rowCount:e.rowCount,canvasWidth:n,canvasHeight:r,fillStyle:M}),t.globalAlpha=1}async function rt(t,e,o,n,r=12,a=10,i,s=0){const c=Math.min(t.duration-s,a),l=Math.ceil(c*r),h=[];let f=0,d=0;for(let a=0;a<l;a++){const m=s+a/r;if(m>s+c)break;t.currentTime=m,await new Promise(e=>{const o=()=>{t.removeEventListener("seeked",o),e()};t.addEventListener("seeked",o)});const u=et(t,e,o,n);h.push(u.frame),f=u.cols,d=u.rows,i?.((a+1)/l)}return{frames:h,cols:f,rows:d,fps:r}}async function at(t,e,o,n,r=12,a=10,i,s=0){const c=Math.min(t.duration-s,a),l=Math.ceil(c*r),h=[];let f=0,d=0;for(let a=0;a<l;a++){const m=s+a/r;if(m>s+c)break;t.currentTime=m,await new Promise(e=>{const o=()=>{t.removeEventListener("seeked",o),e()};t.addEventListener("seeked",o)});const u=ot(t,e,o,n);h.push(u),f=u.cols,d=u.rowCount,i?.((a+1)/l)}return{frames:h,cols:f,rows:d,fps:r}}async function it(o,n,r,a,i){const s=t(o),c=e(s,!0);if(0===c.length)return{frames:[],cols:0,rows:0,fps:10};const l=c[0].dims.width,h=c[0].dims.height,f=s.lsd?.width||l,d=s.lsd?.height||h,m=document.createElement("canvas");m.width=f,m.height=d;const u=m.getContext("2d"),g=document.createElement("canvas");g.width=f,g.height=d;const M=g.getContext("2d"),p=document.createElement("canvas"),v=p.getContext("2d"),w=[];let b=0,x=0,y=0;for(const t of c)y+=t.delay||100;const S=y/c.length,$=Math.round(Math.min(30,Math.max(5,1e3/S))),C=Math.min(c.length,300);for(let t=0;t<C;t++){const e=c[t],{dims:o,patch:s,disposalType:l}=e;3===l&&(M.clearRect(0,0,f,d),M.drawImage(m,0,0)),p.width!==o.width&&(p.width=o.width),p.height!==o.height&&(p.height=o.height);const h=new ImageData(new Uint8ClampedArray(s.buffer),o.width,o.height);v.putImageData(h,0,0),u.drawImage(p,o.left||0,o.top||0);const y=et(m,n,r,a);w.push(y.frame),b=y.cols,x=y.rows,2===l?u.clearRect(o.left||0,o.top||0,o.width,o.height):3===l&&(u.clearRect(0,0,f,d),u.drawImage(g,0,0)),i?.((t+1)/C)}return{frames:w,cols:b,rows:x,fps:$}}async function st(o,n,r,a,i){const s=t(o),c=e(s,!0);if(0===c.length)return{frames:[],cols:0,rows:0,fps:10};const l=c[0].dims.width,h=c[0].dims.height,f=s.lsd?.width||l,d=s.lsd?.height||h,m=document.createElement("canvas");m.width=f,m.height=d;const u=m.getContext("2d"),g=document.createElement("canvas");g.width=f,g.height=d;const M=g.getContext("2d"),p=document.createElement("canvas"),v=p.getContext("2d"),w=[];let b=0,x=0,y=0;for(const t of c)y+=t.delay||100;const S=y/c.length,$=Math.round(Math.min(30,Math.max(5,1e3/S))),C=Math.min(c.length,300);for(let t=0;t<C;t++){const e=c[t],{dims:o,patch:s,disposalType:l}=e;3===l&&(M.clearRect(0,0,f,d),M.drawImage(m,0,0)),p.width!==o.width&&(p.width=o.width),p.height!==o.height&&(p.height=o.height);const h=new ImageData(new Uint8ClampedArray(s.buffer),o.width,o.height);v.putImageData(h,0,0),u.drawImage(p,o.left||0,o.top||0);const y=ot(m,n,r,a);w.push(y),b=y.cols,x=y.rowCount,2===l?u.clearRect(o.left||0,o.top||0,o.width,o.height):3===l&&(u.clearRect(0,0,f,d),u.drawImage(g,0,0)),i?.((t+1)/C)}return{frames:w,cols:b,rows:x,fps:$}}function ct(t,e,o,n,r,a=0,i){if("waveField"===o.animationStyle){return void L(t,n,r,a,i?{x:i.x,y:i.y}:{x:.5,y:.5},{accentColor:`#${o.accentColor?Q(o.accentColor):"d4ff00"}`,accentThreshold:.52,mouseInfluence:o.hoverStrength>0?Math.min(1,.3+.5*o.hoverStrength):.55,mouseFalloff:2.8,speed:o.animationSpeed,vortex:o.hoverStrength>0,sparkles:!0,breathe:!0})}const s=e.length;if(0===s)return;const c=e[0].length;t.clearRect(0,0,n,r);let h=!1;const d=Math.max(1,s>>2),m=Math.max(1,c>>2);t:for(let t=0;t<s;t+=d){const o=e[t];for(let t=0;t<c;t+=m)if(o[t].a<200){h=!0;break t}}const u=t.canvas,g=y(u);h||(t.fillStyle=g?"#0a0a0a":"#faf9f7",t.fillRect(0,0,n,r));const M=n/c,v=r/s,b=s*c,x=i?.intensity??1,S=!("none"!==o.animationStyle&&b>5e3)&&!!(i&&o.hoverStrength>0&&x>.005),C=o.hoverColor||"#ffffff",A=parseInt(C.slice(1,3),16)||255,T=parseInt(C.slice(3,5),16)||255,I=parseInt(C.slice(5,7),16)||255,R=Q(o.accentColor),F=parseInt(R.substring(0,2),16)||255,k=parseInt(R.substring(2,4),16)||255,P=parseInt(R.substring(4,6),16)||255,B=b>3e4?.25:b>15e3?.4:b>5e3?.6:1,H=o.hoverRadius*B;let W=0,j=c,D=0,U=s,O=0,V=0;if(S&&i){O=i.x,V=i.y;const t=.08+.35*H+.04*o.hoverStrength;W=Math.max(0,Math.floor((O-t)*c)-1),j=Math.min(c,Math.ceil((O+t)*c)+1),D=Math.max(0,Math.floor((V-t)*s)-1),U=Math.min(s,Math.ceil((V+t)*s)+1)}const Y=o.animationStyle,X=o.animationSpeed,_="none"===Y,N=o.hoverStrength,G=o.hoverEffect,Z=H,tt=o.hoverShape||"circle",et=K(o.invert,u),ot=o.colorMode,nt=2*Math.PI,rt=1/c,at=1/s;let it="",st=-1;if("dots"===o.renderMode){const n=.5*Math.min(M,v)*o.dotSizeRatio;for(let o=0;o<s;o++){const r=e[o];for(let e=0;e<c;e++){const i=r[e];if(i.a<10)continue;const l=.00392156863*(.299*i.r+.587*i.g+.114*i.b),h=et?1-l:l;if(h<.02)continue;const f=_?1:$(e,o,c,s,a,Y,X);let d=1,m=0,u=0,g=0,b=0;if(S&&e>=W&&e<=j&&o>=D&&o<=U){const t=E(e*rt,o*at,O,V,x,N,M,v,G,Z,tt);d=t.scale,m=t.offsetX,u=t.offsetY,g=t.glow,b=t.colorBlend}const y=n*h*f*d;if(y<.3)continue;const C=e*M+.5*M+m,R=o*v+.5*v+u;let L;if(b>0){const t=w(i,ot,F,k,P,et);L=`rgb(${Math.min(255,t[0]+(A-t[0])*b|0)},${Math.min(255,t[1]+(T-t[1])*b|0)},${Math.min(255,t[2]+(I-t[2])*b|0)})`}else L=p(i,ot,F,k,P,et);const z=Math.min(1,.00392156863*i.a*f*(1+g));if(z!==st&&(t.globalAlpha=z,st=z),L!==it&&(t.fillStyle=L,it=L),y<=3){const e=2*y;t.fillRect(C-y,R-y,e,e)}else t.beginPath(),t.arc(C,R,y,0,nt),t.fill()}}}else{const i=.55,h=.9*Math.min(M/i,v),d=h<6;if(!d){const e="emoji"===o.artStyle;t.font=e?`${h}px "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif`:`${h}px "JetBrains Mono", monospace`,t.textAlign="center",t.textBaseline="middle"}const m=o.charsetFrames,u=!!m?.length,g=u?m[Math.floor(Math.max(0,a)*(o.charsetFps??2))%m.length]:o.charset;if(d){const{canvas:o,ctx:a}=function(t,e,o){let n=z.get(t);n||(n=l(e,o).canvas,z.set(t,n)),n.width!==e&&(n.width=e),n.height!==o&&(n.height=o);const r=n.getContext("2d",{willReadFrequently:!1});if(!r)throw new Error("renderFrameToCanvas: could not create raster context.");return{canvas:n,ctx:r}}(t,c,s);let i=q.get(a);i&&i.width===c&&i.height===s||(i={width:c,height:s,imageData:a.createImageData(c,s)},q.set(a,i));const h=i.imageData,d=h.data;d.fill(0);const m=J(g);for(let t=0;t<s;t++){const o=e[t];for(let e=0;e<c;e++){const n=o[e],r=4*(t*c+e);if(n.a<10)continue;const a=u&&null!=n.lum?f(n.lum,g,et):n.char;if(" "===a)continue;let i,s,l,h=m.get(a)??.5,p=0,b=0;if(S&&e>=W&&e<=j&&t>=D&&t<=U){const o=E(e*rt,t*at,O,V,x,N,M,v,G,Z,tt);h*=o.scale,p=o.glow,b=o.colorBlend}if(b>0){const t=w(n,ot,F,k,P,et);i=Math.min(255,t[0]+(A-t[0])*b|0),s=Math.min(255,t[1]+(T-t[1])*b|0),l=Math.min(255,t[2]+(I-t[2])*b|0)}else{const t=w(n,ot,F,k,P,et);i=t[0],s=t[1],l=t[2]}const y=Math.min(255,Math.max(0,n.a*h*(1+p)));d[r]=i,d[r+1]=s,d[r+2]=l,d[r+3]=y}}return a.putImageData(h,0,0),t.imageSmoothingEnabled=!1,t.drawImage(o,0,0,n,r),t.imageSmoothingEnabled=!0,void(t.globalAlpha=1)}const b=d?null:t.getTransform();if(!d&&!S&&_&&!u&&"accent"===ot){t.fillStyle=`rgb(${F},${k},${P})`,t.globalAlpha=1,t.textAlign="left";for(let o=0;o<s;o++){const n=e[o];let r="";for(let t=0;t<c;t++){const e=n[t];r+=e.a<10?" ":e.char}0!==r.trim().length&&t.fillText(r,.5*M,o*v+.5*v)}return void(t.globalAlpha=1)}const y="glitchText"===G&&S,C="!@#$%^&*<>{}[]|/\\~`0123456789",R=C.length;let L="",B=0,K=0,Q=0,nt=0,ct=0,lt=0;if(y){const t=o.hoverText??"ASCIIFY";if(K=Math.round(O*c),Q=Math.round(V*s),Array.isArray(t)){const e=t.filter(t=>t.length>0);0===e.length&&e.push("ASCIIFY");L=e[((7*Math.floor(K/Math.max(1,Math.ceil(c/5)))+13*Math.floor(Q/Math.max(1,Math.ceil(s/3))))%e.length+e.length)%e.length]}else L=t||"ASCIIFY";B=L.length,nt=Math.max(3,Math.min(12,Math.round(s*H*.6)));const e=Math.floor(nt/2);ct=Math.max(0,Q-e),ct+nt>s&&(ct=Math.max(0,s-nt)),lt=K-Math.floor(B/2)}for(let o=0;o<s;o++){const n=e[o];for(let e=0;e<c;e++){const r=n[e];if(r.a<10)continue;let i=u&&null!=r.lum?f(r.lum,g,et):r.char;if(" "===i)continue;const l=_?1:$(e,o,c,s,a,Y,X);if(l<.05)continue;let h=1,d=0,m=0,z=0,q=0;if(S&&!y&&e>=W&&e<=j&&o>=D&&o<=U){const t=E(e*rt,o*at,O,V,x,N,M,v,G,Z,tt);h=t.scale,d=t.offsetX,m=t.offsetY,z=t.glow,q=t.colorBlend}if(y&&o>=ct&&o<ct+nt){const t=e-lt;if(t>=0&&t<B){const n=L[t],r=Math.abs(o-Q)/Math.max(1,.5*nt),s=Math.abs(e-K)/Math.max(1,B),c=Math.max(r,s),l=Math.max(0,Math.min(1,1-.9*c)),h=43758.5453*Math.sin(127.1*e+311.7*o+43758.5453*Math.floor(12*a));i=Math.abs(h-Math.floor(h))<l?n:C[Math.abs(Math.floor(97*h))%R],z=.3+.7*l,q=.3+.65*l}}const H=e*M+.5*M+d,J=o*v+.5*v+m;let ht;if(q>0){const t=w(r,ot,F,k,P,et);ht=`rgb(${Math.min(255,t[0]+(A-t[0])*q|0)},${Math.min(255,t[1]+(T-t[1])*q|0)},${Math.min(255,t[2]+(I-t[2])*q|0)})`}else ht=p(r,ot,F,k,P,et);const ft=Math.min(1,.00392156863*r.a*l*(1+z));ft!==st&&(t.globalAlpha=ft,st=ft),ht!==it&&(t.fillStyle=ht,it=ht),1!==h?(t.translate(H,J),t.scale(h,h),t.fillText(i,0,0),t.setTransform(b)):t.fillText(i,H,J)}}}t.globalAlpha=1}function lt(t){return Math.max(0,Math.min(1,t))}function ht(t){return"string"==typeof t?document.querySelector(t):t instanceof HTMLElement?t:null}function ft(t){return"ascii"===t.renderMode&&"none"===t.animationStyle&&t.hoverStrength<=0&&!t.charsetFrames?.length}function dt(t,e,o={}){if(!Number.isFinite(t.duration)||t.duration<=0)return;const n=o.from??0,r=o.to??t.duration,a=Math.max(n,Math.min(r,t.duration)),i=lt(o.ease?o.ease(lt(e)):e),s=n+(a-n)*i;t.currentTime=Math.min(Math.max(n,s),Math.max(n,a-.04)),o.onUpdate?.(i,t)}function mt(t){const e=t.requestVideoFrameCallback;return new Promise(e?o=>{let n=!1;const r=()=>{n||(n=!0,o())};e.call(t,r),window.setTimeout(r,32)}:t=>requestAnimationFrame(()=>t()))}function ut(t,e={}){const o=ht(e.trigger)??t;t.pause();const n=e.gsap,r=e.ScrollTrigger??n?.ScrollTrigger;if(n&&r?.create){n.registerPlugin?.(r);const a=r.create({trigger:o,start:e.start??"top bottom",end:e.end??"bottom top",scrub:e.scrub??!0,onUpdate:o=>dt(t,o.progress,e)});return()=>a.kill?.()}return function(t,e,o){let n=0;const r=()=>{n=0;const r=e.getBoundingClientRect(),a=window.innerHeight||document.documentElement.clientHeight,i=r.height+a,s=i>0?lt((a-r.top)/i):0;dt(t,s,o)},a=()=>{n||(n=requestAnimationFrame(r))};return window.addEventListener("scroll",a,{passive:!0}),window.addEventListener("resize",a),a(),()=>{window.removeEventListener("scroll",a),window.removeEventListener("resize",a),n&&cancelAnimationFrame(n)}}(t,o,e)}function gt(t,e,o){const n=e.gsap,r=e.ScrollTrigger??n?.ScrollTrigger;if(n&&r?.create){n.registerPlugin?.(r);const a=r.create({trigger:t,start:e.start??"top bottom",end:e.end??"bottom top",scrub:e.scrub??!0,onUpdate:t=>o(t.progress)});return()=>a.kill?.()}return function(t,e){let o=0;const n=()=>{o=0;const n=t.getBoundingClientRect(),r=window.innerHeight||document.documentElement.clientHeight,a=n.height+r,i=a>0?lt((r-n.top)/a):0;e(i)},r=()=>{o||(o=requestAnimationFrame(n))};return window.addEventListener("scroll",r,{passive:!0}),window.addEventListener("resize",r),r(),()=>{window.removeEventListener("scroll",r),window.removeEventListener("resize",r),o&&cancelAnimationFrame(o)}}(t,o)}function Mt(t,e,o=2048){const n=o,r=Math.min(1,n/Math.max(t,e));return{renderW:Math.round(t*r),renderH:Math.round(e*r)}}function pt(t,e,o,n,r,a=2048){const{width:i,height:s}=e.getBoundingClientRect();if(!i||!s)return{renderW:0,renderH:0,dpr:1};let c,l,h=i,f=h/o;f>s&&(f=s,h=f*o),h=Math.round(h),f=Math.round(f),n&&r?({renderW:c,renderH:l}=Mt(n,r,a)):(c=h,l=f);const d="undefined"!=typeof window&&window.devicePixelRatio||1,m=8e6,u=c*d*l*d>m?Math.sqrt(m/(c*l)):d;return t.width=Math.round(c*u),t.height=Math.round(l*u),t.style.width=h+"px",t.style.height=f+"px",{renderW:c,renderH:l,dpr:u}}async function vt(t,e,{fontSize:o,artStyle:n="classic",options:r={}}={}){let i;if("string"==typeof t){const e=new Image;e.crossOrigin="anonymous",await new Promise((o,n)=>{e.onload=()=>o(),e.onerror=()=>n(new Error(`Failed to load image: ${t}`)),e.src=t}),i=e}else t instanceof HTMLImageElement&&!t.complete?(await new Promise((e,o)=>{t.onload=()=>e(),t.onerror=()=>o(new Error("Image failed to load"))}),i=t):i=t;const c=a[n],l=o??r.fontSize??10,h={...s,...c,...r,fontSize:l},f=e.getContext("2d");if(!f)throw new Error("Could not get 2d context from canvas");const{w:d,h:m}=function(t){return t instanceof HTMLVideoElement?{w:t.videoWidth,h:t.videoHeight}:t instanceof HTMLImageElement?{w:t.naturalWidth||t.width,h:t.naturalHeight||t.height}:{w:t.width,h:t.height}}(i),{renderW:u,renderH:g}=Mt(d,m),M="undefined"!=typeof window&&window.devicePixelRatio||1,p=8e6,v=u*M*g*M>p?Math.sqrt(p/(u*g)):M;if((e.width<u||e.height<g)&&(e.width=Math.round(u*v),e.height=Math.round(g*v)),h.hoverStrength>0){const{frame:t}=et(i,h,u,g);let o=null,n=!1,r=0;const a=t=>{const n=e.getBoundingClientRect();o={x:(t.clientX-n.left)/n.width,y:(t.clientY-n.top)/n.height}},s=()=>{o=null};e.addEventListener("mousemove",a),e.addEventListener("mouseleave",s);const c=e=>{n||(f.save(),f.setTransform(v,0,0,v,0,0),ct(f,t,h,u,g,e/1e3,o),f.restore(),r=requestAnimationFrame(c))};return r=requestAnimationFrame(c),()=>{n=!0,cancelAnimationFrame(r),e.removeEventListener("mousemove",a),e.removeEventListener("mouseleave",s)}}if(f.save(),f.setTransform(v,0,0,v,0,0),ft(h)){const t=ot(i,h,u,g);nt(f,t,h,u,g)}else{const{frame:t}=et(i,h,u,g);ct(f,t,h,u,g)}f.restore()}async function wt(t,e,{fontSize:o,artStyle:n="classic",options:r={}}={}){const i="string"==typeof t?await fetch(t).then(t=>t.arrayBuffer()):t,c=o??r.fontSize??10,l={...s,...a[n],...r,fontSize:c},h=e.getContext("2d");if(!h)throw new Error("Could not get 2d context from canvas");if(ft(l)){const{frames:t,fps:o}=await st(i,l,e.width,e.height);let n,r=!1,a=0,s=performance.now();const c=1e3/o,f=o=>{r||(o-s>=c&&(nt(h,t[a],l,e.width,e.height),a=(a+1)%t.length,s=o),n=requestAnimationFrame(f))};return n=requestAnimationFrame(f),()=>{r=!0,cancelAnimationFrame(n)}}const{frames:f,fps:d}=await it(i,l,e.width,e.height);let m,u=!1,g=0,M=performance.now();const p=1e3/d,v=t=>{u||(t-M>=p&&(ct(h,f[g],l,e.width,e.height),g=(g+1)%f.length,M=t),m=requestAnimationFrame(v))};return m=requestAnimationFrame(v),()=>{u=!0,cancelAnimationFrame(m)}}async function bt(t,e,{fontSize:o,artStyle:n="classic",options:r={},fitTo:i,preExtract:c=!1,fps:l,maxRenderDimension:h=2048,trim:f,scroll:d,onReady:m,onFrame:u}={}){const g=f?.start??0,M=f?.end,p=o??r.fontSize??10,v={...s,...a[n],...r,fontSize:p},w=e.getContext("2d");if(!w)throw new Error("asciifyVideo: could not get 2d context from canvas.");const b="string"==typeof i?document.querySelector(i):i instanceof HTMLElement?i:null;if(c){let o;"string"==typeof t?(o=document.createElement("video"),o.crossOrigin="anonymous",o.src=t,o.readyState<2&&await new Promise((e,n)=>{o.onloadeddata=()=>e(),o.onerror=()=>n(new Error(`asciifyVideo: failed to load "${t}"`))})):o=t,b&&pt(e,b,o.videoWidth/o.videoHeight,o.videoWidth,o.videoHeight,h);const{renderW:n,renderH:r}=Mt(o.videoWidth,o.videoHeight,h),a="undefined"!=typeof window&&window.devicePixelRatio||1,i=8e6,s=n*a*r*a>i?Math.sqrt(i/(n*r)):a;e.width<Math.round(n*s)&&(e.width=Math.round(n*s),e.height=Math.round(r*s));const c=void 0!==M?M-g:10,f=l??(d?18:void 0);if(ft(v)){const{frames:t,fps:a}=await at(o,v,n,r,f,c,void 0,g),i=e=>{const o=t[e];o&&(w.save(),w.setTransform(s,0,0,s,0,0),nt(w,o,v,n,r),w.restore(),u?.())};if(d){let n=!1,r=-1;const a=!0===d?{}:d,s=gt(ht(a.trigger)??b??e,a,e=>{const s=lt(a.ease?a.ease(lt(e)):e),c=Math.max(0,Math.min(t.length-1,Math.round(s*(t.length-1))));c!==r&&(r=c,i(c),n||(n=!0,m?.(o)),a.onUpdate?.(s,o))});return i(0),n=!0,m?.(o),s}let l,h=!1,M=0,p=performance.now(),x=!0;const y=1e3/a,S=e=>{h||(e-p>=y&&(i(M),M=(M+1)%t.length,p=e,x&&(x=!1,m?.(o))),l=requestAnimationFrame(S))};return l=requestAnimationFrame(S),()=>{h=!0,cancelAnimationFrame(l)}}const{frames:p,fps:x}=await rt(o,v,n,r,f,c,void 0,g),y=t=>{const e=p[t];e&&(w.save(),w.setTransform(s,0,0,s,0,0),ct(w,e,v,n,r),w.restore(),u?.())};if(d){let t=!1,n=-1;const r=!0===d?{}:d,a=gt(ht(r.trigger)??b??e,r,e=>{const a=lt(r.ease?r.ease(lt(e)):e),i=Math.max(0,Math.min(p.length-1,Math.round(a*(p.length-1))));i!==n&&(n=i,y(i),t||(t=!0,m?.(o)),r.onUpdate?.(a,o))});return y(0),t=!0,m?.(o),a}let S,$=!1,C=0,E=performance.now(),A=!0;const T=1e3/x,I=t=>{$||(t-E>=T&&(y(C),C=(C+1)%p.length,E=t,A&&(A=!1,m?.(o))),S=requestAnimationFrame(I))};return S=requestAnimationFrame(I),()=>{$=!0,cancelAnimationFrame(S)}}let x,y=!1;"string"==typeof t?(x=document.createElement("video"),x.src=t,x.muted=!0,x.loop=!0,x.playsInline=!0,x.setAttribute("playsinline",""),Object.assign(x.style,{position:"fixed",top:"0",left:"0",width:"1px",height:"1px",opacity:"0",pointerEvents:"none",zIndex:"-1"}),document.body.appendChild(x),y=!0,await new Promise((e,o)=>{x.onloadedmetadata=()=>e(),x.onerror=()=>o(new Error(`asciifyVideo: failed to load "${t}"`))}),await x.play().catch(()=>{})):(x=t,x.readyState<HTMLMediaElement.HAVE_METADATA&&await new Promise((t,e)=>{const o=()=>{x.removeEventListener("loadedmetadata",n),x.removeEventListener("error",r)},n=()=>{o(),t()},r=()=>{o(),e(new Error("asciifyVideo: provided video element failed to load metadata."))};x.addEventListener("loadedmetadata",n),x.addEventListener("error",r),x.load()}),x.paused&&await x.play().catch(()=>{})),g>0&&(x.currentTime=g,await new Promise(t=>{const e=()=>{x.removeEventListener("seeked",e),t()};x.addEventListener("seeked",e)}),await mt(x));let S=null;(g>0||void 0!==M)&&(S=()=>{(void 0!==M&&x.currentTime>=M||g>0&&x.currentTime<g)&&(x.currentTime=g)},x.addEventListener("timeupdate",S));let $=null;const{renderW:C,renderH:E}=Mt(x.videoWidth,x.videoHeight,h);if(b){const t=x.videoWidth/x.videoHeight,o=x.videoWidth,n=x.videoHeight,r=pt(e,b,t,o,n,h),a=e.getContext("2d");a&&a.setTransform(r.dpr,0,0,r.dpr,0,0),$=new ResizeObserver(()=>{const r=pt(e,b,t,o,n,h),a=e.getContext("2d");a&&a.setTransform(r.dpr,0,0,r.dpr,0,0)}),$.observe(b)}else{const t="undefined"!=typeof window&&window.devicePixelRatio||1,o=8e6,n=C*t*E*t>o?Math.sqrt(o/(C*E)):t;e.width<Math.round(C*n)&&(e.width=Math.round(C*n),e.height=Math.round(E*n)),w.setTransform(n,0,0,n,0,0)}let A,T=!1,I=!0,R=null;const F=d&&!c,k=l&&l>0?1e3/l:0;let L=0,z=-1;const q=!F&&ft(v);if(F&&"ascii"===v.renderMode&&"none"===v.animationStyle&&v.hoverStrength<=0&&!v.charsetFrames?.length){const t=!0===d?{}:d,o=ht(t.trigger)??b??e,n=t.from??g,r=t.to??M??x.duration,a=Math.max(n,Math.min(r,x.duration)),i=Math.max(.001,a-n),s=Math.min(60,Math.max(12,l??30)),c=Math.max(2,Math.ceil(i*s)+1),h=new Array(c);let f=0,p=0,A=-1,T=0,I=!1,F=!1,z=!1;const q=new Set,P=document.createElement("video");P.muted=!0,P.playsInline=!0,P.preload="auto",P.crossOrigin=x.crossOrigin||"anonymous",P.src=x.currentSrc||x.src,Object.assign(P.style,{position:"fixed",top:"0",left:"0",width:"1px",height:"1px",opacity:"0",pointerEvents:"none",zIndex:"-1"}),document.body.appendChild(P),P.readyState<HTMLMediaElement.HAVE_METADATA&&await new Promise((t,e)=>{const o=()=>{P.removeEventListener("loadedmetadata",n),P.removeEventListener("error",r)},n=()=>{o(),t()},r=()=>{o(),e(new Error("asciifyVideo: cache video failed to load metadata."))};P.addEventListener("loadedmetadata",n),P.addEventListener("error",r),P.load()}),P.pause(),x.paused&&await x.play().catch(()=>{});const B=t=>n+i*t/Math.max(1,c-1),H=t=>Math.max(0,Math.min(c-1,Math.round(t*(c-1)))),W=ot(x,v,C,E);W.rows.length>0&&(h[0]=W,nt(w,W,v,C,E),z=!0,m?.(x),u?.());const j=t=>{if(h[t])return t;for(let e=1;e<c;e++){const o=t-e,n=t+e;if(o>=0&&h[o])return o;if(n<c&&h[n])return n}return-1},D=()=>{if(!h[f])return f;for(const t of q)if(!h[t])return t;for(let t=1;t<c;t++){const e=f-t,o=f+t;if(e>=0&&!h[e])return e;if(o<c&&!h[o])return o}return-1},U=t=>{t<0||t>=c||h[t]||(q.add(t),O())},O=async()=>{if(I||F)return;const t=D();if(!(t<0)){q.delete(t),F=!0;try{if(await function(t,e){return Math.abs(t.currentTime-e)<1/240?mt(t):new Promise(o=>{const n=()=>{t.removeEventListener("seeked",n),o()};t.addEventListener("seeked",n,{once:!0});const r=t.fastSeek;r?r.call(t,e):t.currentTime=e})}(P,B(t)),!I){const e=ot(P,v,C,E);e.rows.length>0&&(h[t]=e)}}finally{F=!1,I||requestAnimationFrame(()=>{O()})}}},V=()=>{if(I)return;const t=j(f);if(t>=0&&t!==A){const e=h[t];e&&(nt(w,e,v,C,E),A=t,z||(z=!0,m?.(x)),u?.())}else if(t<0||A<0){const t=performance.now();if(k<=0||t-L>=k){const e=ot(x,v,C,E);e.rows.length>0&&(nt(w,e,v,C,E),L=t,z||(z=!0,m?.(x)),u?.())}}U(f),T=requestAnimationFrame(V)};return R=gt(o,t,e=>{const o=function(t,e,o={}){if(!Number.isFinite(t.duration)||t.duration<=0)return null;const n=o.from??0,r=o.to??t.duration,a=Math.max(n,Math.min(r,t.duration)),i=lt(o.ease?o.ease(lt(e)):e),s=n+(a-n)*i;return{progress:i,time:Math.min(Math.max(n,s),Math.max(n,a-.04))}}(x,e,{...t,from:n,to:a});p=o?.progress??lt(e),f=H(p),U(f),U(f-1),U(f+1),U(f-2),U(f+2),U(f-3),U(f+3),t.onUpdate?.(p,x)}),U(0),U(1),T=requestAnimationFrame(V),()=>{I=!0,cancelAnimationFrame(T),R?.(),$?.disconnect(),P.pause(),P.src="",document.body.removeChild(P),S&&x.removeEventListener("timeupdate",S),y&&(x.pause(),x.src="",document.body.removeChild(x))}}if(F){const t=!0===d?{}:d;R=ut(x,{...t,trigger:t.trigger??b??e,from:t.from??g,to:t.to??M})}const P=t=>{if(T)return;if(A=requestAnimationFrame(P),x.readyState<2||0===e.width||0===e.height)return;if(k>0&&t-L<k)return;if(g>0&&x.currentTime<g)return;if(void 0!==M&&x.currentTime>=M)return;if(F&&Math.abs(x.currentTime-z)<1/240)return;if(q){const e=ot(x,v,C,E);return void(e.rows.length>0&&(nt(w,e,v,C,E),L=t,z=x.currentTime,I&&(I=!1,m?.(x)),u?.()))}const{frame:o}=et(x,v,C,E);o.length>0&&(ct(w,o,v,C,E,0,null),L=t,z=x.currentTime,I&&(I=!1,m?.(x)),u?.())};return A=requestAnimationFrame(P),()=>{T=!0,cancelAnimationFrame(A),R?.(),$?.disconnect(),S&&x.removeEventListener("timeupdate",S),y&&(x.pause(),x.src="",document.body.removeChild(x))}}function xt(t,e,o){return bt(t,e,o)}function yt(t,e,o,n,r={}){const{fontSize:a=13,chars:i="0123456789ABCDEF@#$&*+=/<>",accentColor:s,color:c,speed:l=1,density:h=.55,tailLength:f=14,lightMode:d=!1}=r,m=s??(d?"#6b8700":"#d4ff00"),u=.62*a,g=1.4*a,M=Math.ceil(e/u),p=Math.ceil(o/g);t.clearRect(0,0,e,o),t.font=`${a}px monospace`,t.textBaseline="top";let v=255,w=255,b=255;if(d&&(v=55,w=55,b=55),c){const t=A(c);t&&(v=t.r,w=t.g,b=t.b)}let x=212,y=255,S=0;const $=A(m);$&&(x=$.r,y=$.g,S=$.b);const C=p+f;for(let e=0;e<M;e++){if(R(17*e,3)>h)continue;const o=(.5+1.5*R(31*e,7))*l,r=R(13*e,11)*C,a=Math.floor((n*o*7+r)%C),s=e*u;for(let o=0;o<=f;o++){const r=a-(f-o);if(r<0||r>=p)continue;const c=r*g,l=R(53*e+Math.floor(5*n+o),7*r),h=i[Math.floor(l*i.length)],m=o/f;if(o===f)t.fillStyle=`rgba(${x},${y},${S},${d?.7:.85})`;else{const e=d?.85*m:.15*m;t.fillStyle=`rgba(${v},${w},${b},${e})`}t.fillText(h,s,c)}}}function St(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=" . · * + ° ★",accentColor:c,color:l,speed:h=1,count:f=180,lightMode:d=!1}=a,m=c??(d?"#6b8700":"#d4ff00");t.clearRect(0,0,e,o),t.textBaseline="middle",t.textAlign="center";const u=e*(.2+.6*r.x),g=o*(.2+.6*r.y),M=.65*Math.sqrt(e*e+o*o);let p=255,v=255,w=255;if(d&&(p=55,v=55,w=55),l){const t=A(l);t&&(p=t.r,v=t.g,w=t.b)}let b=212,x=255,y=0;const S=A(m);S&&(b=S.r,x=S.g,y=S.b);const $=s.replace(/ /g,"").split("");if(0!==$.length){for(let r=0;r<f;r++){const a=R(17*r,3)*Math.PI*2,s=(n*(.15+.85*R(31*r,7))*h*.22+R(13*r,11))%1,c=u+Math.cos(a)*s*M,l=g+Math.sin(a)*s*M;if(c<-20||c>e+20||l<-20||l>o+20)continue;const f=Math.max(6,i*(.4+.9*s));t.font=`${f}px monospace`;const m=$[Math.min($.length-1,Math.floor(s*$.length))],S=s>.72,C=d?.85*s:.2*s;t.fillStyle=S?`rgba(${b},${x},${y},${Math.min(d?.92:.32,2.2*C)})`:`rgba(${p},${v},${w},${C})`,t.fillText(m,c,l)}t.textAlign="left"}}function $t(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=". · ○ ◎ ●",accentColor:c,color:l,rings:h=5,speed:f=1,sharpness:d=4,lightMode:m=!1}=a,u=c??(m?"#007a5e":"#00ffcc");t.clearRect(0,0,e,o),t.textBaseline="middle",t.textAlign="center";const g=e*r.x,M=o*r.y,p=1.6*Math.sqrt(g*g+M*M)+.2*Math.sqrt(e*e+o*o);let v=255,w=255,b=255;if(m&&(v=55,w=55,b=55),l){const t=A(l);t&&(v=t.r,w=t.g,b=t.b)}let x=0,y=255,S=204;const $=A(u);$&&(x=$.r,y=$.g,S=$.b);const C=s.replace(/ /g,"").split("");if(0===C.length)return;const E=Math.ceil(e/i),T=Math.ceil(o/i);for(let e=0;e<T;e++)for(let o=0;o<E;o++){const r=o*i+.5*i,a=e*i+.5*i,s=r-g,c=a-M,l=Math.sqrt(s*s+c*c)/p;let u=0;for(let t=0;t<h;t++){const e=(n*f*.38+t/h)%1,o=Math.abs(l-e),r=Math.max(0,1-o*p/(i*(12-d)));u+=Math.cos(r*Math.PI*.5)*r}if(u=Math.min(1,u),u<.02)continue;const $=u>.6;t.font=`${i}px monospace`;const E=Math.floor(u*(C.length-1)),A=C[Math.min(E,C.length-1)],T=m?.88*u:.22*u;t.fillStyle=$?`rgba(${x},${y},${S},${Math.min(m?.95:.4,.55*u)})`:`rgba(${v},${w},${b},${T})`,t.fillText(A,r,a)}t.textAlign="left"}function Ct(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=" .·:;=+*#%@░▒▓",accentColor:c,color:l,octaves:h=4,speed:f=1,scale:d=1,accentThreshold:m=.78,mouseWarp:u=.3,lightMode:g=!1}=a,M=c??(g?"#6b8700":"#d4ff00"),p=.62*i,v=1.4*i,w=Math.ceil(e/p),b=Math.ceil(o/v);t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let x=255,y=255,S=255;if(g&&(x=55,y=55,S=55),l){const t=A(l);t&&(x=t.r,y=t.g,S=t.b)}let $=212,C=255,E=0;const T=A(M);T&&($=T.r,C=T.g,E=T.b);const I=.035*d,R=n*f,k=Math.min(6,Math.max(1,h)),L=(t,e)=>{let o=0,n=.5,r=1,a=0;for(let i=0;i<k;i++)o+=F(t*r,e*r)*n,a+=n,n*=.5,r*=2.1;return o/a};for(let e=0;e<b;e++)for(let o=0;o<w;o++){const n=o*I+.06*R,a=e*I*1.3-.04*R,i=o/w-r.x,c=e/b-r.y,l=Math.sqrt(i*i+c*c),h=u>0?.12*Math.max(0,1-l/u):0,f=.5*L(n+h*Math.sin(1.3*R+8*c),a+h*Math.cos(.9*R+8*i))+.5;if(f<.12)continue;const d=s[Math.floor(f*(s.length-1))];if(" "===d)continue;const M=f>m,A=g?.82*f:.13*f;t.fillStyle=M?`rgba(${$},${C},${E},${g?.92:.28})`:`rgba(${x},${y},${S},${A})`,t.fillText(d,o*p,e*v)}}function Et(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=12,chars:s="·-=+|/",accentColor:c,color:l,bands:h=3,speed:f=1,bandWidth:d=.12,glitch:m=!0,lightMode:u=!1}=a,g=c??(u?"#6b8700":"#d4ff00"),M=.62*i,p=1.4*i,v=Math.ceil(e/M),w=Math.ceil(o/p);t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let b=255,x=255,y=255;if(u&&(b=55,x=55,y=55),l){const t=A(l);t&&(b=t.r,x=t.g,y=t.b)}let S=212,$=255,C=0;const E=A(g);E&&(S=E.r,$=E.g,C=E.b);const T=n*f;for(let e=0;e<w;e++)for(let o=0;o<v;o++){const n=e/w,a=((n*h-.5*T)%1+1)%1,i=Math.max(0,1-a/d),c=.35*(.5*R(3*o,7*e)+.5);let l=0;if(m){const t=o/v-r.x,a=n-r.y,i=Math.sqrt(t*t+a*a);if(i<.18){const t=R(11*o+Math.floor(12*T),5*e);l=Math.max(0,1-i/.18)*(t>.5?t-.3:0)}}const f=Math.min(1,c+.8*i+.6*l);if(f<.04)continue;const g=s[Math.floor(f*(s.length-1))],E=i>.55,A=u?.82*f:.12*f;t.fillStyle=E?`rgba(${S},${$},${C},${u?.92:.28})`:`rgba(${b},${x},${y},${A})`,t.fillText(g,o*M,e*p)}}function At(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=14,chars:s=" ·∙•:;+=≡≣#@",color:c,accentColor:l,speed:h=1,layers:f=5,softness:d=1.2,mouseRipple:m=.2,lightMode:u=!1}=a,g=l??(u?"#6b8700":"#d4ff00"),M=.62*i,p=1.4*i,v=Math.ceil(e/M),w=Math.ceil(o/p);t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let b=255,x=255,y=255;if(u&&(b=55,x=55,y=55),c){const t=A(c);t&&(b=t.r,x=t.g,y=t.b)}let S=212,$=255,C=0;const E=A(g);E&&(S=E.r,$=E.g,C=E.b);const T=n*h,I=[];for(let t=0;t<f;t++){const e=R(17*t,31*t+7),o=R(23*t+5,11*t);I.push({fx:.8+2.2*e,fy:1.2+1.8*o,phase:e*Math.PI*4,dt:(.3+.5*R(7*t,13*t+3))*(t%2==0?1:-1),amp:.55+.45*R(29*t,3*t)})}for(let e=0;e<w;e++){const o=e/w;for(let n=0;n<v;n++){const a=n/v,i=a-r.x,c=o-r.y,l=Math.sqrt(i*i+c*c),h=m*Math.exp(-l*l/.06),g=a+i*h,w=o+c*h;let E=0,A=0;for(let t=0;t<f;t++){const{fx:e,fy:o,phase:n,dt:r,amp:a}=I[t];E+=Math.sin(g*e*Math.PI*2+T*r+n)*Math.cos(w*o*Math.PI*2+T*r*.7+1.3*n)*a,A+=a}const R=E/A,F=.5+.5*Math.tanh(R*d*2.2);if(F<.12)continue;const k=(F-.12)/.88,L=s[Math.min(s.length-1,Math.floor(k*s.length))],z=F>.82,q=u?.82*F:.14*F;t.fillStyle=z?`rgba(${S},${$},${C},${u?.92:.32})`:`rgba(${b},${x},${y},${q})`,t.fillText(L,n*M,e*p)}}}function Tt(t,e,o,n,r={}){const{fontSize:a=13,color:i,accentColor:s,speed:c=.4,layers:l=4,turbulence:h=.8,lightMode:f=!1}=r,d=s??(f?"#6b8700":"#d4ff00"),m=.62*a,u=1.4*a,g=Math.ceil(e/m),M=Math.ceil(o/u);t.clearRect(0,0,e,o),t.font=`${a}px monospace`,t.textBaseline="top";let p=255,v=255,w=255;if(f&&(p=55,v=55,w=55),i){const t=A(i);t&&(p=t.r,v=t.g,w=t.b)}let b=212,x=255,y=0;const S=A(d);S&&(b=S.r,x=S.g,y=S.b);const $=n*c,C=["─","─","╌","·","╌","─","─","╌","·"];for(let e=0;e<M;e++){const o=e/M;for(let n=0;n<g;n++){const r=n/g;let a=0,i=0;for(let t=0;t<l;t++){const e=R(13*t,7*t+3),n=1.1+2.4*e,s=.9+2*R(29*t,11*t+1),c=e*Math.PI*6,l=(.2+.5*R(41*t,17*t))*(t%2==0?1:-1.3),f=Math.sin(r*n*Math.PI*2+$*l+c),d=Math.cos(o*s*Math.PI*2+$*l*.6+1.7*c),m=Math.sin(r*s*Math.PI*h+o*n*Math.PI*h+$*l*.4);a+=Math.atan2(d+.3*m,f),i+=.5*(f*d+1)}const s=a/l,c=Math.min(1,i/l);if(c<.1)continue;const d=(s+Math.PI)/(2*Math.PI),M=C[Math.floor(d*C.length)%C.length],S=c>.8,E=f?.8*c:.13*c;t.fillStyle=S?`rgba(${b},${x},${y},${f?.9:.26})`:`rgba(${p},${v},${w},${E})`,t.fillText(M,n*m,e*u)}}}function It(t,e,o,n,r={x:.5,y:.5},a={}){const{fontSize:i=13,chars:s=" ·:;=+*#%@",color:c,accentColor:l,speed:h=1,radius:f=.38,swirl:d=3,lightMode:m=!1}=a,u=l??(m?"#6b8700":"#d4ff00"),g=.62*i,M=1.4*i,p=Math.ceil(e/g),v=Math.ceil(o/M),w=e/o;t.clearRect(0,0,e,o),t.font=`${i}px monospace`,t.textBaseline="top";let b=255,x=255,y=255;if(m&&(b=55,x=55,y=55),c){const t=A(c);t&&(b=t.r,x=t.g,y=t.b)}let S=212,$=255,C=0;const E=A(u);E&&(S=E.r,$=E.g,C=E.b);const T=n*h;for(let e=0;e<v;e++){const o=e/v;for(let n=0;n<p;n++){const a=(n/p-r.x)*w,i=o-r.y,c=Math.sqrt(a*a+i*i)/f;if(c>1){const o=R(3*n,7*e)*Math.max(0,1-3*(c-1));if(o<.62)continue;const r=o*(m?.28:.04);t.fillStyle=`rgba(${b},${x},${y},${r})`,t.fillText(s[1],n*g,e*M);continue}const l=Math.max(0,1-Math.abs(c-(.15+.12*Math.sin(1.1*T)))/.07),h=Math.pow(1-c,2.2),d=Math.min(1,h+.6*l);if(d<.06)continue;const u=Math.floor(d*(s.length-1)),v=s[Math.min(s.length-1,u)],E=l>.35||c<.08,A=m?.85*d:.18*d;t.fillStyle=E?`rgba(${S},${$},${C},${m?.95:.38})`:`rgba(${b},${x},${y},${A})`,t.fillText(v,n*g,e*M)}}}function Rt(t,e,o,n,r={}){const{fontSize:a=14,chars:i=" ·∙•:-=+*#",color:s,accentColor:c,speed:l=.5,harmonics:h=3,lightMode:f=!1}=r,d=c??(f?"#6b8700":"#d4ff00"),m=.62*a,u=1.4*a,g=Math.ceil(e/m),M=Math.ceil(o/u);t.clearRect(0,0,e,o),t.font=`${a}px monospace`,t.textBaseline="top";let p=255,v=255,w=255;if(f&&(p=55,v=55,w=55),s){const t=A(s);t&&(p=t.r,v=t.g,w=t.b)}let b=212,x=255,y=0;const S=A(d);S&&(b=S.r,x=S.g,y=S.b);const $=n*l,C=Array.from({length:h},(t,e)=>1/(e+1)).reduce((t,e)=>t+e,0);for(let e=0;e<M;e++)for(let o=0;o<g;o++){let n=0;for(let t=0;t<h;t++){const r=.18+1.4*R(o*(t+3)+7,e*(t+5)+11),a=R(o*(t+7),e*(t+9)+3)*Math.PI*2,i=1/(t+1);n+=Math.sin($*r+a)*i}const r=.5*(n/C+1);if(r<.28)continue;const a=(r-.28)/.72,s=i[Math.min(i.length-1,Math.floor(a*i.length))],c=r>.88,l=f?.82*a:.13*a;t.fillStyle=c?`rgba(${b},${x},${y},${f?.92:.28})`:`rgba(${p},${v},${w},${l})`,t.fillText(s,o*m,e*u)}}function Ft(t,e,o,n,r={}){const{fontSize:a=13,chars:i=" .,:;i+xX#&@",color:s="#ff4500",hotColor:c="#ffe066",intensity:l=.85,wind:h=0,speed:f=1,lightMode:d=!1}=r,m=.62*a,u=1.4*a,g=Math.ceil(e/m),M=Math.ceil(o/u),p=g*M,v="__fire_heat__",w=t.canvas;let b=w[v];b&&b.length===p||(b=new Float32Array(p),w[v]=b);const x=.18*(.016*f),y=h*f*.8,S=M-1,$=n*f;for(let t=0;t<g;t++){const e=(.6*(.5*Math.sin(.31*t+4.1*$)+.5)+.4*(.5*Math.sin(.73*t-2.7*$)+.5))*l;b[S*g+t]=Math.min(1,e+.15*Math.random()*l),S>0&&(b[(S-1)*g+t]=Math.min(1,.85*e+.1*Math.random()*l))}const C=new Float32Array(p);for(let t=0;t<M-2;t++)for(let e=0;e<g;e++){const o=.4*b[(t+1)*g+e]+.25*b[(t+2)*g+Math.max(0,Math.min(g-1,e+Math.round(y)))]+.175*b[(t+1)*g+Math.max(0,e-1)]+.175*b[(t+1)*g+Math.min(g-1,e+1)];C[t*g+e]=Math.max(0,o-x-.02*Math.random()*f)}for(let t=0;t<g;t++)C[(M-1)*g+t]=b[(M-1)*g+t],M>1&&(C[(M-2)*g+t]=b[(M-2)*g+t]);w[v]=C;const E=A(s)??{r:255,g:69,b:0},T=A(c)??{r:255,g:224,b:102};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";for(let e=0;e<M;e++)for(let o=0;o<g;o++){const n=C[e*g+o];if(n<.03)continue;const r=i[Math.min(i.length-1,Math.floor(n*i.length))];if(" "===r)continue;const a=Math.min(1,1.2*n),s=E.r+(T.r-E.r)*a|0,c=E.g+(T.g-E.g)*a|0,l=E.b+(T.b-E.b)*a|0,h=d?1-.3*n:Math.min(1,n+.15);t.globalAlpha=h,t.fillStyle=`rgb(${s},${c},${l})`,t.fillText(r,o*m,e*u)}t.globalAlpha=1}function kt(t,e,o,n,r={}){const{fontSize:a=13,baseChars:i="ATCG",bridgeChars:s="-=≡",color:c="#00e5ff",color2:l="#ff4081",bridgeColor:h="#88ffcc",speed:f=1,helixCount:d,lightMode:m=!1}=r,u=.62*a,g=1.4*a,M=Math.ceil(e/u),p=Math.ceil(o/g),v=d??Math.max(1,Math.floor(e/80)),w=M/v,b=A(c)??{r:0,g:229,b:255},x=A(l)??{r:255,g:64,b:129},y=A(h)??{r:136,g:255,b:204};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";const S=n*f,$=.35*w;for(let e=0;e<v;e++){const o=w*(e+.5);for(let n=0;n<p;n++){const r=n/p*Math.PI*6-1.8*S,a=o+Math.sin(r)*$,c=o+Math.sin(r+Math.PI)*$,l=Math.round(a),h=Math.round(c);if(l<0||l>=M)continue;const f=R(31*e+7*n,3),d=i[Math.floor(f*i.length)],m=.5*(Math.sin(r)+1),v=.5*(Math.sin(r+Math.PI)+1);if(t.globalAlpha=.35+.65*m,t.fillStyle=`rgb(${b.r},${b.g},${b.b})`,t.fillText(d,l*u,n*g),h>=0&&h<M){const o=R(53*e+11*n,7),r=i[Math.floor(o*i.length)];t.globalAlpha=.35+.65*v,t.fillStyle=`rgb(${x.r},${x.g},${x.b})`,t.fillText(r,h*u,n*g)}if(n%3===0){const o=Math.min(l,h),r=Math.max(l,h);if(r-o>1){const a=R(17*n+43*e,5),i=s[Math.floor(a*s.length)],c=.25*(m+v)+.2;t.globalAlpha=c,t.fillStyle=`rgb(${y.r},${y.g},${y.b})`;for(let e=o+1;e<r;e++)t.fillText(i,e*u,n*g)}}}}t.globalAlpha=1}function Lt(t,e,o,n,r={}){const{fontSize:a=13,chars:i=" .,:;+*#@",color:s="#4caf50",skyColor:c="#1a237e",peakColor:l="#e0e0e0",speed:h=1,roughness:f=.55,heightScale:d=.55,stars:m=!0,lightMode:u=!1}=r,g=.62*a,M=1.4*a,p=Math.ceil(e/g),v=Math.ceil(o/M),w=A(s)??{r:76,g:175,b:80},b=A(c)??{r:26,g:35,b:126},x=A(l)??{r:224,g:224,b:224};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";const y=n*h*.4,S=new Array(p);for(let t=0;t<p;t++){const e=(.5*k((t/p+y)*f*3,.5)+.5)*d;S[t]=Math.floor(e*v)}for(let e=0;e<v;e++)for(let o=0;o<p;o++){const r=v-1-S[o],a=e===r;if(!(e>=r)){if(m){const r=R(7*o+Math.floor(.3*y),13*e);if(r>.97){const a=.3*Math.sin(2*n+100*r)+.7;t.globalAlpha=.5*a,t.fillStyle=`rgb(${b.r+60},${b.g+60},${b.b+80})`,t.fillText("·",o*g,e*M)}}continue}const s=(e-r)/Math.max(1,S[o]),c=i[Math.min(i.length-1,Math.floor(s*i.length))];if(" "===c&&!a)continue;const l=a?1:Math.max(0,1-4*s),h=w.r+(x.r-w.r)*l|0,f=w.g+(x.g-w.g)*l|0,d=w.b+(x.b-w.b)*l|0;t.globalAlpha=.5+.5*s,t.fillStyle=`rgb(${h},${f},${d})`,t.fillText(a?i[i.length-1]:c,o*g,e*M)}t.globalAlpha=1}var zt=1,qt=2,Pt=4,Bt=8,Ht={3:"─",12:"│",9:"┌",10:"┐",5:"└",6:"┘",11:"┬",7:"┴",13:"├",14:"┤",15:"┼",[zt]:"╶",[qt]:"╴",[Pt]:"╵",[Bt]:"╷"};function Wt(t,e,o,n,r={}){const{fontSize:a=13,pulseColor:i="#ffffff",color:s="#00ff88",density:c=.38,speed:l=1,lightMode:h=!1}=r,f=.62*a,d=1.4*a,m=Math.ceil(e/f),u=Math.ceil(o/d),g=A(s)??{r:0,g:255,b:136},M=A(i)??{r:255,g:255,b:255},p=(t,e)=>{if(R(17*t+1,7*e+2)>c)return 0;let o=0;return t+1<m&&R(17*t+1,7*e+2)>.15&&(o|=1),t-1>=0&&R(17*(t-1)+1,7*e+2)>.15&&(o|=2),e+1<u&&R(17*t+1,7*(e+1)+2)>.15&&(o|=8),e-1>=0&&R(17*t+1,7*(e-1)+2)>.15&&(o|=4),o};t.clearRect(0,0,e,o),t.font=`${a}px "JetBrains Mono", monospace`,t.textBaseline="top";const v=n*l;for(let e=0;e<u;e++)for(let o=0;o<m;o++){const n=p(o,e);if(0===n)continue;const r=Ht[n]??"·",a=(8*v+40*R(o,23*e))%m,i=(6*v+40*R(17*e,11*o))%u,s=(1&n||2&n)&&Math.abs(o-a)<1.5,c=(4&n||8&n)&&Math.abs(e-i)<1.5,l=s||c,h=.25+.35*R(3*o,5*e);l?(t.globalAlpha=.95,t.fillStyle=`rgb(${M.r},${M.g},${M.b})`):(t.globalAlpha=h,t.fillStyle=`rgb(${g.r},${g.g},${g.b})`),t.fillText(r,o*f,e*d)}t.globalAlpha=1}var jt=["wave","rain","stars","pulse","noise","grid","aurora","silk","void","morph","fire","dna","terrain","circuit"];function Dt(t,e={}){const{type:o="wave",opacity:n=.2,className:r,zIndex:a=0,colorScheme:i="auto",color:s,...c}=e,l="string"==typeof t?document.querySelector(t):t;if(!l)return console.warn("[asciify] asciiBackground: target not found",t),{destroy:()=>{}};const h=l.style.position;"static"===getComputedStyle(l).position&&(l.style.position="relative");const f=document.createElement("canvas");f.style.cssText=["position:absolute","inset:0","width:100%","height:100%",`opacity:${n}`,"pointer-events:none",`z-index:${a}`].join(";"),r&&(f.className=r),l.prepend(f);const d=f.getContext("2d"),m=window.devicePixelRatio||1,u={x:.5,y:.5},g={x:.5,y:.5},M=()=>"light"===i||"dark"!==i&&(()=>{let t=l;for(;t&&t!==document.documentElement.parentElement;){const e=getComputedStyle(t).backgroundColor;if(e&&"transparent"!==e&&"rgba(0, 0, 0, 0)"!==e){const t=e.match(/rgba?\(\s*(\d+)\s*[,\s]\s*(\d+)\s*[,\s]\s*(\d+)/);if(t)return(.299*+t[1]+.587*+t[2]+.114*+t[3])/255>=.4}t=t.parentElement}const e=document.documentElement,o=(e.getAttribute("data-theme")||"").toLowerCase();return"dark"!==o&&("light"===o||!e.classList.contains("dark")&&window.matchMedia("(prefers-color-scheme: light)").matches)})(),p=s?function(t){const e=t.match(/^#([0-9a-f]{3,8})$/i)?.[1];if(e){const t=e.length<=4?e.split("").map(t=>parseInt(t+t,16)):[parseInt(e.slice(0,2),16),parseInt(e.slice(2,4),16),parseInt(e.slice(4,6),16)];return{r:t[0],g:t[1],b:t[2]}}const o=t.match(/rgba?\(\s*(\d+)[,\s]+(\d+)[,\s]+(\d+)/i);return o?{r:+o[1],g:+o[2],b:+o[3]}:null}(s):null,v=()=>({...c,lightMode:void 0!==c.lightMode?c.lightMode:M(),baseColor:p?`rgba(${p.r},${p.g},${p.b},{a})`:c.baseColor}),w={current:v()},b=()=>{w.current="rain"===o||"stars"===o||"pulse"===o||"noise"===o||"grid"===o||"aurora"===o||"silk"===o||"void"===o||"morph"===o?{...c,lightMode:void 0!==c.lightMode?c.lightMode:M(),color:s??c.color}:"fire"===o||"dna"===o?{...c,color:s??c.color}:"terrain"===o||"circuit"===o?{...c,color:s??c.color,lightMode:void 0!==c.lightMode?c.lightMode:M()}:v()};b();const x=window.matchMedia("(prefers-color-scheme: light)"),y=()=>{b()};let S=null;"auto"===i&&(x.addEventListener("change",y),S=new MutationObserver(y),S.observe(document.documentElement,{attributes:!0,attributeFilter:["data-theme","class"]}));const $=()=>{const t=l.getBoundingClientRect();f.width=t.width*m,f.height=t.height*m,d.setTransform(m,0,0,m,0,0)};$();const C=t=>{const e=l.getBoundingClientRect();u.x=(t.clientX-e.left)/e.width,u.y=(t.clientY-e.top)/e.height},E=new ResizeObserver($);E.observe(l),window.addEventListener("mousemove",C);let A=0,T=0;const I=()=>{g.x+=.07*(u.x-g.x),g.y+=.07*(u.y-g.y);const t=l.getBoundingClientRect();"rain"===o?yt(d,t.width,t.height,A,w.current):"stars"===o?St(d,t.width,t.height,A,g,w.current):"pulse"===o?$t(d,t.width,t.height,A,g,w.current):"noise"===o?Ct(d,t.width,t.height,A,g,w.current):"grid"===o?Et(d,t.width,t.height,A,g,w.current):"aurora"===o?At(d,t.width,t.height,A,g,w.current):"silk"===o?Tt(d,t.width,t.height,A,w.current):"void"===o?It(d,t.width,t.height,A,g,w.current):"morph"===o?Rt(d,t.width,t.height,A,w.current):"fire"===o?Ft(d,t.width,t.height,A,w.current):"dna"===o?kt(d,t.width,t.height,A,w.current):"terrain"===o?Lt(d,t.width,t.height,A,w.current):"circuit"===o?Wt(d,t.width,t.height,A,w.current):L(d,t.width,t.height,A,g,w.current),A+=.016,T=requestAnimationFrame(I)};return T=requestAnimationFrame(I),{destroy:()=>{cancelAnimationFrame(T),E.disconnect(),"auto"===i&&(x.removeEventListener("change",y),S?.disconnect()),window.removeEventListener("mousemove",C),f.remove(),l.style.position=h}}}var Ut=Dt;function Ot(t,e={},o,n){const r={...s,...e},{frame:a,cols:i}=et(t,r,o,n);if(!a.length||0===i)return"";const c=[];for(const t of a)c.push(t.map(t=>t.char).join(""));return c.join("\n")}function Vt(t,e={},o,n){const r={...s,...e},{frame:a,cols:i}=et(t,r,o,n);if(!a.length||0===i)return"";const c=[];for(const t of a){let e="";for(const o of t)" "===o.char||o.a<10?e+=" ":e+=`[38;2;${o.r};${o.g};${o.b}m${o.char}[0m`;c.push(e)}return c.join("\n")}function Yt(t,e,o,n="#505050",r=100){if(!t||e<=0||o<=0)return[];const a=A(n)??{r:80,g:80,b:80},i=t,s=i.length;return Array.from({length:o},(t,o)=>Array.from({length:e},(t,n)=>({char:i[(o*e+n)%s],r:a.r,g:a.g,b:a.b,a:r})))}function Xt(t,e,o,n,r={},a){const{fontSize:i=10,lineHeight:c=1.6,color:l="#505050",opacity:h=100,hoverEffect:f="spotlight",hoverStrength:d=.85,hoverRadius:m=.18,hoverColor:u="#d4ff00"}=r;ct(t,Yt(n,Math.max(1,Math.floor(e/i)),Math.max(1,Math.floor(o/(i*c))),l,h),{...s,hoverEffect:f,hoverStrength:d,hoverRadius:m,hoverColor:u},e,o,0,a??null)}function _t(t,{format:e="png",quality:o=.92,scale:n=1}={}){return new Promise((r,a)=>{let i=t;if(1!==n){const e=document.createElement("canvas");e.width=Math.round(t.width*n),e.height=Math.round(t.height*n);const o=e.getContext("2d");if(!o)return void a(new Error("captureSnapshot: could not get 2d context"));o.drawImage(t,0,0,e.width,e.height),i=e}i.toBlob(t=>t?r(t):a(new Error("captureSnapshot: toBlob returned null")),`image/${e}`,o)})}async function Jt(t,e={}){const{filename:o="asciify-snapshot",format:n="png",...r}=e,a=await _t(t,{format:n,...r}),i="jpeg"===n?"jpg":n,s=document.createElement("a");s.href=URL.createObjectURL(a),s.download=`${o}.${i}`,s.click(),setTimeout(()=>URL.revokeObjectURL(s.href),1e4)}async function Nt(t,{fontSize:e=10,style:o="classic",options:n={},liveOptions:r,mirror:i=!0,constraints:c={facingMode:"user"},dpr:l}={}){if(!navigator.mediaDevices?.getUserMedia)throw new Error("asciifyWebcam: getUserMedia is not supported in this browser.");const h=await navigator.mediaDevices.getUserMedia({video:c}),f=document.createElement("video");f.srcObject=h,f.muted=!0,f.playsInline=!0,await new Promise((t,e)=>{f.onloadedmetadata=()=>t(),f.onerror=()=>e(new Error("asciifyWebcam: video stream failed to load.")),f.play().catch(e)});const d={...s,...a[o],...n,fontSize:e},m=t.getContext("2d");if(!m)throw new Error("asciifyWebcam: could not get 2d context from canvas.");const u=l??("undefined"!=typeof window?window.devicePixelRatio:1)??1;1!==u&&m.scale(u,u);let g=null;const M={x:.5,y:.5,intensity:0},p=e=>{const o=t.getBoundingClientRect();g={x:(e.clientX-o.left)/o.width,y:(e.clientY-o.top)/o.height}},v=()=>{g=null};d.hoverStrength>0&&(t.addEventListener("mousemove",p),t.addEventListener("mouseleave",v));let w,b=!1;const x=performance.now(),y=e=>{if(!b){if(f.readyState>=f.HAVE_CURRENT_DATA){const o=t.width/u,n=t.height/u,a=(e-x)/1e3,s=r?{...d,...r()}:d;s.hoverStrength>0?(t.addEventListener("mousemove",p),t.addEventListener("mouseleave",v)):(t.removeEventListener("mousemove",p),t.removeEventListener("mouseleave",v));const{frame:c}=et(f,s,o,n);if(g){const t=g.x-M.x,e=g.y-M.y,o=Math.sqrt(t*t+e*e),n=Math.min(.25,.06+.8*o);M.x+=t*n,M.y+=e*n,M.intensity+=.12*(1-M.intensity)}else M.intensity*=.965,M.intensity<.003&&(M.intensity=0);const l=M.intensity>.003?{x:M.x,y:M.y,intensity:M.intensity}:null;i?(m.save(),m.scale(-1,1),m.translate(-o,0),ct(m,c,s,o,n,a,l),m.restore()):ct(m,c,s,o,n,a,l)}w=requestAnimationFrame(y)}};return w=requestAnimationFrame(y),()=>{b=!0,cancelAnimationFrame(w),t.removeEventListener("mousemove",p),t.removeEventListener("mouseleave",v),h.getTracks().forEach(t=>t.stop()),f.srcObject=null}}var Kt={A:[28,54,99,127,99,99,99],B:[126,99,99,126,99,99,126],C:[62,99,96,96,96,99,62],D:[124,102,99,99,99,102,124],E:[127,96,96,124,96,96,127],F:[127,96,96,124,96,96,96],G:[62,99,96,111,99,99,62],H:[99,99,99,127,99,99,99],I:[127,8,8,8,8,8,127],J:[63,6,6,6,102,102,60],K:[99,102,108,120,108,102,99],L:[96,96,96,96,96,96,127],M:[99,119,107,107,99,99,99],N:[99,115,107,103,99,99,99],O:[62,99,99,99,99,99,62],P:[126,99,99,126,96,96,96],Q:[62,99,99,99,107,102,61],R:[126,99,99,126,108,102,99],S:[62,99,96,62,3,99,62],T:[127,8,8,8,8,8,8],U:[99,99,99,99,99,99,62],V:[99,99,99,99,54,28,8],W:[99,99,99,107,107,54,20],X:[99,54,28,8,28,54,99],Y:[99,99,54,28,8,8,8],Z:[127,3,6,12,24,48,127],a:[0,0,60,3,62,99,61],b:[96,96,124,99,99,99,124],c:[0,0,62,96,96,96,62],d:[3,3,31,99,99,99,31],e:[0,0,62,99,127,96,62],f:[30,48,48,126,48,48,48],g:[0,0,63,99,63,3,62],h:[96,96,124,99,99,99,99],i:[8,0,24,8,8,8,28],j:[4,0,12,4,4,36,24],k:[96,96,102,108,120,108,102],l:[24,8,8,8,8,8,28],m:[0,0,92,107,107,99,99],n:[0,0,94,99,99,99,99],o:[0,0,62,99,99,99,62],p:[0,0,126,99,126,96,96],q:[0,0,63,99,63,3,3],r:[0,0,94,99,96,96,96],s:[0,0,62,96,62,3,124],t:[48,48,126,48,48,48,30],u:[0,0,99,99,99,103,59],v:[0,0,99,99,54,28,8],w:[0,0,99,99,107,54,20],x:[0,0,99,54,28,54,99],y:[0,0,99,99,63,3,62],z:[0,0,127,6,12,24,127],0:[62,99,103,107,115,99,62],1:[8,24,56,8,8,8,62],2:[62,99,3,6,24,48,127],3:[62,99,3,30,3,99,62],4:[6,14,22,38,127,6,6],5:[127,96,126,3,3,99,62],6:[62,99,96,126,99,99,62],7:[127,3,6,12,24,24,24],8:[62,99,99,62,99,99,62],9:[62,99,99,63,3,99,62]," ":[0,0,0,0,0,0,0],"!":[24,24,24,24,24,0,24],"?":[62,99,3,14,8,0,8],".":[0,0,0,0,0,24,24],",":[0,0,0,0,0,24,48],";":[0,24,24,0,24,24,48],":":[0,24,24,0,24,24,0],"-":[0,0,0,62,0,0,0],_:[0,0,0,0,0,0,127],"'":[24,24,32,0,0,0,0],'"':[54,54,36,0,0,0,0],"`":[24,8,0,0,0,0,0],")":[24,12,6,6,6,12,24],"(":[12,24,48,48,48,24,12],"[":[60,48,48,48,48,48,60],"]":[30,6,6,6,6,6,30],"{":[14,24,24,48,24,24,14],"}":[56,12,12,6,12,12,56],"/":[3,6,12,24,48,96,0],"\\":[96,48,24,12,6,3,0],"|":[8,8,8,8,8,8,8],"+":[0,8,8,62,8,8,0],"=":[0,0,62,0,62,0,0],"*":[0,42,28,127,28,42,0],"#":[36,36,127,36,127,36,36],"@":[62,99,111,107,111,96,62],"&":[24,36,24,60,74,68,58],"%":[99,38,4,8,16,50,99],$:[8,62,72,62,9,62,8],"^":[8,20,34,0,0,0,0],"~":[0,0,50,76,0,0,0],"<":[6,12,24,48,24,12,6],">":[48,24,12,6,12,24,48]},Gt=[127,65,65,65,65,65,127];function Qt(t){return Kt[t]??Kt[t.toUpperCase()]??Gt}function Zt(t,e={}){if(!t)return"";const{char:o="█",scale:n=1}=e,r=[...o][0]??"█",a=Math.max(1,Math.floor(n)),i=7*a,s=a,c=Array.from({length:i},()=>"");for(let e=0;e<t.length;e++){const o=Qt(t[e]);for(let t=0;t<7;t++){const e=o[t];let n="";for(let t=6;t>=0;t--)n+=(e>>t&1?r:" ").repeat(a);for(let e=0;e<a;e++)c[t*a+e]+=n}if(e<t.length-1)for(let t=0;t<i;t++)c[t]+=" ".repeat(s)}return c.join("\n")}function te(t,e,o={}){const{color:n="#d4ff00",bgColor:r,fontSize:a=10}=o,i=Zt(e,o);if(!i)return;const s=i.split("\n"),c=Math.max(...s.map(t=>[...t].length));t.width=Math.ceil(c*a*.6),t.height=Math.ceil(s.length*a);const l=t.getContext("2d");r&&"transparent"!==r?(l.fillStyle=r,l.fillRect(0,0,t.width,t.height)):l.clearRect(0,0,t.width,t.height),l.fillStyle=n,l.font=`${a}px monospace`,l.textBaseline="top",s.forEach((t,e)=>l.fillText(t,0,e*a))}export{a as ART_STYLE_PRESETS,jt as BACKGROUND_TYPES,n as CHARSETS,r as CHARSET_SEQUENCES,s as DEFAULT_OPTIONS,c as HOVER_PRESETS,i as LIVING_STYLE_PRESETS,o as PALETTE_THEMES,Dt as asciiBackground,Ot as asciiText,Vt as asciiTextAnsi,vt as asciify,wt as asciifyGif,xt as asciifyLiveVideo,Zt as asciifyText,bt as asciifyVideo,Nt as asciifyWebcam,Yt as buildTextFrame,_t as captureSnapshot,N as clearAsciifyCaches,ut as createVideoScrollScrub,it as gifToAsciiFrames,st as gifToAsciiTextFrames,et as imageToAsciiFrame,ot as imageToAsciiTextFrame,Ut as mountWaveBackground,At as renderAuroraBackground,Wt as renderCircuitBackground,kt as renderDnaBackground,Ft as renderFireBackground,ct as renderFrameToCanvas,Et as renderGridBackground,Rt as renderMorphBackground,Ct as renderNoiseBackground,$t as renderPulseBackground,yt as renderRainBackground,Tt as renderSilkBackground,St as renderStarsBackground,Lt as renderTerrainBackground,Xt as renderTextBackground,nt as renderTextFrameToCanvas,te as renderTextToCanvas,It as renderVoidBackground,L as renderWaveBackground,Jt as snapshotAndDownload,rt as videoToAsciiFrames,at as videoToAsciiTextFrames};//# sourceMappingURL=index.js.map
|