@gjsify/video 0.4.0 → 0.4.4

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.
@@ -70,7 +70,7 @@ export declare const VideoBridge: {
70
70
  volumeBtn: Gtk.VolumeButton;
71
71
  lastSeekValue: number;
72
72
  lastTimeText: string;
73
- } | null>;
73
+ }>;
74
74
  _startPositionTimer(): void;
75
75
  _stopPositionTimer(): void;
76
76
  _onSrcObjectChange(): void;
package/package.json CHANGED
@@ -1,46 +1,49 @@
1
1
  {
2
- "name": "@gjsify/video",
3
- "version": "0.4.0",
4
- "description": "VideoBridge — GTK container for HTMLVideoElement backed by GStreamer gtk4paintablesink",
5
- "type": "module",
6
- "module": "lib/esm/index.js",
7
- "types": "lib/types/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./lib/types/index.d.ts",
11
- "default": "./lib/esm/index.js"
2
+ "name": "@gjsify/video",
3
+ "version": "0.4.4",
4
+ "description": "VideoBridge — GTK container for HTMLVideoElement backed by GStreamer gtk4paintablesink",
5
+ "type": "module",
6
+ "module": "lib/esm/index.js",
7
+ "types": "lib/types/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/types/index.d.ts",
11
+ "default": "./lib/esm/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "lib"
16
+ ],
17
+ "scripts": {
18
+ "clear": "rm -rf lib tmp tsconfig.tsbuildinfo || exit 0",
19
+ "check": "tsc --noEmit",
20
+ "build": "gjsify run build:gjsify && gjsify run build:types",
21
+ "build:gjsify": "gjsify build --library 'src/**/*.{ts,js}' --exclude 'src/**/*.spec.{mts,ts}' 'src/test.{mts,ts}'",
22
+ "build:types": "tsc"
23
+ },
24
+ "keywords": [
25
+ "gjs",
26
+ "gtk",
27
+ "video",
28
+ "gstreamer",
29
+ "bridge"
30
+ ],
31
+ "dependencies": {
32
+ "@girs/gdk-4.0": "4.0.0-4.0.0-rc.15",
33
+ "@girs/gjs": "4.0.0-rc.15",
34
+ "@girs/glib-2.0": "2.88.0-4.0.0-rc.15",
35
+ "@girs/gobject-2.0": "2.88.0-4.0.0-rc.15",
36
+ "@girs/gst-1.0": "1.28.1-4.0.0-rc.15",
37
+ "@girs/gtk-4.0": "4.23.0-4.0.0-rc.15",
38
+ "@gjsify/bridge-types": "^0.4.4",
39
+ "@gjsify/dom-elements": "^0.4.4",
40
+ "@gjsify/dom-events": "^0.4.4",
41
+ "@gjsify/dom-exception": "^0.4.4",
42
+ "@gjsify/event-bridge": "^0.4.4"
43
+ },
44
+ "devDependencies": {
45
+ "@gjsify/cli": "^0.4.4",
46
+ "@types/node": "^25.6.2",
47
+ "typescript": "^6.0.3"
12
48
  }
13
- },
14
- "scripts": {
15
- "clear": "rm -rf lib tmp tsconfig.tsbuildinfo || exit 0",
16
- "check": "tsc --noEmit",
17
- "build": "yarn build:gjsify && yarn build:types",
18
- "build:gjsify": "gjsify build --library 'src/**/*.{ts,js}' --exclude 'src/**/*.spec.{mts,ts}' 'src/test.{mts,ts}'",
19
- "build:types": "tsc"
20
- },
21
- "keywords": [
22
- "gjs",
23
- "gtk",
24
- "video",
25
- "gstreamer",
26
- "bridge"
27
- ],
28
- "dependencies": {
29
- "@girs/gdk-4.0": "4.0.0-4.0.0-rc.15",
30
- "@girs/gjs": "4.0.0-rc.15",
31
- "@girs/glib-2.0": "2.88.0-4.0.0-rc.15",
32
- "@girs/gobject-2.0": "2.88.0-4.0.0-rc.15",
33
- "@girs/gst-1.0": "1.28.1-4.0.0-rc.15",
34
- "@girs/gtk-4.0": "4.23.0-4.0.0-rc.15",
35
- "@gjsify/bridge-types": "^0.4.0",
36
- "@gjsify/dom-elements": "^0.4.0",
37
- "@gjsify/dom-events": "^0.4.0",
38
- "@gjsify/dom-exception": "^0.4.0",
39
- "@gjsify/event-bridge": "^0.4.0"
40
- },
41
- "devDependencies": {
42
- "@gjsify/cli": "^0.4.0",
43
- "@types/node": "^25.6.2",
44
- "typescript": "^6.0.3"
45
- }
46
- }
49
+ }
package/src/gst-init.ts DELETED
@@ -1,38 +0,0 @@
1
- // Lazy GStreamer initialization for the Video bridge.
2
- //
3
- // gtk4paintablesink ships with GStreamer's gst-plugins-rs (Rust plugins).
4
- // On Fedora: gstreamer1-plugin-gtk4
5
- // On Ubuntu/Debian: gstreamer1.0-gtk4
6
- //
7
- // This module is GJS-only — the Node alias layer routes it to @gjsify/empty.
8
-
9
- import Gst from 'gi://Gst?version=1.0';
10
- import { DOMException } from '@gjsify/dom-exception';
11
-
12
- let initialized = false;
13
-
14
- export function ensureGstInit(): void {
15
- if (initialized) return;
16
- Gst.init(null as any);
17
- initialized = true;
18
- }
19
-
20
- /** Throws if the gtk4paintablesink element is not registered. */
21
- export function ensurePaintableSinkAvailable(): void {
22
- ensureGstInit();
23
- const factory = Gst.ElementFactory.find('gtk4paintablesink');
24
- if (!factory) {
25
- throwNotSupported(
26
- 'GStreamer element "gtk4paintablesink" not available. Install gst-plugins-rs:\n' +
27
- ' Fedora: dnf install gstreamer1-plugin-gtk4\n' +
28
- ' Ubuntu/Debian: apt install gstreamer1.0-gtk4\n' +
29
- ' Verify with: gst-inspect-1.0 gtk4paintablesink',
30
- );
31
- }
32
- }
33
-
34
- function throwNotSupported(message: string): never {
35
- throw new DOMException(message, 'NotSupportedError');
36
- }
37
-
38
- export { Gst };
package/src/index.ts DELETED
@@ -1,8 +0,0 @@
1
- // Video bridge for GJS — Gtk.Picture container backed by GStreamer gtk4paintablesink.
2
- // Reimplemented for GJS using GStreamer + GTK4.
3
-
4
- export { VideoBridge } from './video-bridge.js';
5
- export { buildMediaStreamPipeline, buildUriPipeline, createPaintableSink } from './pipeline-builder.js';
6
-
7
- // Re-export HTMLVideoElement from dom-elements for consumers who need the type.
8
- export { HTMLVideoElement } from '@gjsify/dom-elements';
@@ -1,158 +0,0 @@
1
- // GStreamer pipeline construction for the VideoBridge.
2
- //
3
- // Two pipeline modes:
4
- // 1. MediaStream (srcObject) — takes a GStreamer source element from the track
5
- // and wires it through videoconvert → gtk4paintablesink
6
- // 2. URI (src) — uses playbin with gtk4paintablesink as video-sink
7
- //
8
- // Reference: refs/showtime/showtime/play.py (gtk4paintablesink + optional glsinkbin)
9
-
10
- import Gdk from 'gi://Gdk?version=4.0';
11
- import { ensureGstInit, ensurePaintableSinkAvailable, Gst } from './gst-init.js';
12
-
13
- export interface PaintableSinkResult {
14
- sink: Gst.Element;
15
- paintable: Gdk.Paintable;
16
- glSink: Gst.Element | null;
17
- }
18
-
19
- /**
20
- * Create a gtk4paintablesink and extract its Gdk.Paintable.
21
- * Optionally wraps in glsinkbin for GL-accelerated rendering
22
- * (following the showtime pattern).
23
- */
24
- export function createPaintableSink(): PaintableSinkResult {
25
- ensurePaintableSinkAvailable();
26
-
27
- const paintableSink = Gst.ElementFactory.make('gtk4paintablesink', 'videosink');
28
- if (!paintableSink) {
29
- throw new Error('Failed to create gtk4paintablesink element');
30
- }
31
-
32
- const paintable: Gdk.Paintable = (paintableSink as any).paintable;
33
- if (!paintable) {
34
- throw new Error('gtk4paintablesink has no paintable property');
35
- }
36
-
37
- // Try GL-accelerated rendering via glsinkbin (pattern from refs/showtime)
38
- let glSink: Gst.Element | null = null;
39
- const glContext = (paintable as any).gl_context;
40
- if (glContext) {
41
- glSink = Gst.ElementFactory.make('glsinkbin', 'glsink');
42
- if (glSink) {
43
- (glSink as any).sink = paintableSink;
44
- }
45
- }
46
-
47
- return {
48
- sink: glSink ?? paintableSink,
49
- paintable,
50
- glSink,
51
- };
52
- }
53
-
54
- export interface MediaStreamPipelineResult {
55
- pipeline: Gst.Pipeline;
56
- paintable: Gdk.Paintable;
57
- /** The tee element inserted after the source for fan-out to other consumers (e.g. WebRTC). Only present for MediaStream pipelines. */
58
- tee?: Gst.Element;
59
- }
60
-
61
- /**
62
- * Build a pipeline for rendering a MediaStream video track.
63
- *
64
- * Expects the track's _gstSource element (from getUserMedia) and the
65
- * track's _gstPipeline. The source is removed from its original pipeline
66
- * (created by getUserMedia) and re-parented into a new pipeline with:
67
- * source → tee → queue → videoconvert → gtk4paintablesink
68
- *
69
- * The tee element allows other consumers (e.g. RTCPeerConnection.addTrack)
70
- * to request additional branches without moving the source across pipelines.
71
- */
72
- export function buildMediaStreamPipeline(gstSource: any, gstPipeline: any): MediaStreamPipelineResult {
73
- ensureGstInit();
74
- const { sink, paintable } = createPaintableSink();
75
-
76
- // The source lives in the pipeline created by getUserMedia.
77
- // Stop that pipeline and remove the source so we can re-parent it.
78
- if (gstPipeline) {
79
- gstPipeline.set_state(Gst.State.NULL);
80
- gstPipeline.remove(gstSource);
81
- }
82
-
83
- const pipeline = new Gst.Pipeline({ name: 'video-bridge-pipeline' });
84
-
85
- // Insert a tee after the source so that additional consumers (e.g. WebRTC
86
- // encoder chain) can tap into the same source without cross-pipeline issues.
87
- const tee = Gst.ElementFactory.make('tee', 'source-tee');
88
- if (!tee) {
89
- throw new Error('Failed to create tee element');
90
- }
91
- (tee as any).allow_not_linked = true;
92
-
93
- const queue = Gst.ElementFactory.make('queue', 'preview-queue');
94
- if (!queue) {
95
- throw new Error('Failed to create queue element');
96
- }
97
-
98
- const videoconvert = Gst.ElementFactory.make('videoconvert', 'convert');
99
- if (!videoconvert) {
100
- throw new Error('Failed to create videoconvert element');
101
- }
102
-
103
- pipeline.add(gstSource);
104
- pipeline.add(tee);
105
- pipeline.add(queue);
106
- pipeline.add(videoconvert);
107
- pipeline.add(sink);
108
-
109
- // source → tee
110
- if (!gstSource.link(tee)) {
111
- throw new Error('Failed to link source → tee');
112
- }
113
-
114
- // tee → queue (via request pad)
115
- const teeSrcPad = tee.request_pad_simple
116
- ? tee.request_pad_simple('src_%u')
117
- : (tee as any).get_request_pad('src_%u');
118
- const queueSinkPad = queue.get_static_pad('sink');
119
- if (teeSrcPad && queueSinkPad) {
120
- teeSrcPad.link(queueSinkPad);
121
- } else {
122
- throw new Error('Failed to link tee → queue');
123
- }
124
-
125
- // queue → videoconvert → sink
126
- if (!queue.link(videoconvert)) {
127
- throw new Error('Failed to link queue → videoconvert');
128
- }
129
- if (!videoconvert.link(sink)) {
130
- throw new Error('Failed to link videoconvert → sink');
131
- }
132
-
133
- return { pipeline, paintable, tee };
134
- }
135
-
136
- /**
137
- * Build a pipeline for playing a URI (video.src = "file:///..." or URL).
138
- *
139
- * Uses GStreamer playbin with gtk4paintablesink as video-sink.
140
- */
141
- export function buildUriPipeline(uri: string): MediaStreamPipelineResult {
142
- ensureGstInit();
143
- const { sink, paintable } = createPaintableSink();
144
-
145
- const playbin = Gst.ElementFactory.make('playbin', 'playbin');
146
- if (!playbin) {
147
- throw new Error('Failed to create playbin element');
148
- }
149
-
150
- (playbin as any).uri = uri;
151
- (playbin as any).video_sink = sink;
152
-
153
- // Wrap playbin in a pipeline
154
- const pipeline = new Gst.Pipeline({ name: 'video-bridge-uri-pipeline' });
155
- pipeline.add(playbin);
156
-
157
- return { pipeline, paintable };
158
- }
@@ -1,409 +0,0 @@
1
- // VideoBridge — GTK container that bridges HTMLVideoElement to GStreamer video.
2
- // Gtk.Box → Gtk.Overlay → (Gtk.Picture + optional control bar).
3
- // Controls float over the video (valign=END), start hidden, reveal on mouse
4
- // motion, and auto-hide after 2s of inactivity like browser video players.
5
- //
6
- // Reference: refs/showtime/showtime/play.py (gtk4paintablesink + glsinkbin).
7
- // Pattern follows packages/dom/canvas2d/src/canvas-drawing-area.ts.
8
-
9
- import GObject from 'gi://GObject';
10
- import GLib from 'gi://GLib?version=2.0';
11
- import Gtk from 'gi://Gtk?version=4.0';
12
- import type Gst from 'gi://Gst?version=1.0';
13
- import { attachEventControllers } from '@gjsify/event-bridge';
14
- import { Event } from '@gjsify/dom-events';
15
- import { BridgeEnvironment } from '@gjsify/bridge-types';
16
- import type { BridgeWindowHost } from '@gjsify/bridge-types';
17
-
18
- import { HTMLVideoElement } from '@gjsify/dom-elements';
19
- import { buildMediaStreamPipeline, buildUriPipeline } from './pipeline-builder.js';
20
- import { Gst as GstRuntime } from './gst-init.js';
21
-
22
- type VideoReadyCallback = (video: globalThis.HTMLVideoElement) => void;
23
-
24
- type GstSourceTrack = MediaStreamTrack & {
25
- _gstSource?: unknown;
26
- _gstPipeline?: unknown;
27
- _gstTee?: unknown;
28
- };
29
-
30
- const PLAY_ICON = 'media-playback-start-symbolic';
31
- const PAUSE_ICON = 'media-playback-pause-symbolic';
32
- const AUTO_HIDE_SECONDS = 2;
33
- const POSITION_TICK_MS = 200;
34
-
35
- function formatTime(seconds: number): string {
36
- if (!isFinite(seconds) || isNaN(seconds)) return '--:--';
37
- const m = Math.floor(seconds / 60);
38
- const s = Math.floor(seconds % 60);
39
- return `${m}:${s.toString().padStart(2, '0')}`;
40
- }
41
-
42
- /**
43
- * A `Gtk.Box` subclass that hosts a `Gtk.Picture` for video rendering.
44
- *
45
- * - Owns an `HTMLVideoElement` whose DOM API is wired to GStreamer
46
- * - Renders video via `gtk4paintablesink` → `Gdk.Paintable` → `Gtk.Picture`
47
- * - Supports `video.srcObject = mediaStream` (getUserMedia / WebRTC)
48
- * - Supports `video.src = 'file://…'` or HTTP URL (URI playback via playbin)
49
- * - `onReady(cb)` fires with the HTMLVideoElement when the widget realizes
50
- * - `showControls(true)` appends a play/pause + seek + time + volume bar
51
- *
52
- * ```ts
53
- * const bridge = new VideoBridge();
54
- * bridge.showControls(true);
55
- * bridge.onReady((video) => { video.src = 'https://example.com/video.mp4'; });
56
- * window.set_child(bridge);
57
- * ```
58
- */
59
- export const VideoBridge = GObject.registerClass(
60
- { GTypeName: 'GjsifyVideoBridge' },
61
- class VideoBridge extends Gtk.Box {
62
- // GObject.registerClass produces an anonymous class, so TS requires that fields
63
- // referenced from the InstanceType alias be non-private. Prefixed with `_` as the
64
- // convention for "implementation detail, not meant for external use".
65
- _overlay: Gtk.Overlay;
66
- _picture: Gtk.Picture;
67
- _video: HTMLVideoElement;
68
- _environment: BridgeEnvironment;
69
- _timeOrigin: number = GLib.get_monotonic_time();
70
- _pipeline: Gst.Pipeline | null = null;
71
- // Bus associated with _pipeline; stored so `_destroyPipeline` can
72
- // disconnect the handlers + `remove_signal_watch` before the pipeline
73
- // is nulled. Without cleanup, changing `video.src` repeatedly
74
- // accumulates handler connections on each pipeline's bus.
75
- _pipelineBus: Gst.Bus | null = null;
76
- _pipelineBusHandlers: number[] = [];
77
- _readyCallbacks: VideoReadyCallback[] = [];
78
- _resizeCallbacks: ((w: number, h: number) => void)[] = [];
79
- _ready = false;
80
-
81
- // Control bar + its per-tick change-detection state (null when
82
- // showControls(false) or never called). Keeping _lastSeekValue /
83
- // _lastTimeText on the same object lets them live and die with the
84
- // controls; no separate reset needed.
85
- _controls: {
86
- bar: Gtk.Box;
87
- playBtn: Gtk.Button;
88
- seekAdj: Gtk.Adjustment;
89
- seekScale: Gtk.Scale;
90
- timeLabel: Gtk.Label;
91
- volumeBtn: Gtk.VolumeButton;
92
- lastSeekValue: number;
93
- lastTimeText: string;
94
- } | null = null;
95
- _positionTimerId: number | null = null;
96
- // change-value on seekScale fires on user interaction only; the guard prevents
97
- // programmatic set_value from bouncing through the signal on some compositors.
98
- _updatingFromTimer = false;
99
- // Auto-hide: a single re-armed GLib source. Mouse motion re-starts the
100
- // 2s timer by removing and re-adding, so we never pile up pending sources.
101
- _hideTimerId: number | null = null;
102
-
103
- constructor(params?: Partial<Gtk.Box.ConstructorProps>) {
104
- super({ ...params, orientation: Gtk.Orientation.VERTICAL });
105
-
106
- this._overlay = new Gtk.Overlay({ hexpand: true, vexpand: true });
107
- this.append(this._overlay);
108
-
109
- this._picture = new Gtk.Picture({ hexpand: true, vexpand: true });
110
- this._overlay.set_child(this._picture);
111
-
112
- this._video = new HTMLVideoElement();
113
-
114
- const host: BridgeWindowHost = {
115
- performanceNow: () => (GLib.get_monotonic_time() - this._timeOrigin) / 1000,
116
- getWidth: () => this.get_allocated_width(),
117
- getHeight: () => this.get_allocated_height(),
118
- getDevicePixelRatio: () => this.get_native()?.get_surface()?.get_scale_factor() ?? 1,
119
- };
120
- this._environment = new BridgeEnvironment(host);
121
- this._environment.document.body.appendChild(this._video);
122
-
123
- attachEventControllers(this, () => this._video);
124
-
125
- this._video.addEventListener('srcobjectchange', () => this._onSrcObjectChange());
126
- this._video.addEventListener('srcchange', () => this._onSrcChange());
127
-
128
- this.connect('realize', () => {
129
- if (this._ready) return;
130
- this._ready = true;
131
- for (const cb of this._readyCallbacks) {
132
- cb(this._video as unknown as globalThis.HTMLVideoElement);
133
- }
134
- this._readyCallbacks = [];
135
- });
136
-
137
- let lastWidth = 0;
138
- let lastHeight = 0;
139
- const checkResize = () => {
140
- const width = this.get_allocated_width();
141
- const height = this.get_allocated_height();
142
- if (width === lastWidth && height === lastHeight) return;
143
- lastWidth = width;
144
- lastHeight = height;
145
- this._video.dispatchEvent(new Event('resize'));
146
- for (const cb of this._resizeCallbacks) cb(width, height);
147
- };
148
- this.connect('notify::width-request', checkResize);
149
- this.connect('notify::height-request', checkResize);
150
- this.connect('map', checkResize);
151
-
152
- this.connect('unrealize', () => {
153
- this._destroyPipeline();
154
- this._stopPositionTimer();
155
- this._resizeCallbacks = [];
156
- });
157
- }
158
-
159
- get element(): HTMLVideoElement { return this._video; }
160
- get videoElement(): HTMLVideoElement { return this._video; }
161
- get environment(): BridgeEnvironment { return this._environment; }
162
-
163
- onReady(cb: VideoReadyCallback): void {
164
- if (this._ready) {
165
- cb(this._video as unknown as globalThis.HTMLVideoElement);
166
- return;
167
- }
168
- this._readyCallbacks.push(cb);
169
- }
170
-
171
- onResize(cb: (width: number, height: number) => void): void {
172
- this._resizeCallbacks.push(cb);
173
- }
174
-
175
- installGlobals(): void {
176
- (globalThis as { HTMLVideoElement?: unknown }).HTMLVideoElement = HTMLVideoElement;
177
-
178
- if (typeof (globalThis as { performance?: unknown }).performance === 'undefined') {
179
- const timeOrigin = this._timeOrigin;
180
- (globalThis as { performance?: unknown }).performance = {
181
- now: () => (GLib.get_monotonic_time() - timeOrigin) / 1000,
182
- timeOrigin: Date.now(),
183
- };
184
- }
185
- }
186
-
187
- /**
188
- * Show or hide the built-in play/pause + seek + time + volume control bar.
189
- * Controls auto-hide after 2 seconds of mouse inactivity.
190
- */
191
- showControls(show = true): void {
192
- if (show && !this._controls) {
193
- this._controls = this._buildControlBar();
194
- const { bar } = this._controls;
195
- bar.set_halign(Gtk.Align.FILL);
196
- bar.set_valign(Gtk.Align.END);
197
- bar.set_visible(false);
198
- this._overlay.add_overlay(bar);
199
- this._startPositionTimer();
200
- this._setupAutoHideMotion(bar);
201
- } else if (!show && this._controls) {
202
- this._overlay.remove_overlay(this._controls.bar);
203
- this._controls = null;
204
- this._stopPositionTimer();
205
- if (this._hideTimerId !== null) {
206
- GLib.Source.remove(this._hideTimerId);
207
- this._hideTimerId = null;
208
- }
209
- }
210
- }
211
-
212
- _setupAutoHideMotion(controlBar: Gtk.Box): void {
213
- for (const widget of [this, controlBar] as const) {
214
- const motion = new Gtk.EventControllerMotion();
215
- motion.connect('motion', () => this._revealControls());
216
- motion.connect('enter', () => this._revealControls());
217
- widget.add_controller(motion);
218
- }
219
- }
220
-
221
- _revealControls(): void {
222
- if (!this._controls) return;
223
- this._controls.bar.set_visible(true);
224
- if (this._hideTimerId !== null) GLib.Source.remove(this._hideTimerId);
225
- this._hideTimerId = GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, AUTO_HIDE_SECONDS, () => {
226
- this._hideTimerId = null;
227
- this._controls?.bar.set_visible(false);
228
- return GLib.SOURCE_REMOVE;
229
- });
230
- }
231
-
232
- _buildControlBar(): NonNullable<VideoBridge['_controls']> {
233
- const bar = new Gtk.Box({
234
- orientation: Gtk.Orientation.HORIZONTAL,
235
- spacing: 6,
236
- margin_start: 6,
237
- margin_end: 6,
238
- margin_top: 4,
239
- margin_bottom: 4,
240
- });
241
- // OSD class: semi-transparent dark background for legibility over video.
242
- bar.add_css_class('osd');
243
-
244
- const playBtn = new Gtk.Button({ icon_name: PAUSE_ICON });
245
- playBtn.connect('clicked', () => {
246
- if (this._video.paused) {
247
- this._video.play();
248
- playBtn.set_icon_name(PAUSE_ICON);
249
- } else {
250
- this._video.pause();
251
- playBtn.set_icon_name(PLAY_ICON);
252
- }
253
- });
254
- bar.append(playBtn);
255
-
256
- const seekAdj = new Gtk.Adjustment({ lower: 0, upper: 1, step_increment: 1, page_increment: 10 });
257
- const seekScale = Gtk.Scale.new(Gtk.Orientation.HORIZONTAL, seekAdj);
258
- seekScale.set_hexpand(true);
259
- seekScale.set_draw_value(false);
260
- seekScale.connect('change-value', (_scale, _scroll, value) => {
261
- if (!this._updatingFromTimer && isFinite(value)) {
262
- this._video.currentTime = value;
263
- }
264
- return false;
265
- });
266
- bar.append(seekScale);
267
-
268
- const timeLabel = new Gtk.Label({ label: '--:-- / --:--', use_markup: false });
269
- bar.append(timeLabel);
270
-
271
- const volumeBtn = new Gtk.VolumeButton({ value: 1.0 });
272
- volumeBtn.connect('value-changed', (_btn, value) => { this._video.volume = value; });
273
- bar.append(volumeBtn);
274
-
275
- return { bar, playBtn, seekAdj, seekScale, timeLabel, volumeBtn, lastSeekValue: NaN, lastTimeText: '' };
276
- }
277
-
278
- _startPositionTimer(): void {
279
- if (this._positionTimerId !== null) return;
280
- this._positionTimerId = GLib.timeout_add(GLib.PRIORITY_DEFAULT, POSITION_TICK_MS, () => {
281
- const controls = this._controls;
282
- if (!controls) return GLib.SOURCE_REMOVE;
283
-
284
- const cur = this._video.currentTime;
285
- const dur = this._video.duration;
286
-
287
- if (isFinite(dur) && dur > 0) {
288
- if (controls.seekAdj.upper !== dur) controls.seekAdj.upper = dur;
289
- if (cur !== controls.lastSeekValue) {
290
- this._updatingFromTimer = true;
291
- controls.seekAdj.set_value(cur);
292
- this._updatingFromTimer = false;
293
- controls.lastSeekValue = cur;
294
- }
295
- }
296
-
297
- const text = `${formatTime(cur)} / ${formatTime(dur)}`;
298
- if (text !== controls.lastTimeText) {
299
- controls.timeLabel.set_label(text);
300
- controls.lastTimeText = text;
301
- }
302
-
303
- const icon = this._video.paused ? PLAY_ICON : PAUSE_ICON;
304
- if (controls.playBtn.get_icon_name() !== icon) controls.playBtn.set_icon_name(icon);
305
-
306
- return GLib.SOURCE_CONTINUE;
307
- });
308
- }
309
-
310
- _stopPositionTimer(): void {
311
- if (this._positionTimerId !== null) {
312
- GLib.Source.remove(this._positionTimerId);
313
- this._positionTimerId = null;
314
- }
315
- }
316
-
317
- _onSrcObjectChange(): void {
318
- this._destroyPipeline();
319
-
320
- const stream = this._video.srcObject;
321
- if (!stream) return;
322
-
323
- const tracks = stream.getVideoTracks?.() as GstSourceTrack[] | undefined ?? [];
324
- const track = tracks.find((t) => t._gstSource != null);
325
- if (!track?._gstSource) {
326
- console.warn('VideoBridge: MediaStream has no video track with GStreamer source');
327
- return;
328
- }
329
-
330
- try {
331
- const { pipeline, paintable, tee } = buildMediaStreamPipeline(track._gstSource, track._gstPipeline);
332
- this._attachPipeline(pipeline, paintable);
333
- track._gstPipeline = pipeline;
334
- track._gstTee = tee;
335
- } catch (err) {
336
- console.error('VideoBridge: Failed to build MediaStream pipeline:', err);
337
- }
338
- }
339
-
340
- _onSrcChange(): void {
341
- this._destroyPipeline();
342
- if (!this._video.src) return;
343
-
344
- try {
345
- const { pipeline, paintable } = buildUriPipeline(this._video.src);
346
- this._attachPipeline(pipeline, paintable);
347
- } catch (err) {
348
- console.error('VideoBridge: Failed to build URI pipeline:', err);
349
- }
350
- }
351
-
352
- _attachPipeline(pipeline: Gst.Pipeline, paintable: Parameters<Gtk.Picture['set_paintable']>[0]): void {
353
- this._pipeline = pipeline;
354
- this._video._pipeline = pipeline;
355
- this._picture.set_paintable(paintable);
356
-
357
- // Bus watch surfaces pipeline errors and warnings (missing decoder,
358
- // http source failure, missing plugin, etc.). Without this, playbin
359
- // can fail to preroll and sit silently in READY forever. Handler
360
- // ids + bus are stashed on the instance so `_destroyPipeline` can
361
- // disconnect them — otherwise each pipeline swap (new video.src)
362
- // leaks a set of signal handlers on the freed bus.
363
- const bus = pipeline.get_bus();
364
- if (bus) {
365
- bus.add_signal_watch();
366
- this._pipelineBus = bus;
367
- this._pipelineBusHandlers = [
368
- bus.connect('message::error', (_b, msg) => {
369
- const [err, debug] = msg.parse_error();
370
- console.error(`VideoBridge pipeline error: ${err?.message ?? 'unknown'} (${debug ?? ''})`);
371
- this._video.dispatchEvent(new Event('error'));
372
- }),
373
- bus.connect('message::warning', (_b, msg) => {
374
- const [err, debug] = msg.parse_warning();
375
- console.warn(`VideoBridge pipeline warning: ${err?.message ?? 'unknown'} (${debug ?? ''})`);
376
- }),
377
- ];
378
- }
379
-
380
- const ret = pipeline.set_state(GstRuntime.State.PLAYING);
381
- if (ret === GstRuntime.StateChangeReturn.FAILURE) {
382
- console.error('VideoBridge: pipeline state change to PLAYING failed');
383
- }
384
- this._video.readyState = 4;
385
- this._video.dispatchEvent(new Event('loadedmetadata'));
386
- this._video.dispatchEvent(new Event('canplay'));
387
- this._video.dispatchEvent(new Event('playing'));
388
- }
389
-
390
- _destroyPipeline(): void {
391
- if (this._pipelineBus) {
392
- for (const id of this._pipelineBusHandlers) {
393
- try { this._pipelineBus.disconnect(id); } catch { /* ignore */ }
394
- }
395
- try { this._pipelineBus.remove_signal_watch(); } catch { /* ignore */ }
396
- this._pipelineBus = null;
397
- this._pipelineBusHandlers = [];
398
- }
399
- if (this._pipeline) {
400
- try { this._pipeline.set_state(GstRuntime.State.NULL); } catch { /* ignore */ }
401
- this._pipeline = null;
402
- this._video._pipeline = null;
403
- }
404
- this._picture.set_paintable(null);
405
- }
406
- },
407
- );
408
-
409
- export type VideoBridge = InstanceType<typeof VideoBridge>;
package/tmp/.tsbuildinfo DELETED
@@ -1 +0,0 @@
1
- {"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../web/dom-exception/lib/types/index.d.ts","../src/gst-init.ts","../../event-bridge/lib/types/event-bridge.d.ts","../../event-bridge/lib/types/key-map.d.ts","../../event-bridge/lib/types/index.d.ts","../../../web/dom-events/lib/types/index.d.ts","../../../dom/dom-elements/lib/types/property-symbol.d.ts","../../../dom/dom-elements/lib/types/node-list.d.ts","../../../dom/dom-elements/lib/types/node.d.ts","../../../dom/dom-elements/lib/types/named-node-map.d.ts","../../../dom/dom-elements/lib/types/element.d.ts","../../../dom/dom-elements/lib/types/attr.d.ts","../../../dom/dom-elements/lib/types/character-data.d.ts","../../../dom/dom-elements/lib/types/text.d.ts","../../../dom/dom-elements/lib/types/comment.d.ts","../../../dom/dom-elements/lib/types/document-fragment.d.ts","../../../dom/dom-elements/lib/types/dom-token-list.d.ts","../../../dom/dom-elements/lib/types/html-element.d.ts","../../../dom/dom-elements/lib/types/html-canvas-element.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-ambient.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-import.d.ts","../../../../node_modules/@girs/gjs/gettext.d.ts","../../../../node_modules/@girs/gobject-2.0/gobject-2.0-ambient.d.ts","../../../../node_modules/@girs/gobject-2.0/gobject-2.0-import.d.ts","../../../../node_modules/@girs/glib-2.0/glib-2.0-ambient.d.ts","../../../../node_modules/@girs/glib-2.0/glib-2.0-import.d.ts","../../../../node_modules/@girs/glib-2.0/glib-2.0.d.ts","../../../../node_modules/@girs/glib-2.0/index.d.ts","../../../../node_modules/@girs/gobject-2.0/gobject-2.0.d.ts","../../../../node_modules/@girs/gobject-2.0/index.d.ts","../../../../node_modules/@girs/gjs/system.d.ts","../../../../node_modules/@girs/cairo-1.0/cairo-1.0-ambient.d.ts","../../../../node_modules/@girs/cairo-1.0/cairo-1.0-import.d.ts","../../../../node_modules/@girs/cairo-1.0/cairo-1.0.d.ts","../../../../node_modules/@girs/cairo-1.0/index.d.ts","../../../../node_modules/@girs/gjs/cairo.d.ts","../../../../node_modules/@girs/gjs/console.d.ts","../../../../node_modules/@girs/gjs/gi.d.ts","../../../../node_modules/@girs/gjs/gjs-ambient.d.ts","../../../../node_modules/@girs/gjs/gjs.d.ts","../../../../node_modules/@girs/gjs/index.d.ts","../../../../node_modules/@girs/gio-2.0/gio-2.0-ambient.d.ts","../../../../node_modules/@girs/gio-2.0/gio-2.0-import.d.ts","../../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-ambient.d.ts","../../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-import.d.ts","../../../../node_modules/@girs/gmodule-2.0/gmodule-2.0.d.ts","../../../../node_modules/@girs/gmodule-2.0/index.d.ts","../../../../node_modules/@girs/gio-2.0/gio-2.0.d.ts","../../../../node_modules/@girs/gio-2.0/index.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/index.d.ts","../../../dom/dom-elements/lib/types/types/i-html-image-element.d.ts","../../../dom/dom-elements/lib/types/types/predefined-color-space.d.ts","../../../dom/dom-elements/lib/types/types/image-data.d.ts","../../../dom/dom-elements/lib/types/types/index.d.ts","../../../dom/dom-elements/lib/types/html-image-element.d.ts","../../../dom/dom-elements/lib/types/html-media-element.d.ts","../../../../node_modules/@girs/gst-1.0/gst-1.0-ambient.d.ts","../../../../node_modules/@girs/gst-1.0/gst-1.0-import.d.ts","../../../../node_modules/@girs/gst-1.0/gst-1.0.d.ts","../../../../node_modules/@girs/gst-1.0/index.d.ts","../../../dom/dom-elements/lib/types/html-video-element.d.ts","../../../dom/dom-elements/lib/types/image.d.ts","../../../dom/dom-elements/lib/types/document.d.ts","../../../dom/dom-elements/lib/types/mutation-observer.d.ts","../../../dom/dom-elements/lib/types/resize-observer.d.ts","../../../dom/dom-elements/lib/types/intersection-observer.d.ts","../../../dom/dom-elements/lib/types/node-type.d.ts","../../../dom/dom-elements/lib/types/namespace-uri.d.ts","../../../dom/dom-elements/lib/types/font-face.d.ts","../../../dom/dom-elements/lib/types/match-media.d.ts","../../../dom/dom-elements/lib/types/location-stub.d.ts","../../../dom/dom-elements/lib/types/dom-matrix.d.ts","../../../dom/dom-elements/lib/types/index.d.ts","../../bridge-types/lib/types/bridge-window.d.ts","../../bridge-types/lib/types/bridge-environment.d.ts","../../bridge-types/lib/types/bridge-interface.d.ts","../../bridge-types/lib/types/index.d.ts","../src/pipeline-builder.ts","../src/video-bridge.ts","../src/index.ts","../../../../node_modules/@girs/gdk-4.0/gdk-4.0-import.d.ts","../../../../node_modules/@girs/pangocairo-1.0/pangocairo-1.0-ambient.d.ts","../../../../node_modules/@girs/pangocairo-1.0/pangocairo-1.0-import.d.ts","../../../../node_modules/@girs/pango-1.0/pango-1.0-ambient.d.ts","../../../../node_modules/@girs/pango-1.0/pango-1.0-import.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/harfbuzz-0.0-ambient.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/harfbuzz-0.0-import.d.ts","../../../../node_modules/@girs/freetype2-2.0/freetype2-2.0-ambient.d.ts","../../../../node_modules/@girs/freetype2-2.0/freetype2-2.0-import.d.ts","../../../../node_modules/@girs/freetype2-2.0/freetype2-2.0.d.ts","../../../../node_modules/@girs/freetype2-2.0/index.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/harfbuzz-0.0.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/index.d.ts","../../../../node_modules/@girs/pango-1.0/pango-1.0.d.ts","../../../../node_modules/@girs/pango-1.0/index.d.ts","../../../../node_modules/@girs/pangocairo-1.0/pangocairo-1.0.d.ts","../../../../node_modules/@girs/pangocairo-1.0/index.d.ts","../../../../node_modules/@girs/gdk-4.0/gdk-4.0.d.ts","../../../../node_modules/@girs/gdk-4.0/index.d.ts","../../../../node_modules/@girs/gdk-4.0/gdk-4.0-ambient.d.ts","../../../../node_modules/@girs/gtk-4.0/gtk-4.0-import.d.ts","../../../../node_modules/@girs/gsk-4.0/gsk-4.0-ambient.d.ts","../../../../node_modules/@girs/gsk-4.0/gsk-4.0-import.d.ts","../../../../node_modules/@girs/graphene-1.0/graphene-1.0-ambient.d.ts","../../../../node_modules/@girs/graphene-1.0/graphene-1.0-import.d.ts","../../../../node_modules/@girs/graphene-1.0/graphene-1.0.d.ts","../../../../node_modules/@girs/graphene-1.0/index.d.ts","../../../../node_modules/@girs/gsk-4.0/gsk-4.0.d.ts","../../../../node_modules/@girs/gsk-4.0/index.d.ts","../../../../node_modules/@girs/gtk-4.0/gtk-4.0.d.ts","../../../../node_modules/@girs/gtk-4.0/index.d.ts","../../../../node_modules/@girs/gtk-4.0/gtk-4.0-ambient.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/@types/node/web-globals/blob.d.ts","../../../../node_modules/@types/node/web-globals/console.d.ts","../../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../../node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/undici-types/utility.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client-stats.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/round-robin-pool.d.ts","../../../../node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-call-history.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/snapshot-agent.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/@types/node/web-globals/performance.d.ts","../../../../node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/@types/node/web-globals/timers.d.ts","../../../../node_modules/@types/node/web-globals/url.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/@types/node/inspector/promises.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/path/posix.d.ts","../../../../node_modules/@types/node/path/win32.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/quic.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/sqlite.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/test/reporters.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/util/types.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[80,83,87,164,227,230,235,239,242,244,245,246,259],[83,87,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,164,227,230,235,239,242,244,245,246,259],[81,82,87,164,227,230,235,239,242,244,245,246,259],[87,137,140,164,227,230,235,239,242,244,245,246,259],[87,140,164,227,230,235,239,242,244,245,246,259],[78,87,89,164,227,230,235,239,242,244,245,246,259],[87,138,139,164,227,230,235,239,242,244,245,246,259],[87,148,149,164,227,230,235,239,242,244,245,246,259],[87,148,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,95,97,99,140,142,144,146,164,227,230,235,239,242,244,245,246,259],[87,130,147,164,227,230,235,239,242,244,245,246,259],[68,87,99,164,227,230,235,239,242,244,245,246,259],[87,99,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,95,97,164,227,230,235,239,242,244,245,246,259],[69,87,98,164,227,230,235,239,242,244,245,246,259],[87,90,97,164,227,230,235,239,242,244,245,246,259],[87,97,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,95,164,227,230,235,239,242,244,245,246,259],[87,91,96,164,227,230,235,239,242,244,245,246,259],[78,83,87,164,227,230,235,239,242,244,245,246,259],[87,164,227,230,235,239,242,244,245,246,259],[70,79,84,85,86,164,227,230,235,239,242,244,245,246,259],[70,76,78,79,84,87,164,227,230,235,239,242,244,245,246,259],[87,88,164,227,230,235,239,242,244,245,246,259],[78,87,164,227,230,235,239,242,244,245,246,259],[73,76,87,164,227,230,235,239,242,244,245,246,259],[76,87,164,227,230,235,239,242,244,245,246,259],[74,75,87,164,227,230,235,239,242,244,245,246,259],[87,92,95,164,227,230,235,239,242,244,245,246,259],[87,95,164,227,230,235,239,242,244,245,246,259],[87,93,94,164,227,230,235,239,242,244,245,246,259],[71,78,87,164,227,230,235,239,242,244,245,246,259],[76,87,89,164,227,230,235,239,242,244,245,246,259],[72,77,87,164,227,230,235,239,242,244,245,246,259],[87,153,156,164,227,230,235,239,242,244,245,246,259],[87,156,164,227,230,235,239,242,244,245,246,259],[87,154,155,164,227,230,235,239,242,244,245,246,259],[87,151,158,164,227,230,235,239,242,244,245,246,259],[87,158,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,95,97,99,140,142,144,146,148,156,164,227,230,235,239,242,244,245,246,259],[87,152,157,164,227,230,235,239,242,244,245,246,259],[87,106,109,164,227,230,235,239,242,244,245,246,259],[87,109,164,227,230,235,239,242,244,245,246,259],[87,107,108,164,227,230,235,239,242,244,245,246,259],[87,160,161,164,227,230,235,239,242,244,245,246,259],[87,160,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,95,97,99,140,142,144,146,148,156,158,164,227,230,235,239,242,244,245,246,259],[87,150,159,164,227,230,235,239,242,244,245,246,259],[87,135,142,164,227,230,235,239,242,244,245,246,259],[87,142,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,140,164,227,230,235,239,242,244,245,246,259],[87,136,141,164,227,230,235,239,242,244,245,246,259],[87,134,143,164,227,230,235,239,242,244,245,246,259],[87,133,144,164,227,230,235,239,242,244,245,246,259],[87,144,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,95,97,140,142,164,227,230,235,239,242,244,245,246,259],[87,132,145,164,227,230,235,239,242,244,245,246,259],[87,131,146,164,227,230,235,239,242,244,245,246,259],[87,146,164,227,230,235,239,242,244,245,246,259],[76,78,87,89,95,97,140,142,144,164,227,230,235,239,242,244,245,246,259],[87,164,224,225,227,230,235,239,242,244,245,246,259],[87,164,226,227,230,235,239,242,244,245,246,259],[87,227,230,235,239,242,244,245,246,259],[87,164,227,230,235,239,242,244,245,246,259,267],[87,164,227,228,230,233,235,238,239,242,244,245,246,248,259,264,276],[87,164,227,228,229,230,235,238,239,242,244,245,246,259],[87,164,227,230,235,239,242,244,245,246,259,277],[87,164,227,230,231,232,235,239,242,244,245,246,250,259],[87,164,227,230,232,235,239,242,244,245,246,259,264,273],[87,164,227,230,233,235,238,239,242,244,245,246,248,259],[87,164,226,227,230,234,235,239,242,244,245,246,259],[87,164,227,230,235,236,239,242,244,245,246,259],[87,164,227,230,235,237,238,239,242,244,245,246,259],[87,164,226,227,230,235,238,239,242,244,245,246,259],[87,164,227,230,235,238,239,240,242,244,245,246,259,264,276],[87,164,227,230,235,238,239,240,242,244,245,246,259,264,267],[87,164,214,227,230,235,238,239,241,242,244,245,246,248,259,264,276],[87,164,227,230,235,238,239,241,242,244,245,246,248,259,264,273,276],[87,164,227,230,235,239,241,242,243,244,245,246,259,264,273,276],[87,162,163,164,165,166,167,168,169,170,171,172,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283],[87,164,227,230,235,238,239,242,244,245,246,259],[87,164,227,230,235,239,242,244,246,259],[87,164,227,230,235,239,242,244,245,246,247,259,276],[87,164,227,230,235,238,239,242,244,245,246,248,259,264],[87,164,227,230,235,239,242,244,245,246,250,259],[87,164,227,230,235,239,242,244,245,246,251,259],[87,164,227,230,235,238,239,242,244,245,246,254,259],[87,164,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283],[87,164,227,230,235,239,242,244,245,246,256,259],[87,164,227,230,235,239,242,244,245,246,257,259],[87,164,227,230,232,235,239,242,244,245,246,248,259,267],[87,164,227,230,235,238,239,242,244,245,246,259,260],[87,164,227,230,235,239,242,244,245,246,259,261,277,280],[87,164,227,230,235,238,239,242,244,245,246,259,264,266,267],[87,164,227,230,235,239,242,244,245,246,259,265,267],[87,164,227,230,235,239,242,244,245,246,259,267,277],[87,164,227,230,235,239,242,244,245,246,259,268],[87,164,224,227,230,235,239,242,244,245,246,259,264,270,276],[87,164,227,230,235,239,242,244,245,246,259,264,269],[87,164,227,230,235,238,239,242,244,245,246,259,271,272],[87,164,227,230,235,239,242,244,245,246,259,271,272],[87,164,227,230,232,235,239,242,244,245,246,248,259,264,273],[87,164,227,230,235,239,242,244,245,246,259,274],[87,164,227,230,235,239,242,244,245,246,248,259,275],[87,164,227,230,235,239,241,242,244,245,246,257,259,276],[87,164,227,230,235,239,242,244,245,246,259,277,278],[87,164,227,230,232,235,239,242,244,245,246,259,278],[87,164,227,230,235,239,242,244,245,246,259,264,279],[87,164,227,230,235,239,242,244,245,246,247,259,280],[87,164,227,230,235,239,242,244,245,246,259,281],[87,164,227,230,232,235,239,242,244,245,246,259],[87,164,214,227,230,235,239,242,244,245,246,259],[87,164,227,230,235,239,242,244,245,246,259,276],[87,164,227,230,235,239,242,244,245,246,259,282],[87,164,227,230,235,239,242,244,245,246,254,259],[87,164,227,230,235,239,242,244,245,246,259,272],[87,164,214,227,230,235,238,239,240,242,244,245,246,254,259,264,267,276,279,280,282],[87,164,227,230,235,239,242,244,245,246,259,264,283],[87,164,179,182,185,186,227,230,235,239,242,244,245,246,259,276],[87,164,182,227,230,235,239,242,244,245,246,259,264,276],[87,164,182,186,227,230,235,239,242,244,245,246,259,276],[87,164,227,230,235,239,242,244,245,246,259,264],[87,164,176,227,230,235,239,242,244,245,246,259],[87,164,180,227,230,235,239,242,244,245,246,259],[87,164,178,179,182,227,230,235,239,242,244,245,246,259,276],[87,164,227,230,235,239,242,244,245,246,248,259,273],[87,164,227,230,235,239,242,244,245,246,259,284],[87,164,176,227,230,235,239,242,244,245,246,259,284],[87,164,178,182,227,230,235,239,242,244,245,246,248,259,276],[87,164,173,174,175,177,181,227,230,235,238,239,242,244,245,246,259,264,276],[87,164,182,191,199,227,230,235,239,242,244,245,246,259],[87,164,174,180,227,230,235,239,242,244,245,246,259],[87,164,182,208,209,227,230,235,239,242,244,245,246,259],[87,164,174,177,182,227,230,235,239,242,244,245,246,259,267,276,284],[87,164,182,227,230,235,239,242,244,245,246,259],[87,164,178,182,227,230,235,239,242,244,245,246,259,276],[87,164,173,227,230,235,239,242,244,245,246,259],[87,164,176,177,178,180,181,182,183,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211,212,213,227,230,235,239,242,244,245,246,259],[87,164,182,201,204,227,230,235,239,242,244,245,246,259],[87,164,182,191,192,193,227,230,235,239,242,244,245,246,259],[87,164,180,182,192,194,227,230,235,239,242,244,245,246,259],[87,164,181,227,230,235,239,242,244,245,246,259],[87,164,174,176,182,227,230,235,239,242,244,245,246,259],[87,164,182,186,192,194,227,230,235,239,242,244,245,246,259],[87,164,186,227,230,235,239,242,244,245,246,259],[87,164,180,182,185,227,230,235,239,242,244,245,246,259,276],[87,164,174,178,182,191,227,230,235,239,242,244,245,246,259],[87,164,182,201,227,230,235,239,242,244,245,246,259],[87,164,194,227,230,235,239,242,244,245,246,259],[87,164,176,182,208,227,230,235,239,242,244,245,246,259,267,282,284],[55,59,87,164,227,230,235,239,242,244,245,246,259],[57,87,164,227,230,235,239,242,244,245,246,259],[61,87,164,227,230,235,239,242,244,245,246,259],[57,59,87,164,227,230,235,239,242,244,245,246,259],[54,57,59,62,63,64,66,87,164,227,230,235,239,242,244,245,246,259],[59,87,164,227,230,235,239,242,244,245,246,259],[54,55,57,58,87,164,227,230,235,239,242,244,245,246,259],[66,87,164,227,230,235,239,242,244,245,246,259],[54,59,87,164,227,230,235,239,242,244,245,246,259],[66,87,99,103,164,227,230,235,239,242,244,245,246,259],[87,105,109,164,227,230,235,239,242,244,245,246,259],[87,104,164,227,230,235,239,242,244,245,246,259],[55,56,57,58,59,60,61,62,63,64,65,66,67,87,104,105,110,111,112,113,114,115,116,117,118,119,120,121,164,227,230,235,239,242,244,245,246,259],[54,87,164,227,230,235,239,242,244,245,246,259],[59,60,87,164,227,230,235,239,242,244,245,246,259],[54,55,56,87,164,227,230,235,239,242,244,245,246,259],[87,122,164,227,230,235,239,242,244,245,246,259],[87,101,164,227,230,235,239,242,244,245,246,259],[87,100,101,102,164,227,230,235,239,242,244,245,246,259],[87,122,123,164,227,230,235,239,242,244,245,246,259],[87,124,164,227,230,235,239,242,244,245,246,259],[54,87,122,124,164,227,230,235,239,242,244,245,246,259],[87,123,124,125,164,227,230,235,239,242,244,245,246,259],[87,161,164,227,230,235,239,242,244,245,246,259],[51,52,87,164,227,230,235,239,242,244,245,246,259],[49,87,106,164,227,230,235,239,242,244,245,246,259],[87,122,127,128,164,227,230,235,239,242,244,245,246,259],[50,87,149,164,227,230,235,239,242,244,245,246,259],[50,53,54,71,73,87,106,122,126,127,161,164,227,230,235,239,242,244,245,246,259],[49,87,164,227,230,235,239,242,244,245,246,259]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"e176cbd59020ce3184e68f10e5f286e027dd444e66d490fe3836118e17babf9c","impliedFormat":99},{"version":"284c7454b1ea9cc9c4f51cc38dc3da54522bcb06684643479ce7679512f77a58","signature":"c9f0b763230c716292f55ffd2d03aca8d8c4a206ad8e97fb30b4907cd178e942","impliedFormat":99},{"version":"f8c4261d9a75862dc2cabd7a14652265fcf0e5bc77df506e994b318ec5a4c1f4","impliedFormat":99},{"version":"d11e70c24eb78033658ee3793763fcdf9df2fa71fc4fd9621e3fcb31d8b40cd7","impliedFormat":99},{"version":"315550d47b119c4cb0b7c235c23e6dc76bd6700865942da83acf378b53318951","impliedFormat":99},{"version":"8ff24dc5ca7e7ad39d6af837d4fb84abd2d0c5e4772422db4ede1bfd5ee5408b","impliedFormat":99},{"version":"b380926f6a3b0a2c45c5556e618426cb4cf0be22152d23f652a3b94b71ef8f0d","impliedFormat":99},{"version":"a7f78d158629ce64fb9ec6ded6619c12223e2d66de157803007395432bc1fb19","impliedFormat":99},{"version":"5d345632b88138658798dcb90e673a491cd8c55339f43c6783f513584640e69e","impliedFormat":99},{"version":"70485b2ec94d17a98630a12518ee245d008662cff79bca26c337fbe2722c1dd3","impliedFormat":99},{"version":"c8295f442053cfd1b8abd46cd2afef7572f8b4d8c6a63dc15852819eb6f5aed4","impliedFormat":99},{"version":"ea4764182ec25bda9657dd17129ae810c237485251585ef2d1b0ae3ef81fb440","impliedFormat":99},{"version":"c054aecd9aff58d111c15e497216f4ed381608bffb25ae5f9d2abd02343c92fe","impliedFormat":99},{"version":"134a9fe6912da50ad93baf3d3ff98289d5ce7c7b7c03d934a8c8707b7440565b","impliedFormat":99},{"version":"9c664ce7b1222d9e94f260ae09341eec882bbc1f51cf33a1f4983c23ae8328b9","impliedFormat":99},{"version":"976df8e1ec0896f8b26b3fed2880208eb7c64d4cab0990dac9719b95595e9d86","impliedFormat":99},{"version":"ddcd3971864a94845a0f5fc7ba60a7c47160bac489b8ddf7b95354ce86f5b5ad","impliedFormat":99},{"version":"4d25dab2e72934457dbbabae93ede1aca077d922ddca80fd3c6c218d49192a04","impliedFormat":99},{"version":"37d3b7062ffe211f079ae3ac7357f37d4fff5c757cc209cb1a3bbd228c5d1284","impliedFormat":99},{"version":"b1e2e9e54904e429d40d5ad71dfc21efbc4c9c84bba7ed7ede5a54c930deff64","impliedFormat":99},{"version":"de851b5715c2b2e5a69e8c0d62e3fd47aee86e665cccf2572b88832b32e481a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"4936d25ba31379ce4e3d4289f6c0ea936510e111f823ec377015de6ba7047adf","impliedFormat":99},{"version":"1ffa53902f87f288dbaebc1dd9c754a0f0f1c4af2733fc7e173022209e7d4ef8","impliedFormat":99},{"version":"d7801240a49920afb07e1a83597b05a26e5e3758163a70448ba14df3f7ab5286","affectsGlobalScope":true,"impliedFormat":99},{"version":"2aed5de224f5094280addfaf59e82b362b3680083917cfa7f066c4b89cc58b74","impliedFormat":99},{"version":"86ecf772256f9205f72c768dc9b47d27b4254a64a1dd94f61c8c2f29219c24e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"f62bcd0d626998f4b14a5e4bf6c65abf4dfeaa042243dd57e4e92125fd602ed6","impliedFormat":99},{"version":"9462f849ff8d50a61639f09a8e369f7584c623a8cbcf9d99c6b81aacbca91fd2","impliedFormat":99},{"version":"6da820ee582c593971e71a933dbf54d72b47984bb11f888d225c7a8476e74790","impliedFormat":99},{"version":"048a292f9fb06d0aab8c52cabd81bc820c70d68500530afe1867c08e431d4e46","impliedFormat":99},{"version":"e2f9944677cba1c7f636dde67d7ca77982da3b52134c617bd86d3a4d8607b498","impliedFormat":99},{"version":"ceaf67c6cb2df4f38f466bd3709a72199d1d98377dcf215bf760b2a383fc73a8","impliedFormat":99},{"version":"c5f89dedf8e238012d580d16ee2286bf0681f1389f14d419c87711070430995c","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc996a90baa100126e6014b2f55022930e1a44621ec68eb163f322714b7596bc","impliedFormat":99},{"version":"cdd5245a59183386c7b465ad56e2353a0a1b49c32733520ec5c0eeb718781012","impliedFormat":99},{"version":"35c6737b37a2c92e67a14ba7692f3216df6c140c28133835768f7c66cb15fa88","impliedFormat":99},{"version":"7b607f4711c496c7c4f57abddfc7b9912059e1f264417ff8f4280b65f756bf4d","impliedFormat":99},{"version":"17122ddf1e2ff9f0538a06af6edc8d2666d7e1a428239e86358afc09ac7a8779","impliedFormat":99},{"version":"2cc6a5c34041442caa16aff0686d41595296248c7c33bfac5b94cd4fe8ae20de","impliedFormat":99},{"version":"8384e3ab082eecd9d0faa07ddf7e9ff3879bfac60216e47328f799600e47ea80","affectsGlobalScope":true,"impliedFormat":99},{"version":"715e7c015d2f3f4de0da107d9be2db02b52cea3d2d446ad11d2e732848d8e3e7","impliedFormat":99},{"version":"1a7eec8977d21e8bf216ea62b836bdda1768c2a49ee689e5e09fb2f56a7837e4","impliedFormat":99},{"version":"8deb0c1eae578bb83a0056727ddec6be752d015acebfdd90f53797f8a035e57d","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0b90b2c22bda9b6a7dabfb505a7fd3896e0267ab791d63a4a37098d0829e1b0","impliedFormat":99},{"version":"d26efa37b7cbdcc391dc201683de609900869d285213abf1dcbfb5275427142f","affectsGlobalScope":true,"impliedFormat":99},{"version":"0fe0f52d9ee15bf4fbeef129a5841a706720641554be2220df52c994f343a2f1","impliedFormat":99},{"version":"586cc6c492134b4680582124d2cd7d20efe0993917871647e0000dbf670bc0da","impliedFormat":99},{"version":"eaac6969d2a0d853a8870b9ba9591b429b80f99308cc97c3fe223b54bfc4127f","impliedFormat":99},{"version":"4b8b7197750fcbfe01b0c3b0e42a18367763e07eb937e0a278a27c69489a2575","impliedFormat":99},{"version":"76bc89c9b923cdafea7abb17e6d901bab71f73278ee2793d6079839874fc301e","impliedFormat":99},{"version":"30e6e2f13e2e9eb2f1fb7187e3a9c95a6e0185ee1c5efc1b2b68a56332805cfe","impliedFormat":99},{"version":"168e7e20c00b0f5a262aebc7db45831ba353dc06ca56615a814f87be5504a55f","impliedFormat":99},{"version":"4031cdbb6a0d49564672383b7f3ddfd780d9ac3e5a089bf50889b43c4d763f27","impliedFormat":99},{"version":"8e56495924cf53cd16887d719ab11ea817e40d3cdfe7d8bdd37adb1e80fead7d","impliedFormat":99},{"version":"3121c281ad51a7f426e672fa67dfb2833745436701621d0b3a3eb8fdc80759ef","impliedFormat":99},{"version":"1ea6788e8bfcd32ef9c890c00a9bc701a2d25540f1d45822cea49db86cfd6884","impliedFormat":99},{"version":"7992945ba65363947a42f823be445492620a1939dd18760495e6fa34b519a362","impliedFormat":99},{"version":"36593e913d1d6c330fbb5813319469de4052edf78f56cae6a788207f021ae975","impliedFormat":99},{"version":"ab4b58ac8736d73e2ba66feb4d7aa78e920258ff5a1620313474f366108db243","affectsGlobalScope":true,"impliedFormat":99},{"version":"1feaa69fc54868b5a742d66fe5fea6c2c69f96a428aa13c379ab227e1c1cdbbd","impliedFormat":99},{"version":"5c227b208fc412f46976c48217b481af36527c1ebaf7db632f1d86bd3071375d","impliedFormat":99},{"version":"f272babd74a579c1532a4d68459627937bbf0a0bee176619b503a1c468a088c0","impliedFormat":99},{"version":"f5665d82041c56e501e196f1b9fe686127e2b132202d94f33b47c54ebf3db820","impliedFormat":99},{"version":"c9b1d8f3bc949ee0e4f3c6ec9eae7524eaf7f2e6b4bbd95d6e208748c94fda5f","impliedFormat":99},{"version":"cc0bf0250c33265eddf6d72f3971b664baeb66dbeffd31f081f7023918190d57","impliedFormat":99},{"version":"03c2efc96cda4526b8b37e096a01cd1a8fc3ee8f754c050cd5f379430f92ec0d","impliedFormat":99},{"version":"f7c5d98be75759b06dcf628e2f7aaca7511a961e6e99d087349265b9365c4495","impliedFormat":99},{"version":"17833ee6ac70e3946c52ab73981230cf54450c80b99fe59618457517a69bfe8a","impliedFormat":99},{"version":"55346074f99d0c3f43290a463528efc3437e0b9755582816048acea36a8bd2c6","impliedFormat":99},{"version":"0ec74a1729e91b8a6d816ecdf6de45dc795d06404dce5c9b61138b46747ad6d3","impliedFormat":99},{"version":"6c50e409125d291363e507a190fcc1c948c4cb1d1defb4b8d4cb550ac6e5a9b9","impliedFormat":99},{"version":"7ce477fa5ea770075c1338b4afb7d0cc36bab845cd8e6265c3b1adf9edf812fe","impliedFormat":99},{"version":"158125a7710f5f99a53cf29af7c6cf16669964c3dcc7ad089ba6dc3e9b2fba20","impliedFormat":99},{"version":"84c0135dbd3028b427f15dc467a997ed0815535a2e2b56dc1273953a8408d6a2","impliedFormat":99},{"version":"af09d0882c41361a4ac3b6fd6dc54a27284e95f006157230af9ee920c14082fc","impliedFormat":99},{"version":"17033d6ac6134b8b1a6f31201069a4d72c705ec69f2d4daada3d2b89b2d1c066","impliedFormat":99},{"version":"b8848a4351d2cb321a199d487ba8332b385b698c32e38784109dd827d025d724","impliedFormat":99},{"version":"370390c2e6331417a3cc2cabec12b9e60a965ec15377d5e779df3ada0e77677a","impliedFormat":99},{"version":"b8306f30321516f6ac81bf72d9eeb8fc57fc5be90b803857f883ded682300a2e","signature":"24c1e711b5b58f8eedde1488f46ce408a0470c369675db862a30d7637160bb6d","impliedFormat":99},{"version":"f033ab8ad25934ce355480ac308c2ebe50b16ed2f64017b229db1d481219bea7","signature":"1b12f4f6065520002ffa350b0c5efb2eca7ee7dd63ac0295a32d11f907804b43","impliedFormat":99},{"version":"66f61393706031cdc7803636559bc54e6be10377b556a389ca247ff924599d82","signature":"835d052a6511491a36b045b23700364e773875b688d30e87c90e16db7b2da7f8","impliedFormat":99},{"version":"f580b881b9c1de72e44a951d28e25cf65de14bea83bcb8469d92bd8215f99d71","affectsGlobalScope":true,"impliedFormat":99},{"version":"108535870ff2e0082886f09d85f11b1f498f5c330950f8ec203a017505129d2f","impliedFormat":99},{"version":"8c2347c07220c6e9756a8c5455fa94d1f970fb07213871585aa02dd3e1567878","affectsGlobalScope":true,"impliedFormat":99},{"version":"45a594157c568f9ca957b9e6ff512dca32dddf7d303f062b9daef0a23d8a3ef4","impliedFormat":99},{"version":"946063503e9c458405d61f37ed014d8da88d8ba6a23d40ba7bee02ddb11d3118","affectsGlobalScope":true,"impliedFormat":99},{"version":"936abf95506d4b2ba2bd07207d8c3b2db8a7cd22b32003612c47fd0450cc0bbb","impliedFormat":99},{"version":"c7c540f195c2267eda73ba33fb181c0ba323e740110b7ce21cc8f5326356d858","affectsGlobalScope":true,"impliedFormat":99},{"version":"cf576d440afc42b364e655ba3d2ebd15874ace8887a2581572289c6ac3cc8d7e","impliedFormat":99},{"version":"3d6dd2d4e9d19b1775a55bb0791823f99c8736e676bc23097cafd0fb0b03e498","affectsGlobalScope":true,"impliedFormat":99},{"version":"65d92e2956c23a313efd6a068e942e96f945644c847a801e2e1a4f4034425b59","impliedFormat":99},{"version":"72247c9d221f7f6e4368adbda5c3be438d0e08421810dbe80ca0955bd39f5470","impliedFormat":99},{"version":"bc7fef1886595bdd406568e9a4207b5e8e08f7532cb77586f903ff07c3bc8b70","impliedFormat":99},{"version":"b87000f3ca7dac986245011fe2decc2ede266bc0abc6cdf81a1e09e47099c1a8","impliedFormat":99},{"version":"7d6edaf80e5734401efe16c05acd20e0383e7631bf2d265cf7b660dc1e6a39da","impliedFormat":99},{"version":"4ca558b0ed1fa212269d38552bf33f5a8e44d89b02c317378f523f326b7c2158","impliedFormat":99},{"version":"1d4fdd9454f538ca8b76cf001240e07b0c82e7ee0390fa80c933afd46301c02e","impliedFormat":99},{"version":"c7a2d12ddbb226aa74f38c56e1923617ae6fd8e819a8678d8ff6591f1c59628f","impliedFormat":99},{"version":"b11e77ac89ddb09f97663e795a7d51bc794c88dfc952e80b31a061fb61bbdf1c","impliedFormat":99},{"version":"c0d7479627efc1e952a6b06ab69477706c38d082da33e77e017bcfaf03fb222d","impliedFormat":99},{"version":"0ccd8048e81af5c0a0b1b96f4525945b4533ba968b4545e1a3ca5ceb35e1b051","impliedFormat":99},{"version":"e3de5d75b2eb701643b234c887d4573d93a9eef5dd95eaa28b6857e5401b5845","affectsGlobalScope":true,"impliedFormat":99},{"version":"db48b51b40eb752103d40c6ed24c0538e8378a80a8d1779e2b2556d447afb624","impliedFormat":99},{"version":"3d623a7e78f2ae3ff5461a4457adc6460b8c5df771ca87df3f1ea97345d7bacf","affectsGlobalScope":true,"impliedFormat":99},{"version":"e84f9c62f5032b71469761959421882cb01cf36e3d1cdf7334d58eda3f4c51c0","impliedFormat":99},{"version":"8061480a123ba96b1f03e2857699649b8f4a3e91497b41018b7374953990f58c","affectsGlobalScope":true,"impliedFormat":99},{"version":"76e226345c56e5cfcb17d10e22fba9a05fa1bcedd6dd337af2dcd802dd90099b","impliedFormat":99},{"version":"42730078184c58641b6c33f23557261e0d9777e9569000d30d92d79f3d66311c","impliedFormat":99},{"version":"9392d51e84e1084eddfb0904ea593aeff3ead8c0d4978d30e73f1cd4c1e5692a","impliedFormat":99},{"version":"e9a60f512b3d6923d645ff931b97c431f4df81d55ecf09b23a67af841ee92e4e","impliedFormat":99},{"version":"65210d0cd21d96a3727332f46164dcf27439a1b32ef695c2c4f67ed1b4d317e7","impliedFormat":99},{"version":"242fa6e7e4b0b73833afc9bc3a80709069d414775a4934dafe72bf72851f8e2e","impliedFormat":99},{"version":"500a44a0a23cb3b220b3ad027cf1b55561d55b5ff15e139fd8f956d15b7ce8ba","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"10deca769dfed888051b1808d6746f8883a490a707f8bdf9367079146987d6d0","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[50,71,73,106,[127,129],149,161],"options":{"composite":true,"declaration":true,"declarationDir":"../lib/types","emitDeclarationOnly":true,"esModuleInterop":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"../lib","preserveConstEnums":true,"removeComments":false,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"target":7,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[80,1],[81,2],[82,3],[83,4],[137,5],[138,6],[139,7],[140,8],[149,9],[130,10],[147,11],[148,12],[68,13],[69,14],[98,15],[99,16],[90,17],[91,18],[96,19],[97,20],[84,21],[85,22],[70,22],[86,22],[87,23],[88,24],[89,25],[79,26],[73,27],[74,28],[75,7],[76,29],[92,30],[93,31],[94,3],[95,32],[71,33],[72,26],[77,34],[78,35],[153,36],[154,37],[155,3],[156,38],[151,39],[152,40],[157,41],[158,42],[106,43],[107,44],[108,19],[109,45],[161,46],[150,47],[159,48],[160,49],[135,50],[136,51],[141,52],[142,53],[144,54],[133,55],[134,56],[143,57],[146,58],[131,59],[132,60],[145,61],[224,62],[225,62],[226,63],[164,64],[227,65],[228,66],[229,67],[162,22],[230,68],[231,69],[232,70],[233,71],[234,72],[235,73],[236,73],[237,74],[238,75],[239,76],[240,77],[165,22],[163,22],[241,78],[242,79],[243,80],[284,81],[244,82],[245,83],[246,82],[247,84],[248,85],[250,86],[251,87],[252,87],[253,87],[254,88],[255,89],[256,90],[257,91],[258,92],[259,93],[260,93],[261,94],[262,22],[263,22],[264,95],[265,96],[266,95],[267,97],[268,98],[269,99],[270,100],[271,101],[272,102],[273,103],[274,104],[275,105],[276,106],[277,107],[278,108],[279,109],[280,110],[281,111],[166,82],[167,22],[168,22],[169,112],[170,22],[171,68],[172,22],[215,113],[216,114],[217,115],[218,115],[219,116],[220,22],[221,65],[222,117],[223,114],[282,118],[283,119],[249,22],[47,22],[48,22],[8,22],[10,22],[9,22],[2,22],[11,22],[12,22],[13,22],[14,22],[15,22],[16,22],[17,22],[18,22],[3,22],[19,22],[20,22],[4,22],[21,22],[25,22],[22,22],[23,22],[24,22],[26,22],[27,22],[28,22],[5,22],[29,22],[30,22],[31,22],[32,22],[6,22],[36,22],[33,22],[34,22],[35,22],[37,22],[7,22],[38,22],[43,22],[44,22],[39,22],[40,22],[41,22],[42,22],[45,22],[1,22],[46,22],[191,120],[203,121],[188,122],[204,123],[213,124],[179,125],[180,126],[178,127],[212,128],[207,129],[211,130],[182,131],[200,132],[181,133],[210,134],[176,135],[177,129],[183,136],[184,22],[190,137],[187,136],[174,138],[214,139],[205,140],[194,141],[193,136],[195,142],[198,143],[192,144],[196,145],[208,128],[185,146],[186,147],[199,148],[175,123],[202,149],[201,136],[189,147],[197,150],[206,22],[173,22],[209,151],[60,152],[61,153],[63,154],[64,155],[112,156],[121,22],[65,157],[59,158],[118,22],[67,159],[66,160],[104,161],[105,159],[110,162],[111,163],[122,164],[115,157],[120,22],[119,165],[113,153],[58,166],[117,22],[56,153],[116,22],[57,167],[55,22],[114,157],[62,154],[100,168],[102,169],[103,170],[101,22],[124,171],[125,172],[123,173],[126,174],[51,175],[53,176],[52,22],[50,177],[129,178],[127,179],[128,180],[54,181],[49,22]],"latestChangedDtsFile":"../lib/types/index.d.ts","version":"6.0.3"}
package/tsconfig.json DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "lib",
4
- "declarationDir": "lib/types",
5
- "rootDir": "src",
6
- "tsBuildInfoFile": "tmp/.tsbuildinfo",
7
- "target": "es2020",
8
- "declaration": true,
9
- "emitDeclarationOnly": true,
10
- "module": "NodeNext",
11
- "moduleResolution": "NodeNext",
12
- "esModuleInterop": true,
13
- "resolveJsonModule": true,
14
- "noUnusedLocals": true,
15
- "noUnusedParameters": true,
16
- "removeComments": false,
17
- "preserveConstEnums": true,
18
- "sourceMap": true,
19
- "skipLibCheck": true,
20
- "composite": true,
21
- "incremental": true,
22
- "types": ["node"],
23
- "lib": ["es2015", "es2016", "es2017", "DOM"]
24
- },
25
- "include": [
26
- "src",
27
- "../../../node_modules/@girs/gdk-4.0/gdk-4.0-ambient.d.ts",
28
- "../../../node_modules/@girs/glib-2.0/glib-2.0-ambient.d.ts",
29
- "../../../node_modules/@girs/gobject-2.0/gobject-2.0-ambient.d.ts",
30
- "../../../node_modules/@girs/gst-1.0/gst-1.0-ambient.d.ts",
31
- "../../../node_modules/@girs/gtk-4.0/gtk-4.0-ambient.d.ts"
32
- ]
33
- }