@gjsify/video 0.1.15
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/lib/esm/gst-init.js +28 -0
- package/lib/esm/index.js +14 -0
- package/lib/esm/pipeline-builder.js +87 -0
- package/lib/esm/video-bridge.js +174 -0
- package/lib/types/gst-init.d.ts +5 -0
- package/lib/types/index.d.ts +2 -0
- package/lib/types/pipeline-builder.d.ts +37 -0
- package/lib/types/video-bridge.d.ts +496 -0
- package/package.json +45 -0
- package/src/gst-init.ts +41 -0
- package/src/index.ts +15 -0
- package/src/pipeline-builder.ts +158 -0
- package/src/video-bridge.ts +245 -0
- package/tmp/.tsbuildinfo +1 -0
- package/tsconfig.json +33 -0
|
@@ -0,0 +1,158 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
// VideoBridge GTK container for GJS — Gtk.Box wrapping Gtk.Picture + gtk4paintablesink.
|
|
2
|
+
// Bridges HTMLVideoElement to GStreamer video rendering via Gdk.Paintable.
|
|
3
|
+
//
|
|
4
|
+
// Reference: refs/showtime/showtime/play.py (gtk4paintablesink + optional glsinkbin)
|
|
5
|
+
// Pattern follows packages/dom/canvas2d/src/canvas-drawing-area.ts (Canvas2DBridge)
|
|
6
|
+
|
|
7
|
+
import GObject from 'gi://GObject';
|
|
8
|
+
import GLib from 'gi://GLib?version=2.0';
|
|
9
|
+
import Gtk from 'gi://Gtk?version=4.0';
|
|
10
|
+
import { HTMLVideoElement } from '@gjsify/dom-elements';
|
|
11
|
+
import { attachEventControllers } from '@gjsify/event-bridge';
|
|
12
|
+
import { Event } from '@gjsify/dom-events';
|
|
13
|
+
import { BridgeEnvironment } from '@gjsify/bridge-types';
|
|
14
|
+
import type { BridgeWindowHost } from '@gjsify/bridge-types';
|
|
15
|
+
|
|
16
|
+
import { buildMediaStreamPipeline, buildUriPipeline } from './pipeline-builder.js';
|
|
17
|
+
import { Gst } from './gst-init.js';
|
|
18
|
+
|
|
19
|
+
type VideoReadyCallback = (video: globalThis.HTMLVideoElement) => void;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* A `Gtk.Box` subclass that hosts a `Gtk.Picture` for video rendering:
|
|
23
|
+
* - Creates an `HTMLVideoElement` on construction
|
|
24
|
+
* - Renders video via GStreamer `gtk4paintablesink` → `Gdk.Paintable` → `Gtk.Picture`
|
|
25
|
+
* - Supports `video.srcObject = mediaStream` (from getUserMedia/WebRTC)
|
|
26
|
+
* - Supports `video.src = "file:///..."` (URI playback via playbin)
|
|
27
|
+
* - Fires `onReady()` callbacks with the HTMLVideoElement
|
|
28
|
+
* - `installGlobals()` sets `globalThis.HTMLVideoElement`
|
|
29
|
+
*
|
|
30
|
+
* Usage:
|
|
31
|
+
* ```ts
|
|
32
|
+
* const bridge = new VideoBridge();
|
|
33
|
+
* bridge.installGlobals();
|
|
34
|
+
* bridge.onReady((video) => {
|
|
35
|
+
* video.srcObject = mediaStream; // from getUserMedia
|
|
36
|
+
* });
|
|
37
|
+
* window.set_child(bridge);
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
export const VideoBridge = GObject.registerClass(
|
|
41
|
+
{ GTypeName: 'GjsifyVideoBridge' },
|
|
42
|
+
class VideoBridge extends Gtk.Box {
|
|
43
|
+
_picture: Gtk.Picture;
|
|
44
|
+
_video: HTMLVideoElement;
|
|
45
|
+
_pipeline: any | null = null; // Gst.Pipeline
|
|
46
|
+
_readyCallbacks: VideoReadyCallback[] = [];
|
|
47
|
+
_resizeCallbacks: ((w: number, h: number) => void)[] = [];
|
|
48
|
+
_environment: BridgeEnvironment;
|
|
49
|
+
_timeOrigin: number = GLib.get_monotonic_time();
|
|
50
|
+
_ready = false;
|
|
51
|
+
|
|
52
|
+
constructor(params?: Partial<Gtk.Box.ConstructorProps>) {
|
|
53
|
+
super({
|
|
54
|
+
...params,
|
|
55
|
+
orientation: Gtk.Orientation.VERTICAL,
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
this._picture = new Gtk.Picture();
|
|
59
|
+
this._picture.set_hexpand(true);
|
|
60
|
+
this._picture.set_vexpand(true);
|
|
61
|
+
this.append(this._picture);
|
|
62
|
+
|
|
63
|
+
// Create the DOM element
|
|
64
|
+
this._video = new HTMLVideoElement();
|
|
65
|
+
|
|
66
|
+
// Set up the bridge environment
|
|
67
|
+
const host: BridgeWindowHost = {
|
|
68
|
+
performanceNow: () => (GLib.get_monotonic_time() - this._timeOrigin) / 1000,
|
|
69
|
+
getWidth: () => this.get_allocated_width(),
|
|
70
|
+
getHeight: () => this.get_allocated_height(),
|
|
71
|
+
getDevicePixelRatio: () => {
|
|
72
|
+
const display = this.get_display();
|
|
73
|
+
const surface = this.get_native()?.get_surface();
|
|
74
|
+
if (surface) return surface.get_scale_factor();
|
|
75
|
+
if (display) return (display as any).get_scale?.() ?? 1;
|
|
76
|
+
return 1;
|
|
77
|
+
},
|
|
78
|
+
};
|
|
79
|
+
this._environment = new BridgeEnvironment(host);
|
|
80
|
+
this._environment.document.body.appendChild(this._video);
|
|
81
|
+
|
|
82
|
+
// Bridge GTK events → DOM events on the video element
|
|
83
|
+
attachEventControllers(this, () => this._video);
|
|
84
|
+
|
|
85
|
+
// Listen for srcObject / src changes on the HTMLVideoElement
|
|
86
|
+
this._video.addEventListener('srcobjectchange', () => this._onSrcObjectChange());
|
|
87
|
+
this._video.addEventListener('srcchange', () => this._onSrcChange());
|
|
88
|
+
|
|
89
|
+
// Fire ready callbacks once the widget is realized
|
|
90
|
+
this.connect('realize', () => {
|
|
91
|
+
if (this._ready) return;
|
|
92
|
+
this._ready = true;
|
|
93
|
+
for (const cb of this._readyCallbacks) {
|
|
94
|
+
cb(this._video as unknown as globalThis.HTMLVideoElement);
|
|
95
|
+
}
|
|
96
|
+
this._readyCallbacks = [];
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
// Handle resize — Gtk.Box has no 'resize' signal (unlike DrawingArea/GLArea).
|
|
100
|
+
// Use notify on allocation width/height instead.
|
|
101
|
+
let lastWidth = 0;
|
|
102
|
+
let lastHeight = 0;
|
|
103
|
+
const checkResize = () => {
|
|
104
|
+
const width = this.get_allocated_width();
|
|
105
|
+
const height = this.get_allocated_height();
|
|
106
|
+
if (width !== lastWidth || height !== lastHeight) {
|
|
107
|
+
lastWidth = width;
|
|
108
|
+
lastHeight = height;
|
|
109
|
+
this._video.dispatchEvent(new Event('resize'));
|
|
110
|
+
for (const cb of this._resizeCallbacks) {
|
|
111
|
+
cb(width, height);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
this.connect('notify::width-request', checkResize);
|
|
116
|
+
this.connect('notify::height-request', checkResize);
|
|
117
|
+
// Also check after the widget is mapped and sized
|
|
118
|
+
this.connect('map', checkResize);
|
|
119
|
+
|
|
120
|
+
// Cleanup on unrealize
|
|
121
|
+
this.connect('unrealize', () => {
|
|
122
|
+
this._destroyPipeline();
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/** The HTMLVideoElement backing this bridge. */
|
|
127
|
+
get element(): HTMLVideoElement {
|
|
128
|
+
return this._video;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/** Alias for element — matches browser naming. */
|
|
132
|
+
get videoElement(): HTMLVideoElement {
|
|
133
|
+
return this._video;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/** The isolated browser environment for this bridge. */
|
|
137
|
+
get environment(): BridgeEnvironment {
|
|
138
|
+
return this._environment;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Register a callback to be invoked once the video element is ready.
|
|
143
|
+
* If already ready, the callback fires synchronously.
|
|
144
|
+
*/
|
|
145
|
+
onReady(cb: VideoReadyCallback): void {
|
|
146
|
+
if (this._ready) {
|
|
147
|
+
cb(this._video as unknown as globalThis.HTMLVideoElement);
|
|
148
|
+
return;
|
|
149
|
+
}
|
|
150
|
+
this._readyCallbacks.push(cb);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/** Register a callback invoked whenever the widget is resized. */
|
|
154
|
+
onResize(cb: (width: number, height: number) => void): void {
|
|
155
|
+
this._resizeCallbacks.push(cb);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/** Sets browser globals for video support. */
|
|
159
|
+
installGlobals(): void {
|
|
160
|
+
(globalThis as any).HTMLVideoElement = HTMLVideoElement;
|
|
161
|
+
|
|
162
|
+
const timeOrigin = this._timeOrigin;
|
|
163
|
+
if (typeof (globalThis as any).performance === 'undefined') {
|
|
164
|
+
(globalThis as any).performance = {
|
|
165
|
+
now: () => (GLib.get_monotonic_time() - timeOrigin) / 1000,
|
|
166
|
+
timeOrigin: Date.now(),
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/** @internal Handle srcObject change (MediaStream) */
|
|
172
|
+
_onSrcObjectChange(): void {
|
|
173
|
+
this._destroyPipeline();
|
|
174
|
+
|
|
175
|
+
const stream = this._video.srcObject;
|
|
176
|
+
if (!stream) return;
|
|
177
|
+
|
|
178
|
+
// Find the first video track with a GStreamer source
|
|
179
|
+
const videoTracks = stream.getVideoTracks?.() ?? [];
|
|
180
|
+
const track = videoTracks.find((t: any) => t._gstSource != null);
|
|
181
|
+
if (!track?._gstSource) {
|
|
182
|
+
console.warn('VideoBridge: MediaStream has no video track with GStreamer source');
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
try {
|
|
187
|
+
const { pipeline, paintable, tee } = buildMediaStreamPipeline(track._gstSource, track._gstPipeline);
|
|
188
|
+
this._pipeline = pipeline;
|
|
189
|
+
this._picture.set_paintable(paintable);
|
|
190
|
+
|
|
191
|
+
// Update the track's pipeline and tee references so that other
|
|
192
|
+
// consumers (e.g. RTCPeerConnection.addTrack) can find the source
|
|
193
|
+
// in this pipeline and request tee branches without cross-pipeline issues.
|
|
194
|
+
track._gstPipeline = pipeline;
|
|
195
|
+
track._gstTee = tee;
|
|
196
|
+
|
|
197
|
+
pipeline.set_state(Gst.State.PLAYING);
|
|
198
|
+
|
|
199
|
+
this._video.readyState = 4; // HAVE_ENOUGH_DATA
|
|
200
|
+
this._video.paused = false;
|
|
201
|
+
this._video.dispatchEvent(new Event('loadedmetadata'));
|
|
202
|
+
this._video.dispatchEvent(new Event('canplay'));
|
|
203
|
+
this._video.dispatchEvent(new Event('playing'));
|
|
204
|
+
} catch (err) {
|
|
205
|
+
console.error('VideoBridge: Failed to build MediaStream pipeline:', err);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/** @internal Handle src change (URI) */
|
|
210
|
+
_onSrcChange(): void {
|
|
211
|
+
this._destroyPipeline();
|
|
212
|
+
|
|
213
|
+
const src = this._video.src;
|
|
214
|
+
if (!src) return;
|
|
215
|
+
|
|
216
|
+
try {
|
|
217
|
+
const { pipeline, paintable } = buildUriPipeline(src);
|
|
218
|
+
this._pipeline = pipeline;
|
|
219
|
+
this._picture.set_paintable(paintable);
|
|
220
|
+
pipeline.set_state(Gst.State.PLAYING);
|
|
221
|
+
|
|
222
|
+
this._video.readyState = 4;
|
|
223
|
+
this._video.paused = false;
|
|
224
|
+
this._video.dispatchEvent(new Event('loadedmetadata'));
|
|
225
|
+
this._video.dispatchEvent(new Event('canplay'));
|
|
226
|
+
this._video.dispatchEvent(new Event('playing'));
|
|
227
|
+
} catch (err) {
|
|
228
|
+
console.error('VideoBridge: Failed to build URI pipeline:', err);
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/** @internal Tear down the GStreamer pipeline */
|
|
233
|
+
_destroyPipeline(): void {
|
|
234
|
+
if (this._pipeline) {
|
|
235
|
+
try {
|
|
236
|
+
this._pipeline.set_state(Gst.State.NULL);
|
|
237
|
+
} catch { /* ignore */ }
|
|
238
|
+
this._pipeline = null;
|
|
239
|
+
}
|
|
240
|
+
this._picture.set_paintable(null);
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
);
|
|
244
|
+
|
|
245
|
+
export type VideoBridge = InstanceType<typeof VideoBridge>;
|
package/tmp/.tsbuildinfo
ADDED
|
@@ -0,0 +1 @@
|
|
|
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","../src/gst-init.ts","../../dom-elements/lib/types/property-symbol.d.ts","../../../web/dom-exception/lib/types/index.d.ts","../../../web/dom-events/lib/types/index.d.ts","../../dom-elements/lib/types/node-list.d.ts","../../dom-elements/lib/types/node.d.ts","../../dom-elements/lib/types/named-node-map.d.ts","../../dom-elements/lib/types/element.d.ts","../../dom-elements/lib/types/attr.d.ts","../../dom-elements/lib/types/character-data.d.ts","../../dom-elements/lib/types/text.d.ts","../../dom-elements/lib/types/comment.d.ts","../../dom-elements/lib/types/document-fragment.d.ts","../../dom-elements/lib/types/dom-token-list.d.ts","../../dom-elements/lib/types/html-element.d.ts","../../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-elements/lib/types/types/i-html-image-element.d.ts","../../dom-elements/lib/types/types/predefined-color-space.d.ts","../../dom-elements/lib/types/types/image-data.d.ts","../../dom-elements/lib/types/types/index.d.ts","../../dom-elements/lib/types/html-image-element.d.ts","../../dom-elements/lib/types/html-media-element.d.ts","../../dom-elements/lib/types/html-video-element.d.ts","../../dom-elements/lib/types/image.d.ts","../../dom-elements/lib/types/document.d.ts","../../dom-elements/lib/types/mutation-observer.d.ts","../../dom-elements/lib/types/resize-observer.d.ts","../../dom-elements/lib/types/intersection-observer.d.ts","../../dom-elements/lib/types/node-type.d.ts","../../dom-elements/lib/types/namespace-uri.d.ts","../../dom-elements/lib/types/font-face.d.ts","../../dom-elements/lib/types/match-media.d.ts","../../dom-elements/lib/types/location-stub.d.ts","../../dom-elements/lib/types/dom-matrix.d.ts","../../dom-elements/lib/types/index.d.ts","../../event-bridge/lib/types/event-bridge.d.ts","../../event-bridge/lib/types/key-map.d.ts","../../event-bridge/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/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","../../../../node_modules/@girs/gst-1.0/gst-1.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":[[77,80,84,164,227,230,235,239,242,244,245,246,259],[80,84,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,164,227,230,235,239,242,244,245,246,259],[78,79,84,164,227,230,235,239,242,244,245,246,259],[84,133,136,164,227,230,235,239,242,244,245,246,259],[84,136,164,227,230,235,239,242,244,245,246,259],[75,84,86,164,227,230,235,239,242,244,245,246,259],[84,134,135,164,227,230,235,239,242,244,245,246,259],[84,144,145,164,227,230,235,239,242,244,245,246,259],[84,144,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,92,94,96,136,138,140,142,164,227,230,235,239,242,244,245,246,259],[84,126,143,164,227,230,235,239,242,244,245,246,259],[65,84,96,164,227,230,235,239,242,244,245,246,259],[84,96,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,92,94,164,227,230,235,239,242,244,245,246,259],[66,84,95,164,227,230,235,239,242,244,245,246,259],[84,87,94,164,227,230,235,239,242,244,245,246,259],[84,94,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,92,164,227,230,235,239,242,244,245,246,259],[84,88,93,164,227,230,235,239,242,244,245,246,259],[75,80,84,164,227,230,235,239,242,244,245,246,259],[84,164,227,230,235,239,242,244,245,246,259],[67,76,81,82,83,164,227,230,235,239,242,244,245,246,259],[67,73,75,76,81,84,164,227,230,235,239,242,244,245,246,259],[84,85,164,227,230,235,239,242,244,245,246,259],[75,84,164,227,230,235,239,242,244,245,246,259],[70,73,84,164,227,230,235,239,242,244,245,246,259],[73,84,164,227,230,235,239,242,244,245,246,259],[71,72,84,164,227,230,235,239,242,244,245,246,259],[84,89,92,164,227,230,235,239,242,244,245,246,259],[84,92,164,227,230,235,239,242,244,245,246,259],[84,90,91,164,227,230,235,239,242,244,245,246,259],[68,75,84,164,227,230,235,239,242,244,245,246,259],[73,84,86,164,227,230,235,239,242,244,245,246,259],[69,74,84,164,227,230,235,239,242,244,245,246,259],[84,153,156,164,227,230,235,239,242,244,245,246,259],[84,156,164,227,230,235,239,242,244,245,246,259],[84,154,155,164,227,230,235,239,242,244,245,246,259],[84,151,158,164,227,230,235,239,242,244,245,246,259],[84,158,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,92,94,96,136,138,140,142,144,156,164,227,230,235,239,242,244,245,246,259],[84,152,157,164,227,230,235,239,242,244,245,246,259],[84,148,149,164,227,230,235,239,242,244,245,246,259],[84,148,164,227,230,235,239,242,244,245,246,259],[84,146,147,164,227,230,235,239,242,244,245,246,259],[84,160,161,164,227,230,235,239,242,244,245,246,259],[84,160,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,92,94,96,136,138,140,142,144,156,158,164,227,230,235,239,242,244,245,246,259],[84,150,159,164,227,230,235,239,242,244,245,246,259],[84,131,138,164,227,230,235,239,242,244,245,246,259],[84,138,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,136,164,227,230,235,239,242,244,245,246,259],[84,132,137,164,227,230,235,239,242,244,245,246,259],[84,130,139,164,227,230,235,239,242,244,245,246,259],[84,129,140,164,227,230,235,239,242,244,245,246,259],[84,140,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,92,94,136,138,164,227,230,235,239,242,244,245,246,259],[84,128,141,164,227,230,235,239,242,244,245,246,259],[84,127,142,164,227,230,235,239,242,244,245,246,259],[84,142,164,227,230,235,239,242,244,245,246,259],[73,75,84,86,92,94,136,138,140,164,227,230,235,239,242,244,245,246,259],[84,164,224,225,227,230,235,239,242,244,245,246,259],[84,164,226,227,230,235,239,242,244,245,246,259],[84,227,230,235,239,242,244,245,246,259],[84,164,227,230,235,239,242,244,245,246,259,267],[84,164,227,228,230,233,235,238,239,242,244,245,246,248,259,264,276],[84,164,227,228,229,230,235,238,239,242,244,245,246,259],[84,164,227,230,235,239,242,244,245,246,259,277],[84,164,227,230,231,232,235,239,242,244,245,246,250,259],[84,164,227,230,232,235,239,242,244,245,246,259,264,273],[84,164,227,230,233,235,238,239,242,244,245,246,248,259],[84,164,226,227,230,234,235,239,242,244,245,246,259],[84,164,227,230,235,236,239,242,244,245,246,259],[84,164,227,230,235,237,238,239,242,244,245,246,259],[84,164,226,227,230,235,238,239,242,244,245,246,259],[84,164,227,230,235,238,239,240,242,244,245,246,259,264,276],[84,164,227,230,235,238,239,240,242,244,245,246,259,264,267],[84,164,214,227,230,235,238,239,241,242,244,245,246,248,259,264,276],[84,164,227,230,235,238,239,241,242,244,245,246,248,259,264,273,276],[84,164,227,230,235,239,241,242,243,244,245,246,259,264,273,276],[84,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],[84,164,227,230,235,238,239,242,244,245,246,259],[84,164,227,230,235,239,242,244,246,259],[84,164,227,230,235,239,242,244,245,246,247,259,276],[84,164,227,230,235,238,239,242,244,245,246,248,259,264],[84,164,227,230,235,239,242,244,245,246,250,259],[84,164,227,230,235,239,242,244,245,246,251,259],[84,164,227,230,235,238,239,242,244,245,246,254,259],[84,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],[84,164,227,230,235,239,242,244,245,246,256,259],[84,164,227,230,235,239,242,244,245,246,257,259],[84,164,227,230,232,235,239,242,244,245,246,248,259,267],[84,164,227,230,235,238,239,242,244,245,246,259,260],[84,164,227,230,235,239,242,244,245,246,259,261,277,280],[84,164,227,230,235,238,239,242,244,245,246,259,264,266,267],[84,164,227,230,235,239,242,244,245,246,259,265,267],[84,164,227,230,235,239,242,244,245,246,259,267,277],[84,164,227,230,235,239,242,244,245,246,259,268],[84,164,224,227,230,235,239,242,244,245,246,259,264,270,276],[84,164,227,230,235,239,242,244,245,246,259,264,269],[84,164,227,230,235,238,239,242,244,245,246,259,271,272],[84,164,227,230,235,239,242,244,245,246,259,271,272],[84,164,227,230,232,235,239,242,244,245,246,248,259,264,273],[84,164,227,230,235,239,242,244,245,246,259,274],[84,164,227,230,235,239,242,244,245,246,248,259,275],[84,164,227,230,235,239,241,242,244,245,246,257,259,276],[84,164,227,230,235,239,242,244,245,246,259,277,278],[84,164,227,230,232,235,239,242,244,245,246,259,278],[84,164,227,230,235,239,242,244,245,246,259,264,279],[84,164,227,230,235,239,242,244,245,246,247,259,280],[84,164,227,230,235,239,242,244,245,246,259,281],[84,164,227,230,232,235,239,242,244,245,246,259],[84,164,214,227,230,235,239,242,244,245,246,259],[84,164,227,230,235,239,242,244,245,246,259,276],[84,164,227,230,235,239,242,244,245,246,259,282],[84,164,227,230,235,239,242,244,245,246,254,259],[84,164,227,230,235,239,242,244,245,246,259,272],[84,164,214,227,230,235,238,239,240,242,244,245,246,254,259,264,267,276,279,280,282],[84,164,227,230,235,239,242,244,245,246,259,264,283],[84,164,179,182,185,186,227,230,235,239,242,244,245,246,259,276],[84,164,182,227,230,235,239,242,244,245,246,259,264,276],[84,164,182,186,227,230,235,239,242,244,245,246,259,276],[84,164,227,230,235,239,242,244,245,246,259,264],[84,164,176,227,230,235,239,242,244,245,246,259],[84,164,180,227,230,235,239,242,244,245,246,259],[84,164,178,179,182,227,230,235,239,242,244,245,246,259,276],[84,164,227,230,235,239,242,244,245,246,248,259,273],[84,164,227,230,235,239,242,244,245,246,259,284],[84,164,176,227,230,235,239,242,244,245,246,259,284],[84,164,178,182,227,230,235,239,242,244,245,246,248,259,276],[84,164,173,174,175,177,181,227,230,235,238,239,242,244,245,246,259,264,276],[84,164,182,191,199,227,230,235,239,242,244,245,246,259],[84,164,174,180,227,230,235,239,242,244,245,246,259],[84,164,182,208,209,227,230,235,239,242,244,245,246,259],[84,164,174,177,182,227,230,235,239,242,244,245,246,259,267,276,284],[84,164,182,227,230,235,239,242,244,245,246,259],[84,164,178,182,227,230,235,239,242,244,245,246,259,276],[84,164,173,227,230,235,239,242,244,245,246,259],[84,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],[84,164,182,201,204,227,230,235,239,242,244,245,246,259],[84,164,182,191,192,193,227,230,235,239,242,244,245,246,259],[84,164,180,182,192,194,227,230,235,239,242,244,245,246,259],[84,164,181,227,230,235,239,242,244,245,246,259],[84,164,174,176,182,227,230,235,239,242,244,245,246,259],[84,164,182,186,192,194,227,230,235,239,242,244,245,246,259],[84,164,186,227,230,235,239,242,244,245,246,259],[84,164,180,182,185,227,230,235,239,242,244,245,246,259,276],[84,164,174,178,182,191,227,230,235,239,242,244,245,246,259],[84,164,182,201,227,230,235,239,242,244,245,246,259],[84,164,194,227,230,235,239,242,244,245,246,259],[84,164,176,182,208,227,230,235,239,242,244,245,246,259,267,282,284],[84,115,119,164,227,230,235,239,242,244,245,246,259],[84,120,164,227,230,235,239,242,244,245,246,259],[52,84,115,120,164,227,230,235,239,242,244,245,246,259],[84,119,120,121,164,227,230,235,239,242,244,245,246,259],[50,56,84,164,227,230,235,239,242,244,245,246,259],[54,84,164,227,230,235,239,242,244,245,246,259],[58,84,164,227,230,235,239,242,244,245,246,259],[54,56,84,164,227,230,235,239,242,244,245,246,259],[52,54,56,59,60,61,63,84,164,227,230,235,239,242,244,245,246,259],[56,84,164,227,230,235,239,242,244,245,246,259],[50,52,54,55,84,164,227,230,235,239,242,244,245,246,259],[63,84,164,227,230,235,239,242,244,245,246,259],[52,56,84,164,227,230,235,239,242,244,245,246,259],[63,84,96,100,164,227,230,235,239,242,244,245,246,259],[84,102,164,227,230,235,239,242,244,245,246,259],[84,101,164,227,230,235,239,242,244,245,246,259],[50,53,54,55,56,57,58,59,60,61,62,63,64,84,101,102,103,104,105,106,107,108,109,110,111,112,113,114,164,227,230,235,239,242,244,245,246,259],[52,84,164,227,230,235,239,242,244,245,246,259],[56,57,84,164,227,230,235,239,242,244,245,246,259],[50,52,53,84,164,227,230,235,239,242,244,245,246,259],[84,115,164,227,230,235,239,242,244,245,246,259],[84,98,164,227,230,235,239,242,244,245,246,259],[84,97,98,99,164,227,230,235,239,242,244,245,246,259],[84,161,164,227,230,235,239,242,244,245,246,259],[84,116,117,164,227,230,235,239,242,244,245,246,259],[84,149,164,227,230,235,239,242,244,245,246,259],[84,115,123,124,164,227,230,235,239,242,244,245,246,259],[49,84,145,164,227,230,235,239,242,244,245,246,259],[49,52,68,70,84,115,118,122,123,161,164,227,230,235,239,242,244,245,246,259],[51,84,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":"735826c4a83dc583875c09cb14b6b108332e6e182a44adffb805b5a8b554551a","signature":"c9f0b763230c716292f55ffd2d03aca8d8c4a206ad8e97fb30b4907cd178e942","impliedFormat":99},{"version":"b380926f6a3b0a2c45c5556e618426cb4cf0be22152d23f652a3b94b71ef8f0d","impliedFormat":99},{"version":"e176cbd59020ce3184e68f10e5f286e027dd444e66d490fe3836118e17babf9c","impliedFormat":99},{"version":"8ff24dc5ca7e7ad39d6af837d4fb84abd2d0c5e4772422db4ede1bfd5ee5408b","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":"5b41c9b462fbcc3f2a4693787478a1128074c8d56603e70317f6f8f797ee03e3","impliedFormat":99},{"version":"fa32b29d6cbe4f293ce9b086be636fa8316768313ac115e8b6867b12698833d2","affectsGlobalScope":true,"impliedFormat":99},{"version":"2085382b07f3cd64087a991b6becb50133f01238539acfd02b4056a94a5ebb9d","impliedFormat":99},{"version":"db35eb1245b36fd3ff663811086d15cb8c68f3b3dc5f5f831db3b0eefbcb033c","impliedFormat":99},{"version":"0f3c61a292d85a2e818df1f9a7c7f37846cb1a6a3a4ecf7894f8a738d4bdb192","affectsGlobalScope":true,"impliedFormat":99},{"version":"8c9787aadb580199528c52892a52d65cf5681cbf431f50c387b4452d830e8260","impliedFormat":99},{"version":"6e9045bc4cb132b149dac58eeb9689f1fdb2b2b356ebbf02b93912b7a0fdbc25","affectsGlobalScope":true,"impliedFormat":99},{"version":"cdf6e449238a7637123d566eec976dd24b21f5c7caaef7a2c04ee9186ee5589e","impliedFormat":99},{"version":"a1eeac57c42f81587bdb5ba17781055a64913a1b6896752b5b9e45ba007577a2","impliedFormat":99},{"version":"e4c5e0aa906bc9b10b24aeba0b033a49d5742eab0704fe196800e8a4000c1e2e","impliedFormat":99},{"version":"86a89e907573f6d3c8ddab189817f10eff6b0c42ec08c485888d5e8b2efa1e2c","impliedFormat":99},{"version":"e73f713456ae34abd233f29196aa99fdf404cb91164c5122bc19a3d719047cd2","impliedFormat":99},{"version":"54c3513e44305cbe56ef433417d9e42104cdc317a63c43ecf72a1849ee69ccc2","impliedFormat":99},{"version":"7b0dc352c423e02893e3dbefdc5172f227c7638cd40c35c4b1b77af3008613de","affectsGlobalScope":true,"impliedFormat":99},{"version":"58fd9932dca08c73d5749118cd28214224c589fc48b41202f9ce0b5ba1423fb6","impliedFormat":99},{"version":"0add61f82f10b4bb3bf837edda13915a643fa650f577e79a03be219c656f9e18","impliedFormat":99},{"version":"4db1053ff2a3a26c56ec68803986fb9a2de7ecb26d6252e1d4b719c48398f799","impliedFormat":99},{"version":"c1bf15bba38171793cfc7112559b1714b0bcb9f79477e012dffc4bb0ef2292a1","impliedFormat":99},{"version":"6922180d916be5ec823dd103ec60bf1ec48bded8e53194a760831a877a7cff0f","impliedFormat":99},{"version":"d0cd0ed5ad50d765e2e30fd7a45ce1b054cce85ff8235d19bbe45152acd32a08","impliedFormat":99},{"version":"7a61ece44b95f226c4166f48ed58e90a7b76242588293c52bb45bd74368c7559","affectsGlobalScope":true,"impliedFormat":99},{"version":"8dd968f41e49b2b0514d16baa1199620746dd6e8017accbea9a39a4b0c2a9d28","impliedFormat":99},{"version":"21ab021acdc50115128766fc952cb9265bbe1e878a6e6712f7999cfcdd3bfbba","impliedFormat":99},{"version":"a67623830d36a6c76f01ce2b51ca3206fb07de66d89b364837eb0fdb901de445","affectsGlobalScope":true,"impliedFormat":99},{"version":"090eb5c7c46bcebe0fdde327c76833c56f3f5503fa2c9b34a908c88ac3536ee6","impliedFormat":99},{"version":"54ac9f13e2b5a9bf9c0a2ceec8135b290d6d5f1b7623f2297f3e7e7f66da5aea","affectsGlobalScope":true,"impliedFormat":99},{"version":"a8fe8ba4b9226110a43330bc743d98e3e3af394e50f018dae034d11821a4b598","impliedFormat":99},{"version":"75fdff836de566cceca1fd40f365af854fbd8139e0fb33a191f8d087c9e43d90","impliedFormat":99},{"version":"e5aa42191a1c25748ddb35ed2922af45712fb80ddf86e1e09733be281c125468","impliedFormat":99},{"version":"981e32c1ee850a697091171963411a0a940d5c1fa1fe3ea88fb9ea7c0f841bd1","impliedFormat":99},{"version":"77564459f9c751745ba4131323aadf7d08fa33e1b41a225b2692f8f6f5ca6d14","impliedFormat":99},{"version":"34b825347ced4d1afdc8ff7648ca26f9591d10a2c64dc77a052fdc9af13ca31f","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":"1b32cc26ce5791b282124abb4f131e89000608c7a76a513eb04bfc22b81c2c1f","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":"f8c4261d9a75862dc2cabd7a14652265fcf0e5bc77df506e994b318ec5a4c1f4","impliedFormat":99},{"version":"d11e70c24eb78033658ee3793763fcdf9df2fa71fc4fd9621e3fcb31d8b40cd7","impliedFormat":99},{"version":"315550d47b119c4cb0b7c235c23e6dc76bd6700865942da83acf378b53318951","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":"93b3526c794215b5208b78c62d5bbdb7fa3fba6d80dec3b57318fd02515a5368","signature":"89ec5e87c79f3d7e8b93b78ef60eb04cde8e9b6d3faaac022d056e3f254ddc05","impliedFormat":99},{"version":"5071c38cc90bb607b7c2a34d6b520973254ccff1812221a36b8bb4715813ca27","signature":"4e68f36fb7a6fa3e7390a849307d9503e5aaa4151428c65c5cbf37850f9ecfba","impliedFormat":99},{"version":"eca5ae77082fbae75f84f2c7f564d19445e0310ea444e958ab96536ec99f25e2","affectsGlobalScope":true,"impliedFormat":99},{"version":"0ac02f44e71a9befa9af15d07e609ff0fd51c60bbf26fb6f71875707f1b394b1","impliedFormat":99},{"version":"6d57d4863980784f32b9a99064452a369086a45a7dac15f056fb495e8417a30a","affectsGlobalScope":true,"impliedFormat":99},{"version":"91d14e044d65c549c8827e49f93a1a8550657973e39f5cc49562466c3db787a8","impliedFormat":99},{"version":"347c003a385caeaf51a8b30ce282bb73869d87c7a3875fe7c3ccd2daddaf1876","affectsGlobalScope":true,"impliedFormat":99},{"version":"7530ae88145eaec55edad86fbb3c736eda9c9fa356c491c8da28ecde2990b825","impliedFormat":99},{"version":"7804cf99ef91d3b3d0fc402eb685f1386062497517363bb2b6b03cb2067775e8","affectsGlobalScope":true,"impliedFormat":99},{"version":"c419de905ede8758304a529463a9ce7d451c7ac59f52934af475fbc94c206d9e","impliedFormat":99},{"version":"b3dcdeb20d7f0718d174544278f9901c51ba25806c906c5c3a3748210e2aa687","affectsGlobalScope":true,"impliedFormat":99},{"version":"510b80e8d29184ae3d506943bc2405e5dc6337a7724a1585650f40088d18a3ec","impliedFormat":99},{"version":"efc248353f283e5a3b6ff9c59751783b118910d8dea335070195e8415c95af55","impliedFormat":99},{"version":"139da06f9b04d87922d594292353419ce93a194d30db2530411036af6c81fd51","impliedFormat":99},{"version":"c2f4b9ca30387d04ca64a6f6fad507e49ca9ca2a70b34ca64579f2f6050c8bff","impliedFormat":99},{"version":"90e956f29baac5f3cf7e2f373559e6f9861fbd141ee6cc779511442f98f46b8f","impliedFormat":99},{"version":"65794540ef2e02d92221ca25b4a787c7f50a885dcd10b0b6556d434bebd6b1de","impliedFormat":99},{"version":"b625c50f486d2a2a3a7039e43afccf3254e1675eeec1b21873dc08c0faba278b","impliedFormat":99},{"version":"8b72a707125ca76416917e1850eea6454f1b1ba2af066b58b3889945373f8896","impliedFormat":99},{"version":"7297062d4e8408a364dbad4a05295302a2976b0543374ab8ada33249374a7aed","impliedFormat":99},{"version":"ecbc55b9ee0184b94ff7de309e31328a549fb679c710bbcd785eec9c64349f00","impliedFormat":99},{"version":"29cf4a076736c38bf6a7d23d43d2c2ae709a553615ac858686b7186cf0c952cf","impliedFormat":99},{"version":"70781ec07256fff672b4294b5cb4b5595016aa89bec38396217fe750817ee06f","affectsGlobalScope":true,"impliedFormat":99},{"version":"79e0c8560290e00757c1b7e9241491285ef2f0125b8634c962d0eeeab28d200d","impliedFormat":99},{"version":"76c2ed227456ef447e840fae2fd1b714c0a155ef43619682fb34fc0d11c92cf3","impliedFormat":99},{"version":"c17186c89d630f582cdf2e99afe6a3e5d6f5d80570e99426cd0ca5a0b6fe848d","impliedFormat":99},{"version":"89015cac57ac6acdd31d143e7843ade6427f03d9df5de62aa5c1cd9ecbe33000","affectsGlobalScope":true,"impliedFormat":99},{"version":"f450021b8c16c3e0bb997ddba60131d8092deacbb912cbc4072baaa6e3746cc9","impliedFormat":99},{"version":"d4e62252c87b057a4fbe0c8c6efadd613f0c84e4050f0db6e96e6f431a49d194","affectsGlobalScope":true,"impliedFormat":99},{"version":"373050f75eeaf4feb36a0093e3fd4d64b3a997c6ff678eca18f3dcd69082bbcb","impliedFormat":99},{"version":"64ce6b3ba42b2b80c9f1a8771744474af0807a0e36f6bcd9059c97337acf6934","affectsGlobalScope":true,"impliedFormat":99},{"version":"2fb35c64f1e4a3099bc5b945d2442d91413ba531d60f00300b72356f21cd4f50","impliedFormat":99},{"version":"5d410316b6c03ace3d207dd1e214ecdc995c366df983b06f64f893f597c92641","impliedFormat":99},{"version":"ec980cc01f6d916a234e696a50ff32ab807d3b58f20cea0aaadd30e3f907a50b","impliedFormat":99},{"version":"49f3ccea337b806a381c509fe41ded84acc3540407aa34a9d7b89ecd789ee3ef","impliedFormat":99},{"version":"0c80a3a7d59da06fc0ca9b8739ce8a1240afc9dfc365ecd8a2271b59bbe50c55","impliedFormat":99},{"version":"0987d83db39de1955b2fc71b8f8107fbb5f1bc4ebaa0ffa4aae9d75c83ae0baa","impliedFormat":99},{"version":"6d71799ede93673b1fdc34a4ef1b0f9701c4191d9e4cd0455589accc24498e03","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":"f9713757bcdfa4d58b48c0fb249e752c94a3eee8bf4532b906094246ac49ef88","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":"eab2f3179607acb3d44b2db2a76dd7d621c5039b145dc160a1ee733963f9d2f5","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":[49,68,70,[123,125],145,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":[[77,1],[78,2],[79,3],[80,4],[133,5],[134,6],[135,7],[136,8],[145,9],[126,10],[143,11],[144,12],[65,13],[66,14],[95,15],[96,16],[87,17],[88,18],[93,19],[94,20],[81,21],[82,22],[67,22],[83,22],[84,23],[85,24],[86,25],[76,26],[70,27],[71,28],[72,7],[73,29],[89,30],[90,31],[91,3],[92,32],[68,33],[69,26],[74,34],[75,35],[153,36],[154,37],[155,3],[156,38],[151,39],[152,40],[157,41],[158,42],[149,43],[146,44],[147,19],[148,45],[161,46],[150,47],[159,48],[160,49],[131,50],[132,51],[137,52],[138,53],[140,54],[129,55],[130,56],[139,57],[142,58],[127,59],[128,60],[141,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],[120,152],[121,153],[119,154],[122,155],[57,156],[58,157],[60,158],[61,159],[105,160],[114,22],[62,161],[56,162],[111,22],[64,163],[63,164],[101,165],[102,163],[103,166],[104,167],[115,168],[108,161],[113,22],[112,169],[106,157],[55,170],[110,22],[53,157],[109,22],[54,171],[50,22],[107,161],[59,158],[97,172],[99,173],[100,174],[98,22],[116,175],[118,176],[117,22],[49,177],[125,178],[123,179],[124,180],[52,181],[51,22]],"latestChangedDtsFile":"../lib/types/index.d.ts","version":"6.0.2"}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
}
|