@yume-chan/scrcpy-decoder-webcodecs 0.0.18 → 0.0.20

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/CHANGELOG.json CHANGED
@@ -1,6 +1,24 @@
1
1
  {
2
2
  "name": "@yume-chan/scrcpy-decoder-webcodecs",
3
3
  "entries": [
4
+ {
5
+ "version": "0.0.20",
6
+ "tag": "@yume-chan/scrcpy-decoder-webcodecs_v0.0.20",
7
+ "date": "Mon, 05 Jun 2023 02:51:41 GMT",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "comment": "Add support for decoding H.265 on supported browsers (Chrome works, Microsoft Edge with HEVC Video Extension from Microsoft Store doesn't decode H.265 correctly)."
12
+ }
13
+ ]
14
+ }
15
+ },
16
+ {
17
+ "version": "0.0.19",
18
+ "tag": "@yume-chan/scrcpy-decoder-webcodecs_v0.0.19",
19
+ "date": "Sun, 09 Apr 2023 05:55:33 GMT",
20
+ "comments": {}
21
+ },
4
22
  {
5
23
  "version": "0.0.18",
6
24
  "tag": "@yume-chan/scrcpy-decoder-webcodecs_v0.0.18",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  # Change Log - @yume-chan/scrcpy-decoder-webcodecs
2
2
 
3
- This log was last generated on Wed, 25 Jan 2023 21:33:49 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 05 Jun 2023 02:51:41 GMT and should not be manually modified.
4
+
5
+ ## 0.0.20
6
+ Mon, 05 Jun 2023 02:51:41 GMT
7
+
8
+ ### Updates
9
+
10
+ - Add support for decoding H.265 on supported browsers (Chrome works, Microsoft Edge with HEVC Video Extension from Microsoft Store doesn't decode H.265 correctly).
11
+
12
+ ## 0.0.19
13
+ Sun, 09 Apr 2023 05:55:33 GMT
14
+
15
+ _Version update only_
4
16
 
5
17
  ## 0.0.18
6
18
  Wed, 25 Jan 2023 21:33:49 GMT
package/README.md CHANGED
@@ -4,7 +4,7 @@ Decode and render H.264 streams using the [WebCodecs API](https://developer.mozi
4
4
 
5
5
  It has no dependencies and high performance, but is only available on recent versions of Chrome.
6
6
 
7
- **WARNING:** The public API is UNSTABLE. If you have any questions, please open an issue.
7
+ **WARNING:** The public API is UNSTABLE. Open a GitHub discussion if you have any questions.
8
8
 
9
9
  - [Compatibility](#compatibility)
10
10
  - [Usage](#usage)
package/esm/index.d.ts CHANGED
@@ -1,23 +1,29 @@
1
- import { type ScrcpyVideoStreamPacket } from "@yume-chan/scrcpy";
2
- import { WritableStream } from "@yume-chan/stream-extra";
3
- export declare class WebCodecsDecoder {
4
- readonly maxProfile: undefined;
5
- readonly maxLevel: undefined;
6
- private _writable;
7
- get writable(): WritableStream<ScrcpyVideoStreamPacket>;
8
- private _renderer;
9
- get renderer(): HTMLCanvasElement;
10
- private _frameRendered;
11
- get frameRendered(): number;
12
- private _frameSkipped;
13
- get frameSkipped(): number;
14
- private context;
15
- private decoder;
16
- private currentFrameRendered;
17
- private animationFrameId;
18
- constructor();
19
- private onFramePresented;
20
- private configure;
21
- dispose(): void;
22
- }
1
+ import type { ScrcpyMediaStreamPacket } from "@yume-chan/scrcpy";
2
+ import { ScrcpyVideoCodecId } from "@yume-chan/scrcpy";
3
+ import type { ScrcpyVideoDecoder, ScrcpyVideoDecoderCapability } from "@yume-chan/scrcpy-decoder-tinyh264";
4
+ import { WritableStream } from "@yume-chan/stream-extra";
5
+ export declare class WebCodecsDecoder implements ScrcpyVideoDecoder {
6
+ static isSupported(): boolean;
7
+ static readonly capabilities: Record<string, ScrcpyVideoDecoderCapability>;
8
+ private _codec;
9
+ get codec(): ScrcpyVideoCodecId;
10
+ private _writable;
11
+ get writable(): WritableStream<ScrcpyMediaStreamPacket>;
12
+ private _renderer;
13
+ get renderer(): HTMLCanvasElement;
14
+ private _frameRendered;
15
+ get frameRendered(): number;
16
+ private _frameSkipped;
17
+ get frameSkipped(): number;
18
+ private context;
19
+ private decoder;
20
+ private _config;
21
+ private currentFrameRendered;
22
+ private animationFrameId;
23
+ constructor(codec: ScrcpyVideoCodecId);
24
+ private onFramePresented;
25
+ private configure;
26
+ private decode;
27
+ dispose(): void;
28
+ }
23
29
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,KAAK,uBAAuB,EAC/B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAMzD,qBAAa,gBAAgB;IAGzB,SAAgB,UAAU,YAAa;IACvC,SAAgB,QAAQ,YAAa;IAErC,OAAO,CAAC,SAAS,CAA0C;IAC3D,IAAW,QAAQ,4CAElB;IAED,OAAO,CAAC,SAAS,CAAoB;IACrC,IAAW,QAAQ,sBAElB;IAED,OAAO,CAAC,cAAc,CAAK;IAC3B,IAAW,aAAa,WAEvB;IAED,OAAO,CAAC,aAAa,CAAK;IAC1B,IAAW,YAAY,WAEtB;IAED,OAAO,CAAC,OAAO,CAA2B;IAC1C,OAAO,CAAC,OAAO,CAAe;IAE9B,OAAO,CAAC,oBAAoB,CAAS;IACrC,OAAO,CAAC,gBAAgB,CAAK;;IAqD7B,OAAO,CAAC,gBAAgB,CAGtB;IAEF,OAAO,CAAC,SAAS;IAiBV,OAAO;CAIjB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAER,uBAAuB,EAC1B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACH,kBAAkB,EAGrB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EACR,kBAAkB,EAClB,4BAA4B,EAC/B,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAezD,qBAAa,gBAAiB,YAAW,kBAAkB;WACzC,WAAW;IAIzB,gBAAuB,YAAY,EAAE,MAAM,CACvC,MAAM,EACN,4BAA4B,CAC/B,CAGC;IAEF,OAAO,CAAC,MAAM,CAAqB;IACnC,IAAW,KAAK,uBAEf;IAED,OAAO,CAAC,SAAS,CAA0C;IAC3D,IAAW,QAAQ,4CAElB;IAED,OAAO,CAAC,SAAS,CAAoB;IACrC,IAAW,QAAQ,sBAElB;IAED,OAAO,CAAC,cAAc,CAAK;IAC3B,IAAW,aAAa,WAEvB;IAED,OAAO,CAAC,aAAa,CAAK;IAC1B,IAAW,YAAY,WAEtB;IAED,OAAO,CAAC,OAAO,CAA2B;IAC1C,OAAO,CAAC,OAAO,CAAe;IAC9B,OAAO,CAAC,OAAO,CAAyB;IAExC,OAAO,CAAC,oBAAoB,CAAS;IACrC,OAAO,CAAC,gBAAgB,CAAK;gBAEV,KAAK,EAAE,kBAAkB;IA6C5C,OAAO,CAAC,gBAAgB,CAGtB;IAEF,OAAO,CAAC,SAAS;IAgEjB,OAAO,CAAC,MAAM;IA6BP,OAAO;CAMjB"}
package/esm/index.js CHANGED
@@ -1,97 +1,164 @@
1
- import { WritableStream } from "@yume-chan/stream-extra";
2
- function toHex(value) {
3
- return value.toString(16).padStart(2, "0").toUpperCase();
4
- }
5
- export class WebCodecsDecoder {
6
- // Usually, browsers can decode most configurations,
7
- // So let device choose best profile and level for itself.
8
- maxProfile = undefined;
9
- maxLevel = undefined;
10
- _writable;
11
- get writable() {
12
- return this._writable;
13
- }
14
- _renderer;
15
- get renderer() {
16
- return this._renderer;
17
- }
18
- _frameRendered = 0;
19
- get frameRendered() {
20
- return this._frameRendered;
21
- }
22
- _frameSkipped = 0;
23
- get frameSkipped() {
24
- return this._frameSkipped;
25
- }
26
- context;
27
- decoder;
28
- currentFrameRendered = false;
29
- animationFrameId = 0;
30
- constructor() {
31
- this._renderer = document.createElement("canvas");
32
- this.context = this._renderer.getContext("2d");
33
- this.decoder = new VideoDecoder({
34
- output: (frame) => {
35
- if (this.currentFrameRendered) {
36
- this._frameSkipped += 1;
37
- }
38
- else {
39
- this.currentFrameRendered = true;
40
- this._frameRendered += 1;
41
- }
42
- // PERF: H.264 renderer may draw multiple frames in one vertical sync interval to minimize latency.
43
- // When multiple frames are drawn in one vertical sync interval,
44
- // only the last one is visible to users.
45
- // But this ensures users can always see the most up-to-date screen.
46
- // This is also the behavior of official Scrcpy client.
47
- // https://github.com/Genymobile/scrcpy/issues/3679
48
- this.context.drawImage(frame, 0, 0);
49
- frame.close();
50
- },
51
- error(e) {
52
- void e;
53
- },
54
- });
55
- this._writable = new WritableStream({
56
- write: (packet) => {
57
- switch (packet.type) {
58
- case "configuration":
59
- this.configure(packet.data);
60
- break;
61
- case "frame":
62
- this.decoder.decode(new EncodedVideoChunk({
63
- // Treat `undefined` as `key`, otherwise won't decode.
64
- type: packet.keyframe === false ? "delta" : "key",
65
- timestamp: 0,
66
- data: packet.data,
67
- }));
68
- break;
69
- }
70
- },
71
- });
72
- this.onFramePresented();
73
- }
74
- onFramePresented = () => {
75
- this.currentFrameRendered = false;
76
- this.animationFrameId = requestAnimationFrame(this.onFramePresented);
77
- };
78
- configure(config) {
79
- const { profileIndex, constraintSet, levelIndex } = config;
80
- this._renderer.width = config.croppedWidth;
81
- this._renderer.height = config.croppedHeight;
82
- // https://www.rfc-editor.org/rfc/rfc6381#section-3.3
83
- // ISO Base Media File Format Name Space
84
- const codec = `avc1.${[profileIndex, constraintSet, levelIndex]
85
- .map(toHex)
86
- .join("")}`;
87
- this.decoder.configure({
88
- codec: codec,
89
- optimizeForLatency: true,
90
- });
91
- }
92
- dispose() {
93
- cancelAnimationFrame(this.animationFrameId);
94
- this.decoder.close();
95
- }
96
- }
1
+ import { ScrcpyVideoCodecId, h264ParseConfiguration, h265ParseConfiguration, } from "@yume-chan/scrcpy";
2
+ import { WritableStream } from "@yume-chan/stream-extra";
3
+ function toHex(value) {
4
+ return value.toString(16).padStart(2, "0").toUpperCase();
5
+ }
6
+ function toUint32Le(data, offset) {
7
+ return (data[offset] |
8
+ (data[offset + 1] << 8) |
9
+ (data[offset + 2] << 16) |
10
+ (data[offset + 3] << 24));
11
+ }
12
+ class WebCodecsDecoder {
13
+ static isSupported() {
14
+ return typeof globalThis.VideoDecoder !== "undefined";
15
+ }
16
+ static capabilities = {
17
+ h264: {},
18
+ h265: {},
19
+ };
20
+ _codec;
21
+ get codec() {
22
+ return this._codec;
23
+ }
24
+ _writable;
25
+ get writable() {
26
+ return this._writable;
27
+ }
28
+ _renderer;
29
+ get renderer() {
30
+ return this._renderer;
31
+ }
32
+ _frameRendered = 0;
33
+ get frameRendered() {
34
+ return this._frameRendered;
35
+ }
36
+ _frameSkipped = 0;
37
+ get frameSkipped() {
38
+ return this._frameSkipped;
39
+ }
40
+ context;
41
+ decoder;
42
+ _config;
43
+ currentFrameRendered = false;
44
+ animationFrameId = 0;
45
+ constructor(codec) {
46
+ this._codec = codec;
47
+ this._renderer = document.createElement("canvas");
48
+ this.context = this._renderer.getContext("2d");
49
+ this.decoder = new VideoDecoder({
50
+ output: (frame) => {
51
+ if (this.currentFrameRendered) {
52
+ this._frameSkipped += 1;
53
+ }
54
+ else {
55
+ this.currentFrameRendered = true;
56
+ this._frameRendered += 1;
57
+ }
58
+ // PERF: H.264 renderer may draw multiple frames in one vertical sync interval to minimize latency.
59
+ // When multiple frames are drawn in one vertical sync interval,
60
+ // only the last one is visible to users.
61
+ // But this ensures users can always see the most up-to-date screen.
62
+ // This is also the behavior of official Scrcpy client.
63
+ // https://github.com/Genymobile/scrcpy/issues/3679
64
+ this.context.drawImage(frame, 0, 0);
65
+ frame.close();
66
+ },
67
+ error(e) {
68
+ void e;
69
+ },
70
+ });
71
+ this._writable = new WritableStream({
72
+ write: (packet) => {
73
+ switch (packet.type) {
74
+ case "configuration":
75
+ this.configure(packet.data);
76
+ break;
77
+ case "data":
78
+ this.decode(packet);
79
+ break;
80
+ }
81
+ },
82
+ });
83
+ this.onFramePresented();
84
+ }
85
+ onFramePresented = () => {
86
+ this.currentFrameRendered = false;
87
+ this.animationFrameId = requestAnimationFrame(this.onFramePresented);
88
+ };
89
+ configure(data) {
90
+ switch (this._codec) {
91
+ case ScrcpyVideoCodecId.H264: {
92
+ const { profileIndex, constraintSet, levelIndex, croppedWidth, croppedHeight, } = h264ParseConfiguration(data);
93
+ this._renderer.width = croppedWidth;
94
+ this._renderer.height = croppedHeight;
95
+ // https://www.rfc-editor.org/rfc/rfc6381#section-3.3
96
+ // ISO Base Media File Format Name Space
97
+ const codec = `avc1.${[profileIndex, constraintSet, levelIndex]
98
+ .map(toHex)
99
+ .join("")}`;
100
+ this.decoder.configure({
101
+ codec: codec,
102
+ optimizeForLatency: true,
103
+ });
104
+ break;
105
+ }
106
+ case ScrcpyVideoCodecId.H265: {
107
+ const { generalProfileSpace, generalProfileIndex, generalProfileCompatibilitySet, generalTierFlag, generalLevelIndex, generalConstraintSet, croppedWidth, croppedHeight, } = h265ParseConfiguration(data);
108
+ this._renderer.width = croppedWidth;
109
+ this._renderer.height = croppedHeight;
110
+ const codec = [
111
+ "hev1",
112
+ ["", "A", "B", "C"][generalProfileSpace] +
113
+ generalProfileIndex.toString(),
114
+ toUint32Le(generalProfileCompatibilitySet, 0).toString(16),
115
+ (generalTierFlag ? "H" : "L") +
116
+ generalLevelIndex.toString(),
117
+ toUint32Le(generalConstraintSet, 0)
118
+ .toString(16)
119
+ .toUpperCase(),
120
+ toUint32Le(generalConstraintSet, 4)
121
+ .toString(16)
122
+ .toUpperCase(),
123
+ ].join(".");
124
+ this.decoder.configure({
125
+ codec,
126
+ optimizeForLatency: true,
127
+ });
128
+ break;
129
+ }
130
+ }
131
+ this._config = data;
132
+ }
133
+ decode(packet) {
134
+ if (this.decoder.state !== "configured") {
135
+ return;
136
+ }
137
+ // WebCodecs requires configuration data to be with the first frame.
138
+ // https://www.w3.org/TR/webcodecs-avc-codec-registration/#encodedvideochunk-type
139
+ let data;
140
+ if (this._config !== undefined) {
141
+ data = new Uint8Array(this._config.byteLength + packet.data.byteLength);
142
+ data.set(this._config, 0);
143
+ data.set(packet.data, this._config.byteLength);
144
+ this._config = undefined;
145
+ }
146
+ else {
147
+ data = packet.data;
148
+ }
149
+ this.decoder.decode(new EncodedVideoChunk({
150
+ // Treat `undefined` as `key`, otherwise won't decode.
151
+ type: packet.keyframe === false ? "delta" : "key",
152
+ timestamp: 0,
153
+ data,
154
+ }));
155
+ }
156
+ dispose() {
157
+ cancelAnimationFrame(this.animationFrameId);
158
+ if (this.decoder.state !== "closed") {
159
+ this.decoder.close();
160
+ }
161
+ }
162
+ }
163
+ export { WebCodecsDecoder };
97
164
  //# sourceMappingURL=index.js.map
package/esm/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yume-chan/scrcpy-decoder-webcodecs",
3
- "version": "0.0.18",
3
+ "version": "0.0.20",
4
4
  "description": "Raw H.264 stream decoder and renderer using WebCodecs API (requires modern browser).",
5
5
  "keywords": [
6
6
  "adb",
@@ -27,25 +27,27 @@
27
27
  "main": "esm/index.js",
28
28
  "types": "esm/index.d.ts",
29
29
  "dependencies": {
30
- "@types/dom-webcodecs": "^0.1.5",
31
- "@yume-chan/scrcpy": "^0.0.18",
32
- "@yume-chan/stream-extra": "^0.0.18",
33
- "tslib": "^2.4.1"
30
+ "@types/dom-webcodecs": "^0.1.6",
31
+ "@yume-chan/scrcpy": "^0.0.20",
32
+ "@yume-chan/scrcpy-decoder-tinyh264": "^0.0.20",
33
+ "@yume-chan/stream-extra": "^0.0.20",
34
+ "tslib": "^2.5.2"
34
35
  },
35
36
  "devDependencies": {
36
- "@jest/globals": "^29.3.1",
37
+ "@jest/globals": "^29.5.0",
37
38
  "@yume-chan/eslint-config": "^1.0.0",
38
39
  "@yume-chan/tsconfig": "^1.0.0",
39
40
  "cross-env": "^7.0.3",
40
- "eslint": "^8.31.0",
41
- "jest": "^29.3.1",
41
+ "eslint": "^8.41.0",
42
+ "jest": "^29.5.0",
43
+ "prettier": "^2.8.8",
42
44
  "ts-jest": "^29.0.4",
43
- "typescript": "^4.9.4"
45
+ "typescript": "^5.0.3"
44
46
  },
45
47
  "scripts": {
46
48
  "build": "tsc -b tsconfig.build.json",
47
49
  "build:watch": "tsc -b tsconfig.build.json",
48
50
  "//test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
49
- "lint": "eslint src/**/*.ts --fix"
51
+ "lint": "eslint src/**/*.ts --fix && prettier src/**/*.ts --write --tab-width 4"
50
52
  }
51
53
  }
package/src/index.ts CHANGED
@@ -1,20 +1,50 @@
1
+ import type {
2
+ ScrcpyMediaStreamDataPacket,
3
+ ScrcpyMediaStreamPacket,
4
+ } from "@yume-chan/scrcpy";
1
5
  import {
2
- type H264Configuration,
3
- type ScrcpyVideoStreamPacket,
6
+ ScrcpyVideoCodecId,
7
+ h264ParseConfiguration,
8
+ h265ParseConfiguration,
4
9
  } from "@yume-chan/scrcpy";
10
+ import type {
11
+ ScrcpyVideoDecoder,
12
+ ScrcpyVideoDecoderCapability,
13
+ } from "@yume-chan/scrcpy-decoder-tinyh264";
5
14
  import { WritableStream } from "@yume-chan/stream-extra";
6
15
 
7
16
  function toHex(value: number) {
8
17
  return value.toString(16).padStart(2, "0").toUpperCase();
9
18
  }
10
19
 
11
- export class WebCodecsDecoder {
12
- // Usually, browsers can decode most configurations,
13
- // So let device choose best profile and level for itself.
14
- public readonly maxProfile = undefined;
15
- public readonly maxLevel = undefined;
20
+ function toUint32Le(data: Uint8Array, offset: number) {
21
+ return (
22
+ data[offset]! |
23
+ (data[offset + 1]! << 8) |
24
+ (data[offset + 2]! << 16) |
25
+ (data[offset + 3]! << 24)
26
+ );
27
+ }
28
+
29
+ export class WebCodecsDecoder implements ScrcpyVideoDecoder {
30
+ public static isSupported() {
31
+ return typeof globalThis.VideoDecoder !== "undefined";
32
+ }
33
+
34
+ public static readonly capabilities: Record<
35
+ string,
36
+ ScrcpyVideoDecoderCapability
37
+ > = {
38
+ h264: {},
39
+ h265: {},
40
+ };
41
+
42
+ private _codec: ScrcpyVideoCodecId;
43
+ public get codec() {
44
+ return this._codec;
45
+ }
16
46
 
17
- private _writable: WritableStream<ScrcpyVideoStreamPacket>;
47
+ private _writable: WritableStream<ScrcpyMediaStreamPacket>;
18
48
  public get writable() {
19
49
  return this._writable;
20
50
  }
@@ -36,11 +66,14 @@ export class WebCodecsDecoder {
36
66
 
37
67
  private context: CanvasRenderingContext2D;
38
68
  private decoder: VideoDecoder;
69
+ private _config: Uint8Array | undefined;
39
70
 
40
71
  private currentFrameRendered = false;
41
72
  private animationFrameId = 0;
42
73
 
43
- public constructor() {
74
+ public constructor(codec: ScrcpyVideoCodecId) {
75
+ this._codec = codec;
76
+
44
77
  this._renderer = document.createElement("canvas");
45
78
 
46
79
  this.context = this._renderer.getContext("2d")!;
@@ -67,22 +100,14 @@ export class WebCodecsDecoder {
67
100
  },
68
101
  });
69
102
 
70
- this._writable = new WritableStream<ScrcpyVideoStreamPacket>({
103
+ this._writable = new WritableStream<ScrcpyMediaStreamPacket>({
71
104
  write: (packet) => {
72
105
  switch (packet.type) {
73
106
  case "configuration":
74
107
  this.configure(packet.data);
75
108
  break;
76
- case "frame":
77
- this.decoder.decode(
78
- new EncodedVideoChunk({
79
- // Treat `undefined` as `key`, otherwise won't decode.
80
- type:
81
- packet.keyframe === false ? "delta" : "key",
82
- timestamp: 0,
83
- data: packet.data,
84
- })
85
- );
109
+ case "data":
110
+ this.decode(packet);
86
111
  break;
87
112
  }
88
113
  },
@@ -96,25 +121,103 @@ export class WebCodecsDecoder {
96
121
  this.animationFrameId = requestAnimationFrame(this.onFramePresented);
97
122
  };
98
123
 
99
- private configure(config: H264Configuration) {
100
- const { profileIndex, constraintSet, levelIndex } = config;
101
-
102
- this._renderer.width = config.croppedWidth;
103
- this._renderer.height = config.croppedHeight;
124
+ private configure(data: Uint8Array) {
125
+ switch (this._codec) {
126
+ case ScrcpyVideoCodecId.H264: {
127
+ const {
128
+ profileIndex,
129
+ constraintSet,
130
+ levelIndex,
131
+ croppedWidth,
132
+ croppedHeight,
133
+ } = h264ParseConfiguration(data);
134
+
135
+ this._renderer.width = croppedWidth;
136
+ this._renderer.height = croppedHeight;
137
+
138
+ // https://www.rfc-editor.org/rfc/rfc6381#section-3.3
139
+ // ISO Base Media File Format Name Space
140
+ const codec = `avc1.${[profileIndex, constraintSet, levelIndex]
141
+ .map(toHex)
142
+ .join("")}`;
143
+ this.decoder.configure({
144
+ codec: codec,
145
+ optimizeForLatency: true,
146
+ });
147
+ break;
148
+ }
149
+ case ScrcpyVideoCodecId.H265: {
150
+ const {
151
+ generalProfileSpace,
152
+ generalProfileIndex,
153
+ generalProfileCompatibilitySet,
154
+ generalTierFlag,
155
+ generalLevelIndex,
156
+ generalConstraintSet,
157
+ croppedWidth,
158
+ croppedHeight,
159
+ } = h265ParseConfiguration(data);
160
+
161
+ this._renderer.width = croppedWidth;
162
+ this._renderer.height = croppedHeight;
163
+
164
+ const codec = [
165
+ "hev1",
166
+ ["", "A", "B", "C"][generalProfileSpace]! +
167
+ generalProfileIndex.toString(),
168
+ toUint32Le(generalProfileCompatibilitySet, 0).toString(16),
169
+ (generalTierFlag ? "H" : "L") +
170
+ generalLevelIndex.toString(),
171
+ toUint32Le(generalConstraintSet, 0)
172
+ .toString(16)
173
+ .toUpperCase(),
174
+ toUint32Le(generalConstraintSet, 4)
175
+ .toString(16)
176
+ .toUpperCase(),
177
+ ].join(".");
178
+ this.decoder.configure({
179
+ codec,
180
+ optimizeForLatency: true,
181
+ });
182
+ break;
183
+ }
184
+ }
185
+ this._config = data;
186
+ }
104
187
 
105
- // https://www.rfc-editor.org/rfc/rfc6381#section-3.3
106
- // ISO Base Media File Format Name Space
107
- const codec = `avc1.${[profileIndex, constraintSet, levelIndex]
108
- .map(toHex)
109
- .join("")}`;
110
- this.decoder.configure({
111
- codec: codec,
112
- optimizeForLatency: true,
113
- });
188
+ private decode(packet: ScrcpyMediaStreamDataPacket) {
189
+ if (this.decoder.state !== "configured") {
190
+ return;
191
+ }
192
+
193
+ // WebCodecs requires configuration data to be with the first frame.
194
+ // https://www.w3.org/TR/webcodecs-avc-codec-registration/#encodedvideochunk-type
195
+ let data: Uint8Array;
196
+ if (this._config !== undefined) {
197
+ data = new Uint8Array(
198
+ this._config.byteLength + packet.data.byteLength
199
+ );
200
+ data.set(this._config, 0);
201
+ data.set(packet.data, this._config.byteLength);
202
+ this._config = undefined;
203
+ } else {
204
+ data = packet.data;
205
+ }
206
+
207
+ this.decoder.decode(
208
+ new EncodedVideoChunk({
209
+ // Treat `undefined` as `key`, otherwise won't decode.
210
+ type: packet.keyframe === false ? "delta" : "key",
211
+ timestamp: 0,
212
+ data,
213
+ })
214
+ );
114
215
  }
115
216
 
116
217
  public dispose() {
117
218
  cancelAnimationFrame(this.animationFrameId);
118
- this.decoder.close();
219
+ if (this.decoder.state !== "closed") {
220
+ this.decoder.close();
221
+ }
119
222
  }
120
223
  }
@@ -8,5 +8,16 @@
8
8
  "types": [
9
9
  "dom-webcodecs"
10
10
  ]
11
- }
11
+ },
12
+ "references": [
13
+ {
14
+ "path": "../scrcpy/tsconfig.build.json"
15
+ },
16
+ {
17
+ "path": "../scrcpy-decoder-tinyh264/tsconfig.build.json"
18
+ },
19
+ {
20
+ "path": "../stream-extra/tsconfig.build.json"
21
+ },
22
+ ]
12
23
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.4.1/node_modules/tslib/tslib.d.ts","../struct/esm/basic/options.d.ts","../struct/esm/basic/struct-value.d.ts","../struct/esm/basic/field-value.d.ts","../struct/esm/utils.d.ts","../struct/esm/basic/stream.d.ts","../struct/esm/basic/definition.d.ts","../struct/esm/basic/index.d.ts","../struct/esm/types/bigint.d.ts","../struct/esm/types/buffer/base.d.ts","../struct/esm/types/buffer/fixed-length.d.ts","../struct/esm/types/buffer/variable-length.d.ts","../struct/esm/types/buffer/index.d.ts","../struct/esm/types/number.d.ts","../struct/esm/types/index.d.ts","../struct/esm/struct.d.ts","../struct/esm/index.d.ts","../../common/temp/node_modules/.pnpm/web-streams-polyfill@4.0.0-beta.3/node_modules/web-streams-polyfill/types/ponyfill.d.ts","../stream-extra/esm/stream.d.ts","../stream-extra/esm/buffered.d.ts","../stream-extra/esm/buffered-transform.d.ts","../stream-extra/esm/chunk.d.ts","../stream-extra/esm/decode-utf8.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.d.ts","../stream-extra/esm/gather-string.d.ts","../stream-extra/esm/inspect.d.ts","../stream-extra/esm/pipe-from.d.ts","../stream-extra/esm/push-readable.d.ts","../stream-extra/esm/split-string.d.ts","../stream-extra/esm/struct-deserialize.d.ts","../stream-extra/esm/struct-serialize.d.ts","../stream-extra/esm/wrap-writable.d.ts","../stream-extra/esm/index.d.ts","../event/esm/disposable.d.ts","../event/esm/event.d.ts","../event/esm/event-emitter.d.ts","../event/esm/utils.d.ts","../event/esm/index.d.ts","../adb/esm/packet.d.ts","../adb/esm/auth.d.ts","../adb/esm/commands/base.d.ts","../adb/esm/commands/framebuffer.d.ts","../adb/esm/commands/install.d.ts","../adb/esm/commands/power.d.ts","../adb/esm/socket/socket.d.ts","../adb/esm/socket/dispatcher.d.ts","../adb/esm/socket/index.d.ts","../adb/esm/commands/reverse.d.ts","../adb/esm/commands/subprocess/protocols/types.d.ts","../adb/esm/commands/subprocess/protocols/none.d.ts","../adb/esm/commands/subprocess/protocols/shell.d.ts","../adb/esm/commands/subprocess/protocols/index.d.ts","../adb/esm/commands/subprocess/command.d.ts","../adb/esm/commands/subprocess/utils.d.ts","../adb/esm/commands/subprocess/index.d.ts","../adb/esm/commands/sync/response.d.ts","../adb/esm/commands/sync/stat.d.ts","../adb/esm/commands/sync/list.d.ts","../adb/esm/commands/sync/pull.d.ts","../adb/esm/commands/sync/push.d.ts","../adb/esm/commands/sync/request.d.ts","../adb/esm/utils/auto-reset-event.d.ts","../adb/esm/utils/base64.d.ts","../adb/esm/utils/index.d.ts","../adb/esm/commands/sync/sync.d.ts","../adb/esm/commands/sync/index.d.ts","../adb/esm/commands/tcpip.d.ts","../adb/esm/commands/index.d.ts","../adb/esm/features.d.ts","../adb/esm/adb.d.ts","../adb/esm/backend.d.ts","../adb/esm/crypto.d.ts","../adb/esm/index.d.ts","../scrcpy/esm/codec.d.ts","../scrcpy/esm/control/back-or-screen-on.d.ts","../scrcpy/esm/control/type.d.ts","../scrcpy/esm/control/inject-touch.d.ts","../scrcpy/esm/control/hover-helper.d.ts","../scrcpy/esm/control/inject-keycode.d.ts","../scrcpy/esm/control/inject-scroll.d.ts","../scrcpy/esm/control/inject-text.d.ts","../scrcpy/esm/control/rotate-device.d.ts","../scrcpy/esm/control/set-screen-power-mode.d.ts","../scrcpy/esm/control/serializer.d.ts","../scrcpy/esm/control/set-clipboard.d.ts","../scrcpy/esm/control/index.d.ts","../scrcpy/esm/options/1_16/scroll.d.ts","../scrcpy/esm/options/types.d.ts","../scrcpy/esm/options/1_16/codec-options.d.ts","../scrcpy/esm/options/1_16/h264-configuration.d.ts","../scrcpy/esm/options/1_16/options.d.ts","../scrcpy/esm/options/1_16/index.d.ts","../scrcpy/esm/options/1_18.d.ts","../scrcpy/esm/options/1_21.d.ts","../scrcpy/esm/options/1_22/options.d.ts","../scrcpy/esm/options/1_22/scroll.d.ts","../scrcpy/esm/options/1_22/index.d.ts","../scrcpy/esm/options/1_23.d.ts","../scrcpy/esm/options/1_24.d.ts","../scrcpy/esm/options/1_25/options.d.ts","../scrcpy/esm/options/1_25/scroll.d.ts","../scrcpy/esm/options/1_25/index.d.ts","../scrcpy/esm/options/index.d.ts","../scrcpy/esm/adb/connection.d.ts","../scrcpy/esm/adb/options/types.d.ts","../scrcpy/esm/adb/options/1_16.d.ts","../scrcpy/esm/adb/options/1_22.d.ts","../scrcpy/esm/adb/options/index.d.ts","../scrcpy/esm/device-message/type.d.ts","../scrcpy/esm/device-message/ack-clipboard.d.ts","../scrcpy/esm/device-message/clipboard.d.ts","../scrcpy/esm/device-message/stream.d.ts","../scrcpy/esm/device-message/index.d.ts","../scrcpy/esm/adb/client.d.ts","../scrcpy/esm/adb/index.d.ts","../scrcpy/esm/index.d.ts","./src/index.ts","../../common/temp/node_modules/.pnpm/@types+dom-webcodecs@0.1.5/node_modules/@types/dom-webcodecs/webcodecs.generated.d.ts","../../common/temp/node_modules/.pnpm/@types+dom-webcodecs@0.1.5/node_modules/@types/dom-webcodecs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","impliedFormat":1},{"version":"a916bd79fa897dfbfcfef0885727e005c015727e5ade51a5ca91f61eeca4b00f","impliedFormat":99},{"version":"ce15dfc8bba1c2d8b919a3b55dabe4c6269b81fbb78989586dfc1b2cdc1ec7a3","impliedFormat":99},{"version":"a0ba486f9abc9bdbf03878b06932a7de42cadeb3a760a9cd336cb7614a8ce73e","impliedFormat":99},{"version":"3c8bc049dae424f3b67fd4567e57abf037cf6698508703a33e95a0b93704d921","impliedFormat":99},{"version":"e2cdef9ccaf2ec8313c11030a44402276e3f2d33b2635e50a5c85da7c169705f","impliedFormat":99},{"version":"a198bc56ca1cabeb2100f93ed61a14457c8a0d7f3ee92a457774abefbf2af7e9","impliedFormat":99},{"version":"4000865d5ddad64d7894da59d95ef9900473502006100a4ed82cc950cf7c2f56","impliedFormat":99},{"version":"9d8e9863033f8c7872b0efa8b30abc489200d6dfbbb7e350e83567ee7d9849f3","impliedFormat":99},{"version":"20b17b2e6d5d0ab3188e6ba77369c12b8ff8c1c53d7738e72ff32404d1fb9806","impliedFormat":99},{"version":"238d44461641c771704ae948e129b280d05fad01b060f8e78a37a28ae346e7a4","impliedFormat":99},{"version":"94788f554a52e0a3abb6653395c2da112d2fcf17786464e8b430ed6855e63063","impliedFormat":99},{"version":"05ff8aaf99e2fe90a8bead1f2abe7001b1f2883b3733f68edc138d42d4a64fbc","impliedFormat":99},{"version":"b620d8091fc4a3520370c0faf794ef5d8e663f9cf5c419615c46923a2faf7658","impliedFormat":99},{"version":"deb19b18352719845b83f911ec5f6520b11918c45327267d828658ad3e15f59a","impliedFormat":99},{"version":"7ca63f52c8ada038d44dbd9e0cd6bbc654762dbb2cb25c1acb66912e541aa5d8","impliedFormat":99},{"version":"16b6014cf97bb1eed71f5955ba76e1714f852e0ada929661c2f3215b8b2694f7","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"bf1b953026023eab871cd33c181b70261a13e2d2c8ae2a82974ab546eaf0d55d","impliedFormat":99},{"version":"a826d0ce76bf41e249ce59c3246fa6463b4b3ae8ca922de1b291c8228b596d4f","impliedFormat":99},{"version":"519667c1e67843d0b5639067aff734c8b2790db9d54bfbcc1e01a72c35a1899c","impliedFormat":99},{"version":"8f761c78ed6b6a8d1a7a06de589b885ee8f1d6cfc35869271aadef12453e6792","impliedFormat":99},{"version":"a045afb91a1874d04a03ef23ba88467d54cb0d0ce9bb7a6f9bbf0aef0fcb2987","impliedFormat":99},{"version":"09f7cf923b40a668786baa010975a2741eaee0221cd2223a4a93b626eae11b25","impliedFormat":99},{"version":"aa24a56a19061cf24248df631db467c47dbac51b3007d0ca3571f63a9454c3f1","impliedFormat":99},{"version":"8ae5b1ec391cee87c0a2b1618244fd68f2c4648feb300506cee22836479d36e9","impliedFormat":99},{"version":"372c41ec228da5feadb0ea2e009e50767d6a7e029d9fae16baf5d7561beee141","impliedFormat":99},{"version":"6432fa68f24fb1b2a855c4537d34854ff49431866f8c3b22a6dd47d427389875","impliedFormat":99},{"version":"eb589b10ce1aff55e80870f1ec80b844af04d29272a52f87e84af33785ca3b63","impliedFormat":99},{"version":"d46d9b5809fbedc466e5a7f5d271c6eab6646023e8e74af42895f19729baed09","impliedFormat":99},{"version":"614bd59e02cef825d1376a35a08ca28aa3ea2465bc47cae98a23418e6b6b98dd","impliedFormat":99},{"version":"187135e423dde8f10f28d980fde73ed45d2ab83377da3c9e43b58cb7cb55cb7f","impliedFormat":99},{"version":"c51e9542d1586923fc237ee9e7e7850515278d20e7c9554200c4088b1ab8b1b5","impliedFormat":99},{"version":"15d73de6b3ccca063cd20adbb6de0ca1f388c9525c49ada08b4e4aed482f81d2","impliedFormat":99},{"version":"3d4fc1ed5c1c6f311aebeff68ec8038718a12eaef5d0ae5cbd5133112956356f","impliedFormat":99},{"version":"6e4a3c4dad188295c5ea0cd7d0b18374bed555f7f4bd1f692adb6d0646b84a6c","impliedFormat":99},{"version":"f42981e268e693681dc46a595320a28e76eb1d035c0fd02782fad4530c4b9460","impliedFormat":99},{"version":"953f8ee025732d4442fed525cbaaa51e8380a658a2db9e65472b1a45a96eb863","impliedFormat":99},{"version":"8cc812db40101403f8753561d5d56444e582d6658a1825fd65d8b6dc33001854","impliedFormat":99},{"version":"056dc576a8a4b0f3d7e3ea62ffc50927a44f170dbf504cacbc167faa891aa1c4","impliedFormat":99},{"version":"aceaeb6c567ba234db5c5ac83ca5f655d4cb3f2b41bb2e3d46156aef5f821e08","impliedFormat":99},{"version":"84c5cc391901da2628c314773e35ba4ef8baf8cbd16b1f6e2715c888ec111a78","impliedFormat":99},{"version":"4da0617c1ac8332b25f811ae35017eaf148797897f475caaeee75aedf15dffb0","impliedFormat":99},{"version":"9eca3b06248f861f7933509f9632c05df013bce190c7636ee2c63bb5743258e0","impliedFormat":99},{"version":"f2ea9fdb05e50fe5d40f84042610f42afe73ef2774a49d32dac00035ac4107a9","impliedFormat":99},{"version":"c6001fafc7731da0caba163dbff511aa30d620995557e92ce13489d8fdbdeaf2","impliedFormat":99},{"version":"1f24801a3dfa156fc29a4c8456bb36966c948b4c199e2666a436c5344d2bf3a7","impliedFormat":99},{"version":"f23883381baf233145da8f3bf3c9a7d808d02bfcb5987c11a9defe8d090d0f18","impliedFormat":99},{"version":"e08f98feba0e30767fdd48707bd597a485d110e520b62fd82eca1894cb8ab4ac","impliedFormat":99},{"version":"6def100d69465dc80d30e9b51d18b3bedbfe718374ba0d49183549f4e8932c90","impliedFormat":99},{"version":"af0d6d71123142cb9f354cd30d67ef22e4bd94fd0195bc18cc627c8bd2dc1d6d","impliedFormat":99},{"version":"d509f6d8d6f0e08b0e2dc1d5671a2ab45517af73b569659327b3fbac7b3f756e","impliedFormat":99},{"version":"6c41d857cf525bb086dd457c444964491da7720e03adaaac2de9d1f2fcd02d4e","impliedFormat":99},{"version":"4f16b604f497e0049e9e7bab696dcc3a237d0c4061d21c23faac1e14c42ac2fd","impliedFormat":99},{"version":"d8ce61cd5b8cc8b55615da94a9d7bdf47c9d9a137fdde024558285faa1078524","impliedFormat":99},{"version":"35bff32ca3d9d2703c5c57ad038a32f911ca5d87c89418c89dc50ccfbccbde85","impliedFormat":99},{"version":"6b44d169ab55a5c72574829c69588d8ac2a558163794a0e957cb92c0ba7669eb","impliedFormat":99},{"version":"bcdf2415f10ac1d98b74f2f074b3f3e1586e591c85d63f065354de7510f3fb3c","impliedFormat":99},{"version":"a379dedfa350f3d110f3aaa56be1e8ecd65cbc65cc5178faae14ee3763847027","impliedFormat":99},{"version":"166b9de623e58fab8b63ff05b44e011cfda9d58a1e50940e4ea873222ea30ca4","impliedFormat":99},{"version":"85b112003245613f70fd2c721f3a579b050ec153c9e4c95ce05212f171e5d62c","impliedFormat":99},{"version":"0976c6a225dd08f11800e8705f7205495043c5f7be93747bc00a376a49dad7a1","impliedFormat":99},{"version":"147793d928f57a4496c91495c15ca8222b0361847e6244a1b8202b0e6b5d7037","impliedFormat":99},{"version":"9ec1a3ac131e28eb57c383f1ce940d42dbb833074089eef51de745c01d37fa8f","impliedFormat":99},{"version":"6f89fa1c31a3fa771df3ea464923c5cda615813abd5fcd3c668fa5fe6f3be5cf","impliedFormat":99},{"version":"87564b88fce6667892e67b5de8e7aca91c2c831c38896927ea864e06331aa450","impliedFormat":99},{"version":"5fd49a17eb68b7c369db85b6babab7646cce6642258c5f0d850260f2a812657f","impliedFormat":99},{"version":"3e53a4938bd3ec19a96c4e973915805723ae10c17a104b9b3ae4ab6a8b342675","impliedFormat":99},{"version":"0e14bd8d7d8622ba8fae3dfdbe0c699caa6b0c1741aece10b015b07cc92f4637","impliedFormat":99},{"version":"2e9e45960564e199eb7fa44c177c1ed9f0a73cf97856e5a6aee3f678e7b26624","impliedFormat":99},{"version":"e92fe581a8be70e4613b143949670e934b9c31202e641666dba2e87b4599ee6c","impliedFormat":99},{"version":"c6496f6fb0375ebe6289eb848ac11e20145f64225d1f653faea63f76f24961a4","impliedFormat":99},{"version":"5f46c691c21387109a4eec46784a165512bc28aab6fb7163c3998d7fe1e85599","impliedFormat":99},{"version":"23c6cf9e991a93961c881844f96340f0e857354e8b03cd44fe55d3ebbeb9ece0","impliedFormat":99},{"version":"26d765d7c9abf51df5abc0e36df0cd395956579756485b5c18d5f88ed5d14615","impliedFormat":99},{"version":"fb9d2d335f12fc5f2e953e2d26e9d7925e6f746d760fb753701aab21a3cb7b90","impliedFormat":99},{"version":"5a0a6980ab519ce61fb95c8286fe41a9cd6e12ba2d096964bf4c7fbf594cc6f2","impliedFormat":99},{"version":"7c787fcfa9b0198a70c1a17ee8d0424183b82ad52e6da8f99b7102752772e312","impliedFormat":99},{"version":"6ce3c79f94684cd6200eba64e39de46dcbb4d8cce1eb92ca12297925e2a8f2ff","impliedFormat":99},{"version":"2a3e60f1f7d7e79effafc2915f571c889ef21164bb15aa61db3a37c6b4baf913","impliedFormat":99},{"version":"f2133771af777b363cf84a7806ab31ec5e0d454aaed2084aed227e04da2a0375","impliedFormat":99},{"version":"d9b0cd5ff1ec7f5e552be2cf9d61902dccd307b128ab8fc8834847d0985e6659","impliedFormat":99},{"version":"5f25cca82a73aea7f4aedaadac8fa9ac0e2f4ba2812a74a02fd2968a9477c18a","impliedFormat":99},{"version":"91d4de6139539b27fdd9715e14f2a906d083b732cb15a5527536ef02441af2d7","impliedFormat":99},{"version":"afe7335ab8bd2cea2bc1994d15a8fa83ff19c60c798a309df86d539feb640f87","impliedFormat":99},{"version":"fc9c138501b8f5c194c8508f8b079acbb1696b55a0ce77cab15ee6950989510d","impliedFormat":99},{"version":"f3e1bbe1c12c816e21062ac00f2bfdc0d52c1c34b41731efdcf66eb3a04254b5","impliedFormat":99},{"version":"d4cd074626d57848afe76735d4fbda7aa6668a8742f771741e28606eb90edfc1","impliedFormat":99},{"version":"9d63e268e6d8aab9090d3410722150d1dace4f43d0da3228804fdb5ec39feb43","impliedFormat":99},{"version":"5be20a6350a3bde269be7fd353d6d86f00c7359aeffe69fa1b13dec8b4ff638f","impliedFormat":99},{"version":"ac54023fc88c264274b62caa7e0c7834ccad49ac61b8b015ab04748b61ec131f","impliedFormat":99},{"version":"83579ee27537792b587183e29d953c6f355a468293441453dd837668f113e90a","impliedFormat":99},{"version":"fb37e6859607af111d559fc5e883dc67881a76c09c0e47438ddb679c99c3dfeb","impliedFormat":99},{"version":"15d2b301e685904758598923470425098253c137568a3dfbddfba8dba48aa6b2","impliedFormat":99},{"version":"41cc9dd19b3a2d03d3c5daa962d2e0f4925e200ed6c1d25b887340d6972d187f","impliedFormat":99},{"version":"ae73f05ae8beb2432dd20dbd7fa4a23b4e715335e6d6767e3569e761bdcc08bc","impliedFormat":99},{"version":"e75ea42f96a185bdebced121262cc12e0fdb0cfba438aefd5f711af3398be0f2","impliedFormat":99},{"version":"9ff10de2fce49c966d2dc849ba01cb005e666f79374255bd00b31c8f300ff6d8","impliedFormat":99},{"version":"9f798c929268a2892fe16ed699ae981d367001f3bc67fb13ba7538e5f4da9576","impliedFormat":99},{"version":"3f6d021bf2f90b29ca585f5be35fe8911108c2af82d7e5f65d73d5a7053de7f9","impliedFormat":99},{"version":"026cf4c4d6e7ddb222874a5a6546b4d97f3a5c15d70f0e4b5be8c319009c27e6","impliedFormat":99},{"version":"b0a07c98a78a4888eca28a53da17b80c4f02a75879aff99c0d639a242513faaf","impliedFormat":99},{"version":"9ff10de2fce49c966d2dc849ba01cb005e666f79374255bd00b31c8f300ff6d8","impliedFormat":99},{"version":"19c2416ff254816debe31008561ead111e66ea9af8cf80c71948b34c3133e360","impliedFormat":99},{"version":"e7b34f3c19ab70f64fd81a573d212d74d8f41f7b13c6a7f28b87326596909a9f","impliedFormat":99},{"version":"8adba233cbe135ccdf94f6621682a28f158f2482fb2d6776d1c51bfdefe82db2","impliedFormat":99},{"version":"4543c8e91dcc0024150bced2f3c082ca687b8589673a57f2095b499bb31e793c","impliedFormat":99},{"version":"e32736ac311a29ed86cc2cabb9d3b18d38ca8882cfd164f6b461f5aee10309d3","impliedFormat":99},{"version":"0b344ec0c8be1e5bff5b84e88dbdad8c93d2611c84de766e35c69ec958967a05","impliedFormat":99},{"version":"de5363c2af3adf1e2974c89ce911021e8f92533045cedb3f461ed024505570c6","impliedFormat":99},{"version":"50fcdd0c93995b22259b4a5a280f952908e0f838ea844e76f09481f2458485a3","impliedFormat":99},{"version":"b963d47f1cab707f60253909c79eeac767318e9b2b81792cc076fb3a2b1ef0fa","impliedFormat":99},{"version":"3e8c8a03918cce8cb13dd81e50a59413d2edd085f11651049c370ee20507cfe3","impliedFormat":99},{"version":"aaee100b73fb3b25d061b5f8b1f4e958d8824050f4995f3b1781d10f32a4083c","impliedFormat":99},{"version":"f1f4f19589ae79fc08407083156ab0d66e1641a39b06392eca3110f56900af47","impliedFormat":99},{"version":"36194a2b3aca9238825412275fa3be38d742aa8518ee82ef5268f2320e51cfde","impliedFormat":99},{"version":"db5f99a667dd7206bdb2ad563f6a15fd22bf510c228a23b60c2443aff0777d56","impliedFormat":99},{"version":"cdb45eabf4e2599ddb6c30574024e0c6cb56f98bac0a9953b3ffc9348eef4afa","signature":"91259801aa12807a0ef25239faaef72f6b697b7f64f231219c7f806d447b2ca4","impliedFormat":99},{"version":"78c35f320aa0752acb53d5e20a3146ff678040c0a3730ee20b358dbafd9d0081","affectsGlobalScope":true,"impliedFormat":1},{"version":"018e2e6d223545b3224696ccd55e428df4417a4f794e423f0602aaa8004bb2e1","affectsGlobalScope":true,"impliedFormat":1}],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9},"fileIdsList":[[174],[89,94,95,96,103,124,125],[72,94,95],[72,89,95],[94,126],[72,126],[97,98,99,100,104,111,122,123],[89,126],[97],[94,103,126],[97,108],[108,109,110],[105,106,107],[89,103,105,126],[72,89,103,126],[112,113,114,115,116,117,121],[72,89,112,113],[72,89,112],[72,89],[89,94,103,112,113,114,120,126],[95,96,103,120,124,125,126,127,128],[72,89,94,95,101],[101,102],[89,94,102],[94],[72,118,119],[90,91],[90],[90,91,92,93],[91],[56,89,172],[89,129,142,159,164,169],[72,89,94,129],[160,164,170],[129,159,160,161],[129,159,160,162],[161,162,163],[89,129,142,159,160],[172],[133],[131,132,133,134,135,136,137,138,139,140,141],[72,132],[159],[89,132,133,135,136,139,159],[72,165],[165,166,167,168],[89,166,167],[130,142,159,169,171],[130,144],[143,145,146,147],[72,89,142,143,144,145],[72,142],[72,142,147],[72,142,149],[151,152],[148,150],[72,148,172],[89,144,151],[154],[156,157],[148,155],[72,142,148],[144,148,149,150,153,154,155,158],[89,142,143],[72,74,75],[74],[72,74,79],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88],[73,74],[73],[72,76],[72,74],[57,58,59,61],[57,58,62],[57,58,59,61,62],[60],[59],[60,63,70,71],[60,63,70],[63],[65],[65,66,67],[60,63,65],[64,68,69],[89,172]],"referencedMap":[[175,1],[126,2],[96,3],[127,4],[97,5],[98,6],[124,7],[99,8],[100,9],[104,10],[109,11],[111,12],[108,13],[106,14],[107,14],[105,15],[122,16],[114,17],[115,18],[116,19],[117,19],[112,19],[113,18],[121,20],[123,9],[129,21],[95,19],[102,22],[103,23],[101,24],[118,25],[120,26],[92,27],[91,28],[94,29],[93,30],[173,31],[170,32],[160,33],[171,34],[162,35],[163,36],[164,37],[161,38],[131,39],[134,40],[142,41],[135,42],[136,43],[137,42],[133,42],[138,42],[140,44],[141,43],[139,42],[166,45],[167,45],[169,46],[168,47],[172,48],[145,49],[148,50],[147,51],[143,52],[149,53],[150,54],[153,55],[151,56],[152,57],[154,58],[155,59],[158,60],[156,61],[157,62],[159,63],[144,64],[76,65],[75,66],[77,66],[78,66],[80,67],[81,66],[89,68],[82,66],[83,69],[84,66],[85,66],[74,70],[86,71],[87,72],[79,72],[88,72],[62,73],[59,74],[63,75],[61,76],[58,77],[72,78],[71,79],[64,80],[65,80],[66,81],[68,82],[67,83],[70,84],[69,80]],"exportedModulesMap":[[175,1],[126,2],[96,3],[127,4],[97,5],[98,6],[124,7],[99,8],[100,9],[104,10],[109,11],[111,12],[108,13],[106,14],[107,14],[105,15],[122,16],[114,17],[115,18],[116,19],[117,19],[112,19],[113,18],[121,20],[123,9],[129,21],[95,19],[102,22],[103,23],[101,24],[118,25],[120,26],[92,27],[91,28],[94,29],[93,30],[173,85],[170,32],[160,33],[171,34],[162,35],[163,36],[164,37],[161,38],[131,39],[134,40],[142,41],[135,42],[136,43],[137,42],[133,42],[138,42],[140,44],[141,43],[139,42],[166,45],[167,45],[169,46],[168,47],[172,48],[145,49],[148,50],[147,51],[143,52],[149,53],[150,54],[153,55],[151,56],[152,57],[154,58],[155,59],[158,60],[156,61],[157,62],[159,63],[144,64],[76,65],[75,66],[77,66],[78,66],[80,67],[81,66],[89,68],[82,66],[83,69],[84,66],[85,66],[74,70],[86,71],[87,72],[79,72],[88,72],[62,73],[59,74],[63,75],[61,76],[58,77],[72,78],[71,79],[64,80],[65,80],[66,81],[68,82],[67,83],[70,84],[69,80]],"semanticDiagnosticsPerFile":[175,174,56,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,73,126,96,127,97,98,124,99,100,104,109,111,108,106,107,105,110,122,114,115,116,117,112,113,121,123,128,125,129,95,102,103,101,118,119,120,90,92,91,94,93,173,170,160,171,162,163,164,161,130,131,134,142,135,136,137,133,138,140,141,139,132,166,167,169,168,165,172,145,146,148,147,143,149,150,153,151,152,154,155,158,156,157,159,144,76,75,77,78,80,81,89,82,83,84,85,74,86,87,79,88,62,59,63,57,61,58,72,71,64,65,66,68,67,70,69,60],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"4.9.4"}
1
+ {"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2023.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.dom.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.2/node_modules/tslib/tslib.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.2/node_modules/tslib/modules/index.d.ts","../scrcpy/esm/codec/av1.d.ts","../scrcpy/esm/codec/h264.d.ts","../scrcpy/esm/codec/nalu.d.ts","../scrcpy/esm/codec/h265.d.ts","../scrcpy/esm/codec/index.d.ts","../struct/esm/basic/options.d.ts","../struct/esm/basic/struct-value.d.ts","../struct/esm/basic/field-value.d.ts","../struct/esm/utils.d.ts","../struct/esm/basic/stream.d.ts","../struct/esm/basic/definition.d.ts","../struct/esm/basic/index.d.ts","../struct/esm/types/bigint.d.ts","../struct/esm/types/buffer/base.d.ts","../struct/esm/types/buffer/fixed-length.d.ts","../struct/esm/types/buffer/variable-length.d.ts","../struct/esm/types/buffer/index.d.ts","../struct/esm/types/number.d.ts","../struct/esm/types/index.d.ts","../struct/esm/struct.d.ts","../struct/esm/sync-promise.d.ts","../struct/esm/index.d.ts","../../common/temp/node_modules/.pnpm/web-streams-polyfill@4.0.0-beta.3/node_modules/web-streams-polyfill/types/ponyfill.d.ts","../stream-extra/esm/stream.d.ts","../stream-extra/esm/buffered.d.ts","../stream-extra/esm/buffered-transform.d.ts","../stream-extra/esm/consumable.d.ts","../stream-extra/esm/decode-utf8.d.ts","../stream-extra/esm/distribution.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.d.ts","../stream-extra/esm/gather-string.d.ts","../stream-extra/esm/inspect.d.ts","../stream-extra/esm/pipe-from.d.ts","../stream-extra/esm/push-readable.d.ts","../stream-extra/esm/split-string.d.ts","../stream-extra/esm/struct-deserialize.d.ts","../stream-extra/esm/struct-serialize.d.ts","../stream-extra/esm/wrap-writable.d.ts","../stream-extra/esm/index.d.ts","../scrcpy/esm/options/1_16/scroll.d.ts","../scrcpy/esm/options/codec.d.ts","../scrcpy/esm/options/types.d.ts","../scrcpy/esm/options/1_16/codec-options.d.ts","../scrcpy/esm/options/1_16/float-to-uint16.d.ts","../scrcpy/esm/options/1_16/init.d.ts","../scrcpy/esm/options/1_16/message.d.ts","../scrcpy/esm/options/1_16/options.d.ts","../scrcpy/esm/options/1_16/index.d.ts","../scrcpy/esm/options/1_17.d.ts","../scrcpy/esm/options/1_18.d.ts","../scrcpy/esm/options/1_21.d.ts","../scrcpy/esm/options/1_22/init.d.ts","../scrcpy/esm/options/1_22/options.d.ts","../scrcpy/esm/options/1_22/scroll.d.ts","../scrcpy/esm/options/1_22/index.d.ts","../scrcpy/esm/options/1_23.d.ts","../scrcpy/esm/options/1_24.d.ts","../scrcpy/esm/options/1_25/options.d.ts","../scrcpy/esm/options/1_25/scroll.d.ts","../scrcpy/esm/options/1_25/index.d.ts","../scrcpy/esm/options/2_0.d.ts","../scrcpy/esm/options/latest.d.ts","../scrcpy/esm/options/index.d.ts","../scrcpy/esm/control/back-or-screen-on.d.ts","../scrcpy/esm/control/basic.d.ts","../scrcpy/esm/control/inject-touch.d.ts","../scrcpy/esm/control/hover-helper.d.ts","../scrcpy/esm/control/inject-keycode.d.ts","../scrcpy/esm/control/inject-scroll.d.ts","../scrcpy/esm/control/inject-text.d.ts","../scrcpy/esm/control/rotate-device.d.ts","../scrcpy/esm/control/set-screen-power-mode.d.ts","../scrcpy/esm/control/serializer.d.ts","../scrcpy/esm/control/set-clipboard.d.ts","../scrcpy/esm/control/type.d.ts","../scrcpy/esm/control/writer.d.ts","../scrcpy/esm/control/index.d.ts","../scrcpy/esm/device-message/type.d.ts","../scrcpy/esm/device-message/ack-clipboard.d.ts","../scrcpy/esm/device-message/clipboard.d.ts","../scrcpy/esm/device-message/stream.d.ts","../scrcpy/esm/device-message/index.d.ts","../scrcpy/esm/index.d.ts","../event/esm/disposable.d.ts","../event/esm/event.d.ts","../event/esm/event-emitter.d.ts","../event/esm/utils.d.ts","../event/esm/index.d.ts","../scrcpy-decoder-tinyh264/esm/types.d.ts","../scrcpy-decoder-tinyh264/esm/decoder.d.ts","../scrcpy-decoder-tinyh264/esm/wrapper.d.ts","../scrcpy-decoder-tinyh264/esm/index.d.ts","./src/index.ts","../../common/temp/node_modules/.pnpm/@types+dom-webcodecs@0.1.7/node_modules/@types/dom-webcodecs/webcodecs.generated.d.ts","../../common/temp/node_modules/.pnpm/@types+dom-webcodecs@0.1.7/node_modules/@types/dom-webcodecs/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"0734467ebd328b91af92eff2af9c97f6079bc4736c4992f8a5e47123680cf21b","impliedFormat":99},{"version":"ad324e6170d0e050a2681b9f6e7bb93d5c84240df5b513db656331fab3f238a6","impliedFormat":99},{"version":"8ba25a7b32fa40a6aad84745006f198b725c9c8013574df36505dbb4d098d92f","impliedFormat":99},{"version":"aa9393a5738d35906a82ae978333482ad6b3836c38466cae1f17f1def8402125","impliedFormat":99},{"version":"d940b63c0583d613202088540f0347bfa45d3fdd2479abe106e14257650d1b97","impliedFormat":99},{"version":"8dcee60e0ce1d2b35cb1ada17420565cd6a5307ae280f62b3d92e10fd344aebc","impliedFormat":99},{"version":"7ceac7d7800ef7065908464aba0a009e9a03ff95f177a44f999687bdf10d039f","impliedFormat":99},{"version":"6043ab81faab77b975cb2a8457cc28c3b6f90a766cbbd27914da686bc41c83a0","impliedFormat":99},{"version":"613051be0c04c0fadf883f5ec01dcb0a4639ac92d9e2c12a222680c91b374595","impliedFormat":99},{"version":"a740a1e2d889fc4344fbb49a7f8b02ee664850be5cdcf029ace8ceb4316623db","impliedFormat":99},{"version":"ffe3c0472cf0ad60edbf5037319135c645bd92e7acbf403d72101df3598258e0","impliedFormat":99},{"version":"64ebe41006e87ea8b5e9b3acf048018b5226c4b08c6575526a76f6801143bf90","impliedFormat":99},{"version":"5af3b8b1a9063e033fc1e32a3e95956f5f5e22548d5ccca628b1ab87e42087d1","impliedFormat":99},{"version":"2414e378fb9e46fe36d8a0f4fb7af126441078299c03a46096713b03a5f6571d","impliedFormat":99},{"version":"1ed47fe653ec1bbcbd8ed241873938642755f2917f9e9a2e78daef11519f0745","impliedFormat":99},{"version":"4e74287ad61c1544e88339e78a4da19cb79c729be8799b8cd190353368532e30","impliedFormat":99},{"version":"21a136c72551be7c24d797d4fa1401d35ee62325bec7442a6869cea50a50ad7a","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","impliedFormat":99},{"version":"2f50c2700b3397c9961c1e14b903d0ff1120e064755603740cecdcdf3b05d20f","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","impliedFormat":99},{"version":"e53e9a2cdf53d0b49f7e9b75291880a21d67e99944ca463e38d05bb318f8f15c","impliedFormat":99},{"version":"15cc3dd9a039f8ba1628d1e27cdf4b45582fc387a4241ebb65eff1786b89f522","impliedFormat":99},{"version":"01056fd3092681e2f1c0cb0e1fec91ac081b5bb758551494fca1c1d27f06c2b4","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"a387648b45b3d02c838a213809bf7aa3a3c6e009b0cfedbbb98e7863219fd0b4","impliedFormat":99},{"version":"fd9a69c8fa10f578b0d5961441fb2778fb34cd41d20e5714aa49f983f1cdd52f","impliedFormat":99},{"version":"7e9aecc83330a5c15b10f8995dfce2e1004f9bbdd0c4a9df18e8483facd76703","impliedFormat":99},{"version":"280386331ba739ec12261d42474f90f2d98214f9ac87ecad4be0585507acd937","impliedFormat":99},{"version":"316d7bdfb430fa119cbd460e01ffbf726321a5e54575c22b70e8ff56241d849a","impliedFormat":99},{"version":"d5a938d49803873c6de2daa0e81fa87ab44eee5259df765345932a28ecfb64fc","impliedFormat":99},{"version":"6642b7e23799bfb100805fbde097790a6484bd375c2c75dc18da086639f8b7e5","impliedFormat":99},{"version":"f4be8f5f1fbf13b24da4b2141e124c000750454d5168544c27352631e4edccd9","impliedFormat":99},{"version":"15268f168504a8daad6197637bf91c0399fb26861e720805051dd0e8c2f2ebd1","impliedFormat":99},{"version":"4ebc57d20caf062019a2b8c9ce1e54602a411022eb4f7fa325888b9bcf63693a","impliedFormat":99},{"version":"662cafdf363d512eff0d6c525c711684dba726ac5f4d09f473110a05c8ecd8e5","impliedFormat":99},{"version":"86c62ba4f3279d13647e2901b8819c9b32f4eb9645d50d02b4d60e5521f693db","impliedFormat":99},{"version":"98678d6ac29dfa3f80452de2a87f464dee4908476f817d6f5e0677802ad43f7b","impliedFormat":99},{"version":"057f28f1e4c53bfdc397099ee4bf873ef32f26a938a135881b19bf10f968a805","impliedFormat":99},{"version":"d00e790b0d3738482ddb18bb446210b41019520dd32438570d6bc533f7b95239","impliedFormat":99},{"version":"c4e45ef293b9b228aad0d51acb0ef0397dad22a3454b3f6f751b6de1ac9e11e0","impliedFormat":99},{"version":"9e33e135a12a5761c92a4ef0057e1d24310ada6f0758a13223036efc22b9e745","impliedFormat":99},{"version":"9207d59557ed079f2bca97c9d8294ce73410f23db8e3d1d9ba41aff7836eb7b1","impliedFormat":99},{"version":"3802746f13335d428ea68f2a6b867e031cb8ffcbf5b6ee2f101b2bde38d9408b","impliedFormat":99},{"version":"a76a7dd6e8a1bf988e250fd8c87ccab8e5bf70799671d9bceffa4a1c8fe9d5b8","impliedFormat":99},{"version":"a9e4c9a6a2f089e9a1c1d02cc0b64edc434c7aaa220fd8ddbc8ec7da738b4df4","impliedFormat":99},{"version":"5e5bd661156168b6fd7a94d95deddea447a33a315cc5ceff165e3db6ebb17400","impliedFormat":99},{"version":"52ba05f2c14d30fc792c73f2c66ebbc85465dd630cb5553da997b282a24ce6f3","impliedFormat":99},{"version":"8f05922f3c5759f330d7fe66eb851f6b7ea832257c4abb48dad1cc8890ffe1a0","impliedFormat":99},{"version":"792184de8c4aa96dfea1f1f573d1797e5baa0a603c330b54e251007563791c8a","impliedFormat":99},{"version":"124e3dec3b595520139287b8b87ea1d9a17d1b6288a66cecf7318e868e8b445b","impliedFormat":99},{"version":"9ce62dd72334b05ad761b4bc5bacb0b3493207feb1ec34526b2850467d307b76","impliedFormat":99},{"version":"88611fc3b0f708c8a5a138fd457e9229bad092af6c2885d776dd5a41c0873370","impliedFormat":99},{"version":"127ee9705ba1030ebcbc14eee3d55aebd9331cab619e7d6eb8106f2a6907acc4","impliedFormat":99},{"version":"d82a659eab5a7bc4e555b8ed631db1e0b2277959c07097c3f1279c3dc74d843a","impliedFormat":99},{"version":"aad9eca2a759c57dd744701712ec42b68f840081a57878d60e69e4574502bc84","impliedFormat":99},{"version":"e332d35d49326925df3c905987be62a101b1ddd0278cea0d321c54fb32fc1d2a","impliedFormat":99},{"version":"72920918942e421145fa7d3405d1e20e36126336f11355b0fad4ddf66c96b395","impliedFormat":99},{"version":"fa94ca9166e9094fe832050a2083d737e334fc08110ec559378351c9ef0a014c","impliedFormat":99},{"version":"9f90a838a7e6b1aeebe5cde674c1e0c77a4b3b646f9935ec0babd1959a107203","impliedFormat":99},{"version":"f82f1de6aec147664152eba85e4360be97387efb19a664ae97b248b6ff1bfc15","impliedFormat":99},{"version":"5aad98287d23e42aac230bab0c29d881e91e2042488f0268556f22b397a3b038","impliedFormat":99},{"version":"ffe342c99bb841bdc1955f43c0b1f388f6522560612fe3dade4c45f9982198d4","impliedFormat":99},{"version":"6008894e5fcaf85bf93b283af7ad6ae2644286a45a64c71213f4ecb35f202bf0","impliedFormat":99},{"version":"e142a187ed3fbef0a932995f645d5ace1b40226dd3d0b3c808ea4847ee9decf2","impliedFormat":99},{"version":"e820f64ee375cf3c9546fcb6de397ab8791c0ef630052a2231a0ad107666516b","impliedFormat":99},{"version":"49d33b0cec814e71f33a3c680b46ef8112b7b4ac76c304e8d86bcf5e8aafc148","impliedFormat":99},{"version":"e7e5890c53c38e44024c21be92850fbc323decccc2814e6e1582592e840a734d","impliedFormat":99},{"version":"a499d988e788c73d1ce066166f8a696ea0c72e497c8513fafd7b5c78a3c1c67f","impliedFormat":99},{"version":"da8ac3f526357e29cc2b5396b63272fa88b33f533165394e0104a0da5271620f","impliedFormat":99},{"version":"db6fbc1c458c9ebb6ef1fc6a1e69bbcee223b1fcf258c07746ff031da2b12494","impliedFormat":99},{"version":"75941176e22eb9eb3749de66634b65ab20420243da96054723fa823085c6c9ec","impliedFormat":99},{"version":"75010ee3a47aca74876cbe76c08636b376a0e4c622aeaa49fb905b767153a551","impliedFormat":99},{"version":"3d7cd95d231e345e45db12793781582bfaa84964e0d05882eb05b3aec2329cf1","impliedFormat":99},{"version":"92dc737f6c44f1a60d1aa575cfbb7c1b31610c27a8e028d922ac2b322f0fe4af","impliedFormat":99},{"version":"d4e15ccd6d52792b60c13c10bcd6b488cc580ff25f3c032b07c10439ada18f10","impliedFormat":99},{"version":"5785cabdf475ceb1493b6e215070ae2d3d212effd091c46bfeecbc9fb69363b3","impliedFormat":99},{"version":"44ee7dc40691c671d89f05b167b7e674d8e0337ac330b19fae8e351f495fda6b","impliedFormat":99},{"version":"1431cca010e422ef0b371c6440d4c2a1200112c41b2bc93aa87ad1f52b99d2cb","impliedFormat":99},{"version":"fc01dcdadd606a25fdcd89fe718544ff33c17db1c571eaf9f4ac18377a0716f3","impliedFormat":99},{"version":"24d7294c4165c6f0b171b41b6844c7bc9a7ce8f438b323ff293d09bcf4dd2282","impliedFormat":99},{"version":"0f525826e09edc94309b391668644cfdadc704918bf1c0c6b760a0ab5511a08e","impliedFormat":99},{"version":"5be129fe7c0b1d5c36a2c4f1a36a576b6b05fecbad1a8398c72924298eeffadb","impliedFormat":99},{"version":"d432bf55b58ee8fac50d09bb54cf844b9374e705b6a094d48c5b54d18147b88c","impliedFormat":99},{"version":"2396fac6caf45f20c826e40cc5aa0dd6dd33947c9f2a0f4cb1faef982018f668","impliedFormat":99},{"version":"c0a17bcedf9c0ce6eb1c5471261c15f1ee0ac7c17bf4b543f22845959a977bf0","impliedFormat":99},{"version":"7565a3e1f88b68c438331d8ece71540f9fb5a11a8a0480b5c262c701142c5048","impliedFormat":99},{"version":"af6ac8a19dbd05c34feff97d0eae81194fd0be1358bd2366478e9a574492d332","impliedFormat":99},{"version":"a21c587d34edbe9808b8f4fac207d190f802687b477ef55ee0f494d79a427f31","impliedFormat":99},{"version":"f00b8fc0c970cfd54d4df6047aae216bce4d7a2ceb6610655541a678ac54c57a","impliedFormat":99},{"version":"11fd6a023d60896a902933f64a2c8363102e5276838dbe29aa02a24c2e69fbd1","impliedFormat":99},{"version":"d733ff04df93b131ff1d93300255400ccb5c7f807d130ace3447463c5b0107bf","impliedFormat":99},{"version":"4a8f2e415f134e39fd0e82949a25efb1ac1e1e3f5b93f9a8ec05a6f35919ff70","impliedFormat":99},{"version":"2b5146e9e32689ead32b7f205afc6af1e40f97c7509b5f6fc01813352e8bf6a9","impliedFormat":99},{"version":"92d7af328f554f85413a55f83e6718c3b8a827c3ae5abe5bef319ea25c32153a","impliedFormat":99},{"version":"c3a05ffde1390492473343c0f0adcd58a6fbcebe02e23426fca0713aaad85726","signature":"90ae293447006ac08685c2b01f1c9b6ce64e4f758a5bbe536333a8f71be48811","impliedFormat":99},{"version":"2e777044f79a49d34f0239c61ac660460cc3e9436debce648faca0270a5dd284","affectsGlobalScope":true,"impliedFormat":1},{"version":"4851e85afe66f48f4086aed909ecb812fab71194a979aed80734d5e39cfc6634","affectsGlobalScope":true,"impliedFormat":1}],"root":[156],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":99},"fileIdsList":[[157],[61],[147,148],[147],[147,148,149,150],[148],[102,146,152],[152,153,154],[102,146,151],[151],[62,102,146,155],[65],[63,64,65,66],[126],[84],[129],[127,128,129,130,131,132,133,134,135,136,137,138,139],[126,129,131,132,135],[102,126,129,131,132,135],[84,141],[141,142,143,144],[102,142,143],[67,126,140,145],[105],[103,106,107,108,109,110],[106],[84,140],[84,102,103,104,105,106,108,140],[105,106,108,111],[84,105,106,112,140],[84,105,113,126,140],[115,116,117],[114],[84,102,104,105,106,111,113,114,115],[84,111],[102,104,105,113,118,126],[105,113,119,126],[121,122],[105,111,120],[84,111,140],[84,102,104,105,111,113,120,123,140],[102,105],[104,105,111,112,113,114,118,119,120,123,124,125],[113,124],[84,102,103,104,140],[84,86,87],[84,86],[86],[89],[84,86,92],[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],[85,86],[85],[84,88],[68,69,70,72],[68,69,73],[68,69,70,72,73],[71],[70],[71,74,81,82,83],[71,74,81],[74],[76],[76,77,78],[71,74,76],[75,79,80],[102,146,155]],"referencedMap":[[158,1],[62,2],[149,3],[148,4],[151,5],[150,6],[153,7],[155,8],[152,9],[154,10],[156,11],[66,12],[67,13],[127,14],[128,15],[130,16],[140,17],[131,15],[132,14],[133,15],[129,14],[134,15],[136,18],[137,14],[135,15],[138,14],[139,19],[142,20],[143,20],[145,21],[144,22],[146,23],[106,24],[107,15],[111,25],[108,26],[109,27],[110,28],[103,27],[112,29],[113,30],[114,31],[118,32],[115,33],[116,34],[117,35],[119,36],[120,37],[123,38],[121,39],[122,40],[124,41],[104,42],[126,43],[125,44],[105,45],[88,46],[87,47],[89,48],[90,48],[91,49],[93,50],[94,48],[102,51],[95,48],[96,52],[97,48],[98,48],[86,53],[99,54],[100,47],[92,47],[101,47],[73,55],[70,56],[74,57],[72,58],[69,59],[84,60],[82,61],[75,62],[76,62],[77,63],[79,64],[78,65],[81,66],[80,62]],"exportedModulesMap":[[158,1],[62,2],[149,3],[148,4],[151,5],[150,6],[153,7],[155,8],[152,9],[154,10],[156,67],[66,12],[67,13],[127,14],[128,15],[130,16],[140,17],[131,15],[132,14],[133,15],[129,14],[134,15],[136,18],[137,14],[135,15],[138,14],[139,19],[142,20],[143,20],[145,21],[144,22],[146,23],[106,24],[107,15],[111,25],[108,26],[109,27],[110,28],[103,27],[112,29],[113,30],[114,31],[118,32],[115,33],[116,34],[117,35],[119,36],[120,37],[123,38],[121,39],[122,40],[124,41],[104,42],[126,43],[125,44],[105,45],[88,46],[87,47],[89,48],[90,48],[91,49],[93,50],[94,48],[102,51],[95,48],[96,52],[97,48],[98,48],[86,53],[99,54],[100,47],[92,47],[101,47],[73,55],[70,56],[74,57],[72,58],[69,59],[84,60],[82,61],[75,62],[76,62],[77,63],[79,64],[78,65],[81,66],[80,62]],"semanticDiagnosticsPerFile":[158,157,62,61,59,60,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,57,10,1,11,58,85,147,149,148,151,150,153,155,152,154,156,63,64,66,67,65,127,128,130,140,131,132,133,129,134,136,137,135,138,139,142,143,145,144,141,146,106,107,111,108,109,110,103,112,113,114,118,115,116,117,119,120,123,121,122,124,104,126,125,105,88,87,89,90,91,93,94,102,95,96,97,98,86,99,100,92,101,73,70,74,68,72,69,84,82,83,75,76,77,79,78,81,80,71],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"5.0.4"}