@vpmedia/phaser 1.94.0 → 1.96.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +41 -0
- package/package.json +11 -11
- package/src/phaser/core/animation.js +79 -56
- package/src/phaser/core/animation_manager.js +55 -55
- package/src/phaser/core/animation_parser.js +2 -2
- package/src/phaser/core/cache.js +154 -154
- package/src/phaser/core/device.js +2 -1
- package/src/phaser/core/device_util.js +27 -27
- package/src/phaser/core/dom.js +43 -43
- package/src/phaser/core/event_manager.js +63 -63
- package/src/phaser/core/factory.js +47 -47
- package/src/phaser/core/frame.js +30 -30
- package/src/phaser/core/frame_data.js +30 -28
- package/src/phaser/core/frame_util.js +8 -8
- package/src/phaser/core/game.js +35 -19
- package/src/phaser/core/input_pointer.js +18 -0
- package/src/phaser/core/loader.js +171 -171
- package/src/phaser/core/loader_parser.js +22 -22
- package/src/phaser/core/raf.js +1 -1
- package/src/phaser/core/scale_manager.js +3 -2
- package/src/phaser/core/scene.js +16 -10
- package/src/phaser/core/scene_manager.js +51 -43
- package/src/phaser/core/signal.js +56 -52
- package/src/phaser/core/sound.js +54 -54
- package/src/phaser/core/sound_manager.js +49 -49
- package/src/phaser/core/stage.js +16 -16
- package/src/phaser/core/time.js +54 -30
- package/src/phaser/core/timer.js +82 -64
- package/src/phaser/core/timer_event.js +9 -9
- package/src/phaser/core/tween.js +106 -90
- package/src/phaser/core/tween_data.js +30 -30
- package/src/phaser/core/tween_manager.js +32 -24
- package/src/phaser/core/world.js +4 -3
- package/src/phaser/display/bitmap_text.js +72 -54
- package/src/phaser/display/button.js +48 -47
- package/src/phaser/display/canvas/buffer.js +8 -8
- package/src/phaser/display/canvas/graphics.js +8 -8
- package/src/phaser/display/canvas/masker.js +5 -5
- package/src/phaser/display/canvas/pool.js +18 -18
- package/src/phaser/display/canvas/renderer.js +17 -16
- package/src/phaser/display/canvas/tinter.js +22 -22
- package/src/phaser/display/canvas/util.js +42 -42
- package/src/phaser/display/display_object.js +119 -108
- package/src/phaser/display/graphics.js +129 -112
- package/src/phaser/display/graphics_data.js +10 -10
- package/src/phaser/display/graphics_data_util.js +3 -3
- package/src/phaser/display/group.js +63 -50
- package/src/phaser/display/image.js +68 -50
- package/src/phaser/display/sprite_batch.js +2 -2
- package/src/phaser/display/sprite_util.js +19 -19
- package/src/phaser/display/text.js +217 -187
- package/src/phaser/display/webgl/abstract_filter.js +4 -4
- package/src/phaser/display/webgl/base_texture.js +9 -9
- package/src/phaser/display/webgl/blend_manager.js +7 -7
- package/src/phaser/display/webgl/earcut.js +95 -95
- package/src/phaser/display/webgl/earcut_node.js +4 -4
- package/src/phaser/display/webgl/fast_sprite_batch.js +15 -15
- package/src/phaser/display/webgl/filter_manager.js +9 -9
- package/src/phaser/display/webgl/filter_texture.js +10 -10
- package/src/phaser/display/webgl/graphics.js +37 -37
- package/src/phaser/display/webgl/graphics_data.js +4 -4
- package/src/phaser/display/webgl/mask_manager.js +6 -6
- package/src/phaser/display/webgl/render_texture.js +16 -16
- package/src/phaser/display/webgl/renderer.js +21 -20
- package/src/phaser/display/webgl/shader/complex.js +4 -4
- package/src/phaser/display/webgl/shader/fast.js +4 -4
- package/src/phaser/display/webgl/shader/normal.js +8 -8
- package/src/phaser/display/webgl/shader/primitive.js +4 -4
- package/src/phaser/display/webgl/shader/strip.js +4 -4
- package/src/phaser/display/webgl/shader_manager.js +9 -9
- package/src/phaser/display/webgl/sprite_batch.js +18 -18
- package/src/phaser/display/webgl/stencil_manager.js +16 -16
- package/src/phaser/display/webgl/texture.js +13 -13
- package/src/phaser/display/webgl/texture_util.js +8 -8
- package/src/phaser/display/webgl/util.js +25 -25
- package/src/phaser/geom/circle.js +74 -69
- package/src/phaser/geom/ellipse.js +33 -28
- package/src/phaser/geom/line.js +96 -93
- package/src/phaser/geom/matrix.js +61 -54
- package/src/phaser/geom/point.js +99 -96
- package/src/phaser/geom/polygon.js +27 -22
- package/src/phaser/geom/rectangle.js +137 -132
- package/src/phaser/geom/rounded_rectangle.js +12 -12
- package/src/phaser/geom/util/circle.js +33 -33
- package/src/phaser/geom/util/ellipse.js +5 -5
- package/src/phaser/geom/util/line.js +26 -26
- package/src/phaser/geom/util/matrix.js +8 -8
- package/src/phaser/geom/util/point.js +97 -97
- package/src/phaser/geom/util/polygon.js +4 -4
- package/src/phaser/geom/util/rectangle.js +74 -74
- package/src/phaser/geom/util/rounded_rectangle.js +4 -4
- package/src/phaser/util/math.js +81 -81
- package/types/phaser/core/animation.d.ts +79 -56
- package/types/phaser/core/animation.d.ts.map +1 -1
- package/types/phaser/core/animation_manager.d.ts +55 -55
- package/types/phaser/core/animation_parser.d.ts +3 -2
- package/types/phaser/core/animation_parser.d.ts.map +1 -1
- package/types/phaser/core/cache.d.ts +154 -154
- package/types/phaser/core/device.d.ts.map +1 -1
- package/types/phaser/core/dom.d.ts +51 -44
- package/types/phaser/core/dom.d.ts.map +1 -1
- package/types/phaser/core/event_manager.d.ts +63 -63
- package/types/phaser/core/factory.d.ts +47 -47
- package/types/phaser/core/frame.d.ts +30 -30
- package/types/phaser/core/frame_data.d.ts +28 -27
- package/types/phaser/core/frame_data.d.ts.map +1 -1
- package/types/phaser/core/game.d.ts +54 -21
- package/types/phaser/core/game.d.ts.map +1 -1
- package/types/phaser/core/input_pointer.d.ts +18 -0
- package/types/phaser/core/input_pointer.d.ts.map +1 -1
- package/types/phaser/core/loader.d.ts +175 -172
- package/types/phaser/core/loader.d.ts.map +1 -1
- package/types/phaser/core/loader_parser.d.ts.map +1 -1
- package/types/phaser/core/raf.d.ts +1 -1
- package/types/phaser/core/scale_manager.d.ts +6 -5
- package/types/phaser/core/scale_manager.d.ts.map +1 -1
- package/types/phaser/core/scene.d.ts +15 -9
- package/types/phaser/core/scene.d.ts.map +1 -1
- package/types/phaser/core/scene_manager.d.ts +51 -43
- package/types/phaser/core/scene_manager.d.ts.map +1 -1
- package/types/phaser/core/signal.d.ts +54 -51
- package/types/phaser/core/signal.d.ts.map +1 -1
- package/types/phaser/core/sound.d.ts +54 -54
- package/types/phaser/core/sound_manager.d.ts +49 -49
- package/types/phaser/core/stage.d.ts +10 -10
- package/types/phaser/core/time.d.ts +54 -30
- package/types/phaser/core/time.d.ts.map +1 -1
- package/types/phaser/core/timer.d.ts +82 -64
- package/types/phaser/core/timer.d.ts.map +1 -1
- package/types/phaser/core/timer_event.d.ts +9 -9
- package/types/phaser/core/tween.d.ts +106 -90
- package/types/phaser/core/tween.d.ts.map +1 -1
- package/types/phaser/core/tween_data.d.ts +30 -30
- package/types/phaser/core/tween_manager.d.ts +35 -67
- package/types/phaser/core/tween_manager.d.ts.map +1 -1
- package/types/phaser/core/world.d.ts +4 -3
- package/types/phaser/core/world.d.ts.map +1 -1
- package/types/phaser/display/bitmap_text.d.ts +76 -53
- package/types/phaser/display/bitmap_text.d.ts.map +1 -1
- package/types/phaser/display/button.d.ts +47 -46
- package/types/phaser/display/button.d.ts.map +1 -1
- package/types/phaser/display/canvas/buffer.d.ts +8 -8
- package/types/phaser/display/canvas/graphics.d.ts +3 -3
- package/types/phaser/display/canvas/graphics.d.ts.map +1 -1
- package/types/phaser/display/canvas/pool.d.ts +6 -3
- package/types/phaser/display/canvas/pool.d.ts.map +1 -1
- package/types/phaser/display/canvas/renderer.d.ts +18 -17
- package/types/phaser/display/canvas/renderer.d.ts.map +1 -1
- package/types/phaser/display/canvas/util.d.ts +6 -6
- package/types/phaser/display/canvas/util.d.ts.map +1 -1
- package/types/phaser/display/display_object.d.ts +119 -108
- package/types/phaser/display/display_object.d.ts.map +1 -1
- package/types/phaser/display/graphics.d.ts +118 -102
- package/types/phaser/display/graphics.d.ts.map +1 -1
- package/types/phaser/display/graphics_data.d.ts +10 -10
- package/types/phaser/display/group.d.ts +59 -47
- package/types/phaser/display/group.d.ts.map +1 -1
- package/types/phaser/display/image.d.ts +58 -45
- package/types/phaser/display/image.d.ts.map +1 -1
- package/types/phaser/display/text.d.ts +237 -188
- package/types/phaser/display/text.d.ts.map +1 -1
- package/types/phaser/display/webgl/abstract_filter.d.ts +4 -4
- package/types/phaser/display/webgl/base_texture.d.ts +10 -10
- package/types/phaser/display/webgl/base_texture.d.ts.map +1 -1
- package/types/phaser/display/webgl/blend_manager.d.ts +6 -6
- package/types/phaser/display/webgl/earcut.d.ts +95 -95
- package/types/phaser/display/webgl/earcut_node.d.ts +4 -4
- package/types/phaser/display/webgl/fast_sprite_batch.d.ts +15 -15
- package/types/phaser/display/webgl/filter_manager.d.ts +8 -8
- package/types/phaser/display/webgl/filter_texture.d.ts +10 -10
- package/types/phaser/display/webgl/graphics.d.ts +2 -2
- package/types/phaser/display/webgl/graphics.d.ts.map +1 -1
- package/types/phaser/display/webgl/graphics_data.d.ts +4 -4
- package/types/phaser/display/webgl/render_texture.d.ts +16 -16
- package/types/phaser/display/webgl/renderer.d.ts +21 -20
- package/types/phaser/display/webgl/renderer.d.ts.map +1 -1
- package/types/phaser/display/webgl/shader/complex.d.ts +4 -4
- package/types/phaser/display/webgl/shader/fast.d.ts +4 -4
- package/types/phaser/display/webgl/shader/normal.d.ts +8 -8
- package/types/phaser/display/webgl/shader/primitive.d.ts +4 -4
- package/types/phaser/display/webgl/shader/strip.d.ts +4 -4
- package/types/phaser/display/webgl/shader_manager.d.ts +8 -8
- package/types/phaser/display/webgl/sprite_batch.d.ts +17 -17
- package/types/phaser/display/webgl/stencil_manager.d.ts +15 -15
- package/types/phaser/display/webgl/texture.d.ts +12 -12
- package/types/phaser/display/webgl/texture_util.d.ts +4 -2
- package/types/phaser/display/webgl/texture_util.d.ts.map +1 -1
- package/types/phaser/geom/circle.d.ts +74 -69
- package/types/phaser/geom/circle.d.ts.map +1 -1
- package/types/phaser/geom/ellipse.d.ts +33 -28
- package/types/phaser/geom/ellipse.d.ts.map +1 -1
- package/types/phaser/geom/line.d.ts +96 -93
- package/types/phaser/geom/line.d.ts.map +1 -1
- package/types/phaser/geom/matrix.d.ts +61 -54
- package/types/phaser/geom/matrix.d.ts.map +1 -1
- package/types/phaser/geom/point.d.ts +99 -96
- package/types/phaser/geom/point.d.ts.map +1 -1
- package/types/phaser/geom/polygon.d.ts +29 -23
- package/types/phaser/geom/polygon.d.ts.map +1 -1
- package/types/phaser/geom/rectangle.d.ts +137 -132
- package/types/phaser/geom/rectangle.d.ts.map +1 -1
- package/types/phaser/geom/rounded_rectangle.d.ts +12 -12
- package/types/phaser/geom/util/point.d.ts +1 -1
- package/types/phaser/geom/util/point.d.ts.map +1 -1
- package/pnpm-workspace.yaml +0 -4
|
@@ -1,113 +1,126 @@
|
|
|
1
1
|
export class Image extends DisplayObject {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* @param {import('../core/game.js').Game} game -
|
|
5
|
-
* @param {number} x -
|
|
6
|
-
* @param {number} y -
|
|
7
|
-
* @param {string} key -
|
|
8
|
-
* @param {string | number} frame -
|
|
9
|
-
*/
|
|
10
|
-
constructor(game: import("../core/game.js").Game, x: number, y: number, key: string, frame?: string | number);
|
|
3
|
+
* Creates a new Image instance.
|
|
4
|
+
* @param {import('../core/game.js').Game} game - The game instance this image belongs to.
|
|
5
|
+
* @param {number} x - The x position of the image.
|
|
6
|
+
* @param {number} y - The y position of the image.
|
|
7
|
+
* @param {string | number | Texture} key - The texture key or texture to use.
|
|
8
|
+
* @param {string | number} frame - The frame identifier (name or index) to use.
|
|
9
|
+
*/
|
|
10
|
+
constructor(game: import("../core/game.js").Game, x: number, y: number, key: string | number | Texture, frame?: string | number);
|
|
11
|
+
/** @type {number} */
|
|
11
12
|
type: number;
|
|
12
|
-
|
|
13
|
+
/** @type {string | number | Texture} */
|
|
14
|
+
key: string | number | Texture;
|
|
13
15
|
texture: any;
|
|
16
|
+
/** @type {number} */
|
|
14
17
|
tint: number;
|
|
18
|
+
/** @type {number} */
|
|
15
19
|
cachedTint: number;
|
|
16
|
-
|
|
20
|
+
/** @type {Texture | null} */
|
|
21
|
+
tilingTexture: Texture | null;
|
|
22
|
+
/** @type {Texture | null} */
|
|
23
|
+
tintedTexture: Texture | null;
|
|
24
|
+
/** @type {number} */
|
|
17
25
|
blendMode: number;
|
|
18
26
|
shader: any;
|
|
19
27
|
_frame: Rectangle | import("../core/frame.js").Frame;
|
|
28
|
+
/** @type {boolean} */
|
|
20
29
|
pendingDestroy: boolean;
|
|
30
|
+
/** @type {EventManager} */
|
|
21
31
|
events: EventManager;
|
|
32
|
+
/** @type {AnimationManager} */
|
|
22
33
|
animations: AnimationManager;
|
|
23
34
|
renderOrderID: number;
|
|
24
35
|
/**
|
|
25
|
-
*
|
|
26
|
-
* @param {string | number | Texture} key -
|
|
27
|
-
* @param {string | number | null | undefined} frame -
|
|
28
|
-
* @param {boolean} stopAnimation -
|
|
36
|
+
* Loads a texture for this image.
|
|
37
|
+
* @param {string | number | Texture} key - The texture key or texture to use.
|
|
38
|
+
* @param {string | number | null | undefined} frame - The frame identifier (name or index) to use.
|
|
39
|
+
* @param {boolean} stopAnimation - Whether to stop the animation when changing textures.
|
|
29
40
|
*/
|
|
30
41
|
loadTexture(key: string | number | Texture, frame?: string | number | null | undefined, stopAnimation?: boolean): void;
|
|
31
42
|
customRender: boolean;
|
|
32
43
|
/**
|
|
33
|
-
*
|
|
34
|
-
* @param {import('../core/frame.js').Frame} frame -
|
|
44
|
+
* Sets the current frame of this image.
|
|
45
|
+
* @param {import('../core/frame.js').Frame} frame - The frame to set.
|
|
35
46
|
*/
|
|
36
47
|
setFrame(frame: import("../core/frame.js").Frame): void;
|
|
37
48
|
refreshTexture: boolean;
|
|
38
49
|
/**
|
|
39
|
-
*
|
|
40
|
-
* @param {DisplayObject} parent -
|
|
41
|
-
* @param {number} width -
|
|
42
|
-
* @param {number} height -
|
|
50
|
+
* Resizes the frame of this image.
|
|
51
|
+
* @param {DisplayObject} parent - The parent display object.
|
|
52
|
+
* @param {number} width - The new width of the frame.
|
|
53
|
+
* @param {number} height - The new height of the frame.
|
|
43
54
|
*/
|
|
44
55
|
resizeFrame(parent: DisplayObject, width: number, height: number): void;
|
|
45
56
|
/**
|
|
46
|
-
*
|
|
57
|
+
* Resets the frame of this image to its original frame.
|
|
47
58
|
*/
|
|
48
59
|
resetFrame(): void;
|
|
49
60
|
/**
|
|
50
|
-
*
|
|
61
|
+
* Sets the current frame index of this image.
|
|
62
|
+
* @param {number} value - The new frame index to set.
|
|
51
63
|
*/
|
|
52
64
|
set frame(value: number);
|
|
53
65
|
/**
|
|
54
|
-
*
|
|
55
|
-
* @returns {number}
|
|
66
|
+
* Gets the current frame index of this image.
|
|
67
|
+
* @returns {number} The current frame index.
|
|
56
68
|
*/
|
|
57
69
|
get frame(): number;
|
|
58
70
|
/**
|
|
59
|
-
*
|
|
71
|
+
* Sets the current frame name of this image.
|
|
72
|
+
* @param {string} value - The new frame name to set.
|
|
60
73
|
*/
|
|
61
74
|
set frameName(value: string);
|
|
62
75
|
/**
|
|
63
|
-
*
|
|
64
|
-
* @returns {string}
|
|
76
|
+
* Gets the current frame name of this image.
|
|
77
|
+
* @returns {string} The current frame name.
|
|
65
78
|
*/
|
|
66
79
|
get frameName(): string;
|
|
67
80
|
/**
|
|
68
|
-
*
|
|
69
|
-
* @param {Rectangle} rect -
|
|
70
|
-
* @param {boolean} copy -
|
|
81
|
+
* Crops the texture of this image.
|
|
82
|
+
* @param {Rectangle} rect - The rectangle to crop to.
|
|
83
|
+
* @param {boolean} copy - Whether to copy the rect or use it directly.
|
|
71
84
|
*/
|
|
72
85
|
crop(rect: Rectangle, copy?: boolean): void;
|
|
73
86
|
cropRect: Rectangle;
|
|
74
87
|
_crop: any;
|
|
75
88
|
/**
|
|
76
|
-
*
|
|
89
|
+
* Updates the crop rectangle of this image.
|
|
77
90
|
*/
|
|
78
91
|
updateCrop(): void;
|
|
79
92
|
/**
|
|
80
|
-
*
|
|
93
|
+
* Called when the texture of this image is updated.
|
|
81
94
|
*/
|
|
82
95
|
onTextureUpdate(): void;
|
|
83
96
|
/**
|
|
84
|
-
*
|
|
85
|
-
* @param {Texture} texture -
|
|
86
|
-
* @param {boolean} destroyBase -
|
|
97
|
+
* Sets the texture for this image.
|
|
98
|
+
* @param {Texture} texture - The new texture to set.
|
|
99
|
+
* @param {boolean} destroyBase - Whether to destroy the base texture.
|
|
87
100
|
*/
|
|
88
101
|
setTexture(texture: Texture, destroyBase?: boolean): void;
|
|
89
102
|
/**
|
|
90
|
-
*
|
|
91
|
-
* @param {import('../geom/matrix.js').Matrix} matrix -
|
|
92
|
-
* @returns {Rectangle}
|
|
103
|
+
* Gets the bounds of this image.
|
|
104
|
+
* @param {import('../geom/matrix.js').Matrix} matrix - The transformation matrix to use.
|
|
105
|
+
* @returns {Rectangle} The bounds rectangle of this image.
|
|
93
106
|
*/
|
|
94
107
|
getBounds(matrix?: import("../geom/matrix.js").Matrix): Rectangle;
|
|
95
108
|
/**
|
|
96
|
-
*
|
|
97
|
-
* @param {object} renderSession -
|
|
98
|
-
* @param {import('../geom/matrix.js').Matrix} matrix -
|
|
109
|
+
* Renders this image using WebGL.
|
|
110
|
+
* @param {object} renderSession - The WebGL rendering session.
|
|
111
|
+
* @param {import('../geom/matrix.js').Matrix} matrix - The transformation matrix to use.
|
|
99
112
|
*/
|
|
100
113
|
renderWebGL(renderSession: object, matrix?: import("../geom/matrix.js").Matrix): void;
|
|
101
114
|
/**
|
|
102
|
-
*
|
|
103
|
-
* @param {object} renderSession -
|
|
104
|
-
* @param {import('../geom/matrix.js').Matrix} matrix -
|
|
115
|
+
* Renders this image using Canvas.
|
|
116
|
+
* @param {object} renderSession - The Canvas rendering session.
|
|
117
|
+
* @param {import('../geom/matrix.js').Matrix} matrix - The transformation matrix to use.
|
|
105
118
|
*/
|
|
106
119
|
renderCanvas(renderSession: object, matrix?: import("../geom/matrix.js").Matrix): void;
|
|
107
120
|
}
|
|
108
121
|
import { DisplayObject } from './display_object.js';
|
|
122
|
+
import { Texture } from './webgl/texture.js';
|
|
109
123
|
import { Rectangle } from '../geom/rectangle.js';
|
|
110
124
|
import { EventManager } from '../core/event_manager.js';
|
|
111
125
|
import { AnimationManager } from '../core/animation_manager.js';
|
|
112
|
-
import { Texture } from './webgl/texture.js';
|
|
113
126
|
//# sourceMappingURL=image.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/image.js"],"names":[],"mappings":"AASA;IACE;;;;;;;OAOG;IACH,kBANW,OAAO,iBAAiB,EAAE,IAAI,KAC9B,MAAM,KACN,MAAM,OACN,MAAM,
|
|
1
|
+
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/phaser/display/image.js"],"names":[],"mappings":"AASA;IACE;;;;;;;OAOG;IACH,kBANW,OAAO,iBAAiB,EAAE,IAAI,KAC9B,MAAM,KACN,MAAM,OACN,MAAM,GAAG,MAAM,GAAG,OAAO,UACzB,MAAM,GAAG,MAAM,EAwCzB;IApCC,qBAAqB;IACrB,MADW,MAAM,CACA;IAGjB,wCAAwC;IACxC,KADW,MAAM,GAAG,MAAM,GAAG,OAAO,CACtB;IACd,aAAwD;IAOxD,qBAAqB;IACrB,MADW,MAAM,CACG;IACpB,qBAAqB;IACrB,YADW,MAAM,CACG;IACpB,6BAA6B;IAC7B,eADW,OAAO,GAAG,IAAI,CACA;IACzB,6BAA6B;IAC7B,eADW,OAAO,GAAG,IAAI,CACA;IACzB,qBAAqB;IACrB,WADW,MAAM,CACY;IAC7B,YAAkB;IAClB,qDAAkB;IAClB,sBAAsB;IACtB,gBADW,OAAO,CACS;IAK3B,2BAA2B;IAC3B,QADW,YAAY,CACa;IACpC,+BAA+B;IAC/B,YADW,gBAAgB,CACiB;IAqC1C,sBAAuB;IAiB3B;;;;;OAKG;IACH,iBAJW,MAAM,GAAG,MAAM,GAAG,OAAO,UACzB,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,kBAClC,OAAO,QAsCjB;IAzBC,sBAAyB;IA2B3B;;;OAGG;IACH,gBAFW,OAAO,kBAAkB,EAAE,KAAK,QAyC1C;IAFG,wBAA0B;IAI9B;;;;;OAKG;IACH,oBAJW,aAAa,SACb,MAAM,UACN,MAAM,QAKhB;IAED;;OAEG;IACH,mBAIC;IAUD;;;OAGG;IACH,iBAFW,MAAM,EAIhB;IAdD;;;OAGG;IACH,aAFa,MAAM,CAIlB;IAkBD;;;OAGG;IACH,qBAFW,MAAM,EAIhB;IAdD;;;OAGG;IACH,iBAFa,MAAM,CAIlB;IAYD;;;;OAIG;IACH,WAHW,SAAS,SACT,OAAO,QAiBjB;IAVK,oBAAsE;IAMxE,WAAiB;IAMrB;;OAEG;IACH,mBA2BC;IAoCD;;OAEG;IACH,wBAQC;IAED;;;;OAIG;IACH,oBAHW,OAAO,gBACP,OAAO,QAIjB;IAED;;;;OAIG;IACH,mBAHW,OAAO,mBAAmB,EAAE,MAAM,GAChC,SAAS,CAIrB;IAUD;;;;OAIG;IACH,2BAHW,MAAM,WACN,OAAO,mBAAmB,EAAE,MAAM,QAI5C;IAED;;;;OAIG;IACH,4BAHW,MAAM,WACN,OAAO,mBAAmB,EAAE,MAAM,QAI5C;CACF;8BAtY6B,qBAAqB;wBAE3B,oBAAoB;0BAJlB,sBAAsB;6BADnB,0BAA0B;iCAFtB,8BAA8B"}
|