@lagless/misc 0.0.33

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.
@@ -0,0 +1,195 @@
1
+ // Precomputed lookup table for fast byte -> hex conversion
2
+ const BYTE_TO_HEX = [];
3
+ for (let i = 0; i < 256; i++) {
4
+ BYTE_TO_HEX[i] = (i + 0x100).toString(16).substring(1);
5
+ }
6
+ // Convert a single hex character to its numeric value (0-15)
7
+ function hexCharToNibble(code) {
8
+ if (code >= 48 && code <= 57)
9
+ return code - 48;
10
+ if (code >= 97 && code <= 102)
11
+ return code - 87;
12
+ if (code >= 65 && code <= 70)
13
+ return code - 55;
14
+ return -1;
15
+ }
16
+ // Parse canonical UUID string
17
+ function uuidStringToBytes(uuid) {
18
+ const str = uuid.toLowerCase();
19
+ if (str.length !== 36 || str[8] !== '-' || str[13] !== '-' || str[18] !== '-' || str[23] !== '-') {
20
+ throw new TypeError(`Invalid UUID string: "${uuid}"`);
21
+ }
22
+ const bytes = new Uint8Array(16);
23
+ let byteIndex = 0;
24
+ for (let i = 0; i < 36;) {
25
+ if (str[i] === '-') {
26
+ i++;
27
+ continue;
28
+ }
29
+ const c1 = hexCharToNibble(str.charCodeAt(i++));
30
+ const c2 = hexCharToNibble(str.charCodeAt(i++));
31
+ if (c1 < 0 || c2 < 0)
32
+ throw new TypeError(`Invalid UUID string: "${uuid}"`);
33
+ bytes[byteIndex++] = (c1 << 4) | c2;
34
+ }
35
+ if (byteIndex !== 16)
36
+ throw new TypeError(`Invalid UUID string: "${uuid}"`);
37
+ return bytes;
38
+ }
39
+ function bytesToUuidString(bytes) {
40
+ if (bytes.length !== 16)
41
+ throw new RangeError('UUID byte array must be 16 bytes long');
42
+ const bth = BYTE_TO_HEX;
43
+ return (bth[bytes[0]] +
44
+ bth[bytes[1]] +
45
+ bth[bytes[2]] +
46
+ bth[bytes[3]] +
47
+ '-' +
48
+ bth[bytes[4]] +
49
+ bth[bytes[5]] +
50
+ '-' +
51
+ bth[bytes[6]] +
52
+ bth[bytes[7]] +
53
+ '-' +
54
+ bth[bytes[8]] +
55
+ bth[bytes[9]] +
56
+ '-' +
57
+ bth[bytes[10]] +
58
+ bth[bytes[11]] +
59
+ bth[bytes[12]] +
60
+ bth[bytes[13]] +
61
+ bth[bytes[14]] +
62
+ bth[bytes[15]]);
63
+ }
64
+ function getRandomBytes(target) {
65
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
66
+ const g = globalThis;
67
+ const cryptoObj = g.crypto || g.msCrypto;
68
+ if (cryptoObj && typeof cryptoObj.getRandomValues === 'function') {
69
+ cryptoObj.getRandomValues(target);
70
+ return;
71
+ }
72
+ if (typeof require === 'function') {
73
+ try {
74
+ const nodeCrypto = require('crypto');
75
+ if (nodeCrypto && typeof nodeCrypto.randomFillSync === 'function') {
76
+ nodeCrypto.randomFillSync(target);
77
+ return;
78
+ }
79
+ if (nodeCrypto && typeof nodeCrypto.randomBytes === 'function') {
80
+ const buf = nodeCrypto.randomBytes(target.length);
81
+ target.set(buf);
82
+ return;
83
+ }
84
+ }
85
+ catch {
86
+ /* ignore */
87
+ }
88
+ }
89
+ for (let i = 0; i < target.length; i++) {
90
+ target[i] = (Math.random() * 256) | 0;
91
+ }
92
+ }
93
+ /**
94
+ * FNV-1a Hash implementation (32-bit)
95
+ * Used to generate a signature for the masked UUID.
96
+ * Fast and simple distribution.
97
+ */
98
+ function fnv1a32(bytes, length) {
99
+ let hash = 0x811c9dc5; // Offset basis
100
+ for (let i = 0; i < length; i++) {
101
+ hash ^= bytes[i];
102
+ hash = Math.imul(hash, 0x01000193); // FNV prime
103
+ }
104
+ return hash >>> 0; // Ensure unsigned 32-bit integer
105
+ }
106
+ export class UUID {
107
+ _bytes;
108
+ _stringCache = null;
109
+ constructor(bytes) {
110
+ this._bytes = bytes;
111
+ }
112
+ /**
113
+ * Generate a standard random (v4) UUID.
114
+ */
115
+ static generate() {
116
+ const bytes = new Uint8Array(16);
117
+ getRandomBytes(bytes);
118
+ // RFC 4122 Version 4
119
+ bytes[6] = (bytes[6] & 0x0f) | 0x40;
120
+ // RFC 4122 Variant
121
+ bytes[8] = (bytes[8] & 0x3f) | 0x80;
122
+ return new UUID(bytes);
123
+ }
124
+ /**
125
+ * Generate a "Masked" UUID.
126
+ *
127
+ * It looks like a standard v4 UUID, but the last 4 bytes (32 bits)
128
+ * are a checksum of the first 12 bytes.
129
+ *
130
+ * Entropy: 90 bits (vs 122 in standard v4).
131
+ * False positive rate: 1 in ~4.3 billion.
132
+ */
133
+ static generateMasked() {
134
+ const bytes = new Uint8Array(16);
135
+ getRandomBytes(bytes);
136
+ // Apply RFC 4122 flags first to ensure the hash covers the final version/variant
137
+ bytes[6] = (bytes[6] & 0x0f) | 0x40;
138
+ bytes[8] = (bytes[8] & 0x3f) | 0x80;
139
+ // Calculate hash of the first 12 bytes
140
+ const hash = fnv1a32(bytes, 12);
141
+ // Embed hash into the last 4 bytes
142
+ bytes[12] = (hash >>> 24) & 0xff;
143
+ bytes[13] = (hash >>> 16) & 0xff;
144
+ bytes[14] = (hash >>> 8) & 0xff;
145
+ bytes[15] = hash & 0xff;
146
+ return new UUID(bytes);
147
+ }
148
+ /**
149
+ * Check if a Uint8Array (16 bytes) represents a Masked UUID.
150
+ */
151
+ static isMaskedUint8(bytes) {
152
+ if (bytes.length !== 16)
153
+ return false;
154
+ // 1. Calculate expected hash from the first 12 bytes
155
+ const expectedHash = fnv1a32(bytes, 12);
156
+ // 2. Read actual hash from the last 4 bytes
157
+ const actualHash = (bytes[12] << 24) | (bytes[13] << 16) | (bytes[14] << 8) | bytes[15];
158
+ // 3. Compare (using unsigned shift to handle JS signed integers)
159
+ return actualHash >>> 0 === expectedHash;
160
+ }
161
+ /**
162
+ * Check if a UUID string is a Masked UUID.
163
+ * Returns false if string is invalid or not masked.
164
+ */
165
+ static isMaskedString(uuidStr) {
166
+ try {
167
+ const bytes = uuidStringToBytes(uuidStr);
168
+ return UUID.isMaskedUint8(bytes);
169
+ }
170
+ catch {
171
+ return false;
172
+ }
173
+ }
174
+ // ... (остальные методы без изменений)
175
+ static fromString(uuidStr) {
176
+ const bytes = uuidStringToBytes(uuidStr);
177
+ return new UUID(bytes);
178
+ }
179
+ static fromUint8(uuidUint8) {
180
+ if (uuidUint8.length !== 16) {
181
+ throw new RangeError('UUID byte array must be 16 bytes long');
182
+ }
183
+ const bytes = new Uint8Array(uuidUint8);
184
+ return new UUID(bytes);
185
+ }
186
+ asString() {
187
+ if (this._stringCache === null) {
188
+ this._stringCache = bytesToUuidString(this._bytes);
189
+ }
190
+ return this._stringCache;
191
+ }
192
+ asUint8() {
193
+ return new Uint8Array(this._bytes);
194
+ }
195
+ }
@@ -0,0 +1,82 @@
1
+ export interface VisualSmoother2dOptions {
2
+ /**
3
+ * Distance threshold (px) to detect a rollback-induced position jump.
4
+ * Jumps below this are treated as normal movement.
5
+ * Default: 10
6
+ */
7
+ positionJumpThreshold?: number;
8
+ /**
9
+ * Rotation threshold (radians) to detect a rollback-induced rotation jump.
10
+ * Default: PI / 4
11
+ */
12
+ rotationJumpThreshold?: number;
13
+ /**
14
+ * Half-life of offset decay in ms. Controls how fast the visual offset
15
+ * converges to the true simulation position.
16
+ * Lower = snappier, higher = smoother.
17
+ * Default: 200
18
+ */
19
+ smoothingHalfLifeMs?: number;
20
+ /**
21
+ * Position jumps larger than this snap instantly (teleport/respawn).
22
+ * Default: Infinity (never snap)
23
+ */
24
+ teleportThreshold?: number;
25
+ }
26
+ /**
27
+ * Handles both sim↔render interpolation and rollback lag smoothing in one place.
28
+ *
29
+ * Takes raw ECS prev/current values + interpolationFactor, outputs smoothed render position.
30
+ * Normal operation: pure linear interpolation, zero added latency.
31
+ * After rollback: absorbs the jump into an offset that decays exponentially.
32
+ *
33
+ * Usage:
34
+ * ```ts
35
+ * const smoother = new VisualSmoother2d();
36
+ *
37
+ * // each render frame:
38
+ * smoother.update(
39
+ * transform2d.unsafe.prevPositionX[entity],
40
+ * transform2d.unsafe.prevPositionY[entity],
41
+ * transform2d.unsafe.positionX[entity],
42
+ * transform2d.unsafe.positionY[entity],
43
+ * transform2d.unsafe.prevRotation[entity],
44
+ * transform2d.unsafe.rotation[entity],
45
+ * simulation.interpolationFactor,
46
+ * );
47
+ * container.x = smoother.x;
48
+ * container.y = smoother.y;
49
+ * container.rotation = smoother.rotation;
50
+ * ```
51
+ */
52
+ export declare class VisualSmoother2d {
53
+ /** Smoothed X position (read after update). */
54
+ x: number;
55
+ /** Smoothed Y position (read after update). */
56
+ y: number;
57
+ /** Smoothed rotation (read after update). */
58
+ rotation: number;
59
+ /** Whether there is a non-zero offset being smoothed right now. */
60
+ get isSmoothing(): boolean;
61
+ private _offsetX;
62
+ private _offsetY;
63
+ private _offsetRotation;
64
+ private _lastSimX;
65
+ private _lastSimY;
66
+ private _lastSimRotation;
67
+ private _initialized;
68
+ private _lastTime;
69
+ private readonly _posJumpThreshSq;
70
+ private readonly _rotJumpThresh;
71
+ private readonly _halfLifeMs;
72
+ private readonly _teleportThreshSq;
73
+ constructor(options?: VisualSmoother2dOptions);
74
+ /**
75
+ * Feed raw ECS transform data. Call once per render frame.
76
+ * Read `x`, `y`, `rotation` after calling.
77
+ */
78
+ update(prevPositionX: number, prevPositionY: number, positionX: number, positionY: number, prevRotation: number, rotation: number, interpolationFactor: number): void;
79
+ /** Reset all state. Use when switching entities or reinitializing. */
80
+ reset(): void;
81
+ }
82
+ //# sourceMappingURL=visual-smoother-2d.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"visual-smoother-2d.d.ts","sourceRoot":"","sources":["../../src/lib/visual-smoother-2d.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,uBAAuB;IACtC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;;;OAKG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,qBAAa,gBAAgB;IAC3B,+CAA+C;IACxC,CAAC,SAAK;IACb,+CAA+C;IACxC,CAAC,SAAK;IACb,6CAA6C;IACtC,QAAQ,SAAK;IAEpB,mEAAmE;IACnE,IAAW,WAAW,IAAI,OAAO,CAEhC;IAED,OAAO,CAAC,QAAQ,CAAK;IACrB,OAAO,CAAC,QAAQ,CAAK;IACrB,OAAO,CAAC,eAAe,CAAK;IAE5B,OAAO,CAAC,SAAS,CAAK;IACtB,OAAO,CAAC,SAAS,CAAK;IACtB,OAAO,CAAC,gBAAgB,CAAK;IAE7B,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,SAAS,CAAK;IAEtB,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAS;IAC1C,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAS;IACxC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAS;IACrC,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAS;gBAE/B,OAAO,CAAC,EAAE,uBAAuB;IAS7C;;;OAGG;IACI,MAAM,CACX,aAAa,EAAE,MAAM,EACrB,aAAa,EAAE,MAAM,EACrB,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,MAAM,EACjB,YAAY,EAAE,MAAM,EACpB,QAAQ,EAAE,MAAM,EAChB,mBAAmB,EAAE,MAAM,GAC1B,IAAI;IAmEP,sEAAsE;IAC/D,KAAK,IAAI,IAAI;CAOrB"}
@@ -0,0 +1,141 @@
1
+ /**
2
+ * Handles both sim↔render interpolation and rollback lag smoothing in one place.
3
+ *
4
+ * Takes raw ECS prev/current values + interpolationFactor, outputs smoothed render position.
5
+ * Normal operation: pure linear interpolation, zero added latency.
6
+ * After rollback: absorbs the jump into an offset that decays exponentially.
7
+ *
8
+ * Usage:
9
+ * ```ts
10
+ * const smoother = new VisualSmoother2d();
11
+ *
12
+ * // each render frame:
13
+ * smoother.update(
14
+ * transform2d.unsafe.prevPositionX[entity],
15
+ * transform2d.unsafe.prevPositionY[entity],
16
+ * transform2d.unsafe.positionX[entity],
17
+ * transform2d.unsafe.positionY[entity],
18
+ * transform2d.unsafe.prevRotation[entity],
19
+ * transform2d.unsafe.rotation[entity],
20
+ * simulation.interpolationFactor,
21
+ * );
22
+ * container.x = smoother.x;
23
+ * container.y = smoother.y;
24
+ * container.rotation = smoother.rotation;
25
+ * ```
26
+ */
27
+ export class VisualSmoother2d {
28
+ /** Smoothed X position (read after update). */
29
+ x = 0;
30
+ /** Smoothed Y position (read after update). */
31
+ y = 0;
32
+ /** Smoothed rotation (read after update). */
33
+ rotation = 0;
34
+ /** Whether there is a non-zero offset being smoothed right now. */
35
+ get isSmoothing() {
36
+ return this._offsetX !== 0 || this._offsetY !== 0 || this._offsetRotation !== 0;
37
+ }
38
+ _offsetX = 0;
39
+ _offsetY = 0;
40
+ _offsetRotation = 0;
41
+ _lastSimX = 0;
42
+ _lastSimY = 0;
43
+ _lastSimRotation = 0;
44
+ _initialized = false;
45
+ _lastTime = 0;
46
+ _posJumpThreshSq;
47
+ _rotJumpThresh;
48
+ _halfLifeMs;
49
+ _teleportThreshSq;
50
+ constructor(options) {
51
+ const posThresh = options?.positionJumpThreshold ?? 10;
52
+ this._posJumpThreshSq = posThresh * posThresh;
53
+ this._rotJumpThresh = options?.rotationJumpThreshold ?? Math.PI / 4;
54
+ this._halfLifeMs = options?.smoothingHalfLifeMs ?? 200;
55
+ const teleport = options?.teleportThreshold ?? Infinity;
56
+ this._teleportThreshSq = teleport * teleport;
57
+ }
58
+ /**
59
+ * Feed raw ECS transform data. Call once per render frame.
60
+ * Read `x`, `y`, `rotation` after calling.
61
+ */
62
+ update(prevPositionX, prevPositionY, positionX, positionY, prevRotation, rotation, interpolationFactor) {
63
+ const now = performance.now();
64
+ const dt = this._lastTime > 0 ? now - this._lastTime : 0;
65
+ this._lastTime = now;
66
+ // --- Step 1: sim interpolation ---
67
+ const simX = prevPositionX + (positionX - prevPositionX) * interpolationFactor;
68
+ const simY = prevPositionY + (positionY - prevPositionY) * interpolationFactor;
69
+ const simRotation = lerpAngle(prevRotation, rotation, interpolationFactor);
70
+ if (!this._initialized) {
71
+ this._initialized = true;
72
+ this.x = this._lastSimX = simX;
73
+ this.y = this._lastSimY = simY;
74
+ this.rotation = this._lastSimRotation = simRotation;
75
+ return;
76
+ }
77
+ // --- Step 2: detect position jump ---
78
+ const dx = simX - this._lastSimX;
79
+ const dy = simY - this._lastSimY;
80
+ const distSq = dx * dx + dy * dy;
81
+ if (distSq >= this._teleportThreshSq) {
82
+ // Intentional teleport — snap, reset offset
83
+ this._offsetX = 0;
84
+ this._offsetY = 0;
85
+ }
86
+ else if (distSq >= this._posJumpThreshSq) {
87
+ // Rollback jump — absorb into offset so rendered pos stays put
88
+ this._offsetX -= dx;
89
+ this._offsetY -= dy;
90
+ }
91
+ // --- Step 3: detect rotation jump ---
92
+ const dRot = shortestAngleDiff(this._lastSimRotation, simRotation);
93
+ if (Math.abs(dRot) >= this._rotJumpThresh) {
94
+ this._offsetRotation -= dRot;
95
+ }
96
+ // --- Step 4: decay offset (frame-rate independent) ---
97
+ if (dt > 0 && (this._offsetX !== 0 || this._offsetY !== 0 || this._offsetRotation !== 0)) {
98
+ const decay = Math.pow(0.5, dt / this._halfLifeMs);
99
+ this._offsetX *= decay;
100
+ this._offsetY *= decay;
101
+ this._offsetRotation *= decay;
102
+ // Snap to zero when negligible
103
+ if (this._offsetX * this._offsetX + this._offsetY * this._offsetY < 0.01) {
104
+ this._offsetX = 0;
105
+ this._offsetY = 0;
106
+ }
107
+ if (Math.abs(this._offsetRotation) < 0.001) {
108
+ this._offsetRotation = 0;
109
+ }
110
+ }
111
+ // --- Step 5: output ---
112
+ this.x = simX + this._offsetX;
113
+ this.y = simY + this._offsetY;
114
+ this.rotation = simRotation + this._offsetRotation;
115
+ // Store raw sim for next-frame jump detection
116
+ this._lastSimX = simX;
117
+ this._lastSimY = simY;
118
+ this._lastSimRotation = simRotation;
119
+ }
120
+ /** Reset all state. Use when switching entities or reinitializing. */
121
+ reset() {
122
+ this._initialized = false;
123
+ this._offsetX = 0;
124
+ this._offsetY = 0;
125
+ this._offsetRotation = 0;
126
+ this._lastTime = 0;
127
+ }
128
+ }
129
+ /** Shortest signed angle difference from `from` to `to`, result in (-PI, PI]. */
130
+ function shortestAngleDiff(from, to) {
131
+ let diff = to - from;
132
+ while (diff > Math.PI)
133
+ diff -= 2 * Math.PI;
134
+ while (diff < -Math.PI)
135
+ diff += 2 * Math.PI;
136
+ return diff;
137
+ }
138
+ /** Interpolate angle along shortest path. */
139
+ function lerpAngle(a, b, t) {
140
+ return a + shortestAngleDiff(a, b) * t;
141
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../src/lib/now.ts","../src/lib/uuid.ts","../src/lib/ring-buffer.ts","../src/lib/snapshot-history.ts","../src/lib/logger.ts","../src/lib/phase-nudger.ts","../src/lib/simulation-clock.ts","../../math/dist/lib/math-ops.d.ts","../../math/dist/lib/vector2.d.ts","../../math/dist/lib/vector2-buffers.d.ts","../../math/dist/index.d.ts","../src/lib/transform2d-utils.ts","../src/lib/visual-smoother-2d.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts"],"fileIdsList":[[67,68,69,79,122],[79,122],[68,79,122],[59,60,61,62,63,64,66,71,72,79,122],[59,79,122],[59,64,79,122],[59,60,65,79,122],[59,70,79,122],[79,119,122],[79,121,122],[122],[79,122,127,156],[79,122,123,128,134,135,142,153,164],[79,122,123,124,134,142],[74,75,76,79,122],[79,122,125,165],[79,122,126,127,135,143],[79,122,127,153,161],[79,122,128,130,134,142],[79,121,122,129],[79,122,130,131],[79,122,132,134],[79,121,122,134],[79,122,134,135,136,153,164],[79,122,134,135,136,149,153,156],[79,117,122],[79,122,130,134,137,142,153,164],[79,122,134,135,137,138,142,153,161,164],[79,122,137,139,153,161,164],[77,78,79,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],[79,122,134,140],[79,122,141,164,169],[79,122,130,134,142,153],[79,122,143],[79,122,144],[79,121,122,145],[79,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],[79,122,147],[79,122,148],[79,122,134,149,150],[79,122,149,151,165,167],[79,122,134,153,154,156],[79,122,155,156],[79,122,153,154],[79,122,156],[79,122,157],[79,119,122,153,158],[79,122,134,159,160],[79,122,159,160],[79,122,127,142,153,161],[79,122,162],[79,122,142,163],[79,122,137,148,164],[79,122,127,165],[79,122,153,166],[79,122,141,167],[79,122,168],[79,122,134,136,145,153,156,164,167,169],[79,122,153,170],[58,79,122],[79,89,93,122,164],[79,89,122,153,164],[79,84,122],[79,86,89,122,161,164],[79,122,142,161],[79,122,171],[79,84,122,171],[79,86,89,122,142,164],[79,81,82,85,88,122,134,153,164],[79,89,96,122],[79,81,87,122],[79,89,110,111,122],[79,85,89,122,156,164,171],[79,110,122,171],[79,83,84,122,171],[79,89,122],[79,83,84,85,86,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,122],[79,89,104,122],[79,89,96,97,122],[79,87,89,97,98,122],[79,88,122],[79,81,84,89,122],[79,89,93,97,98,122],[79,93,122],[79,87,89,92,122,164],[79,81,86,89,96,122],[79,122,153],[79,84,89,110,122,169,171]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"d719af5efbedbb00f479781dec07d0b81959e771ec97c1bad8c6da562838a99c","signature":"b6c4414ae580cf1ab858f1851520f1d0cee1ca59117ca7e836116cf9618c8819","impliedFormat":99},{"version":"871fdcd3119d27376c03b1275bb88f3dd4c98eaf189d9184d37b0190ff6ba0bd","signature":"1c440fad2b3f198c3b034257840dcf2999a41770d0b2cfccfc047189d98df18f","impliedFormat":99},{"version":"8f0c0263f307b796504af00f4a0be34a1390a0b97fe09750cb3e5fb35bc9feba","signature":"ef9f67b0f0bd71f90d52d8589b3b3c45e1267129b13f874c049a805ecd7ac37f","impliedFormat":99},{"version":"27654a93d4db92f017e2356166b1b68c039da7a4e38d62a28299512fe672c8f7","signature":"3d26b5544141b556e3b263e78bbe30fe9927f48f58a3ade62c0de58b4d41d9a4","impliedFormat":99},{"version":"7ed3e0eced181a128d82d02163598dbf91816757f301d95da66aa690d6deb554","signature":"6b42cbd9637a7b84238d4cd7212e5405d9a3274f505a1cc8dc008f5ef7cbce12","impliedFormat":99},{"version":"fc74baae238bf5d0ba2c1832240ec72e0910ebfd3900b0a32cb2162314f11c35","signature":"d1beb1ffdddb2cf5fe1e58557c8783d3070680c6165bc6652993ed2a7bf48f38","impliedFormat":99},{"version":"e9b420a465f706baa94b5e435e49efe79d5e126cae405490ce57f9ee255f06cc","signature":"4e3121b5b60b986fa48641a69098b66f0b37c876a973fb0d671394b09913752c","impliedFormat":99},{"version":"e82c68cc9bee262ff2401f8202bb43306b96e207b7abfa13f5f351fc8ce41b9d","impliedFormat":99},{"version":"9ba510bcf107f3b93bbe83ae63dc6251410769048ec2a1c300c13b8efe555f92","impliedFormat":99},{"version":"3e36da5942397ee0b3a4e38cdde9a6b997f8eb72463e3cd8138c225aabe27178","impliedFormat":99},{"version":"02c78f579b3d9601011f7770e2c17ffb223116eb9d7739394d09005408e65928","impliedFormat":99},{"version":"e251832a3e47c85d76ddbd0ba32c816b2dbb7a874c16334c789186e86cc36831","signature":"6573f1553e8ab870f43047dac35527ec3281a9f1c57c4f2be9872306a6dbe5ae","impliedFormat":99},{"version":"395dc0fd8428530fab9845d08c92e8186fb82ecfb800e181f3cd10d44b26a8e9","signature":"899a34e4f158e0b0ef1a72b566bf4041edeef09d0547f8882f740ec5dfd2c775","impliedFormat":99},{"version":"23c7c084d919b1a6d948a8a0952a18969caaf0740f19651f046d978440b06d57","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1}],"root":[[60,66],[71,73]],"options":{"composite":true,"declarationMap":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"module":199,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.lib.tsbuildinfo"},"referencedMap":[[70,1],[67,2],[69,3],[68,2],[73,4],[64,5],[60,5],[65,6],[62,5],[66,7],[63,5],[71,8],[61,5],[72,5],[119,9],[120,9],[121,10],[79,11],[122,12],[123,13],[124,14],[74,2],[77,15],[75,2],[76,2],[125,16],[126,17],[127,18],[128,19],[129,20],[130,21],[131,21],[133,2],[132,22],[134,23],[135,24],[136,25],[118,26],[78,2],[137,27],[138,28],[139,29],[171,30],[140,31],[141,32],[142,33],[143,34],[144,35],[145,36],[146,37],[147,38],[148,39],[149,40],[150,40],[151,41],[152,2],[153,42],[155,43],[154,44],[156,45],[157,46],[158,47],[159,48],[160,49],[161,50],[162,51],[163,52],[164,53],[165,54],[166,55],[167,56],[168,57],[169,58],[170,59],[80,2],[59,60],[58,2],[56,2],[57,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[21,2],[4,2],[22,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[8,2],[49,2],[46,2],[47,2],[48,2],[50,2],[9,2],[51,2],[52,2],[53,2],[55,2],[54,2],[1,2],[96,61],[106,62],[95,61],[116,63],[87,64],[86,65],[115,66],[109,67],[114,68],[89,69],[103,70],[88,71],[112,72],[84,73],[83,66],[113,74],[85,75],[90,76],[91,2],[94,76],[81,2],[117,77],[107,78],[98,79],[99,80],[101,81],[97,82],[100,83],[110,66],[92,84],[93,85],[102,86],[82,87],[105,78],[104,76],[108,2],[111,88]],"latestChangedDtsFile":"./lib/logger.d.ts","version":"5.9.3"}
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@lagless/misc",
3
+ "version": "0.0.33",
4
+ "license": "MIT",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/ppauel/lagless",
8
+ "directory": "libs/misc"
9
+ },
10
+ "type": "module",
11
+ "main": "./dist/index.js",
12
+ "module": "./dist/index.js",
13
+ "types": "./dist/index.d.ts",
14
+ "exports": {
15
+ "./package.json": "./package.json",
16
+ ".": {
17
+ "@lagless/source": "./src/index.ts",
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.js",
20
+ "default": "./dist/index.js"
21
+ }
22
+ },
23
+ "peerDependencies": {
24
+ "@lagless/math": "0.0.33"
25
+ },
26
+ "dependencies": {
27
+ "tslib": "^2.3.0"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "README.md"
32
+ ],
33
+ "publishConfig": {
34
+ "access": "public"
35
+ }
36
+ }