@lazycatcloud/sdk 0.1.64 → 0.1.66
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/dist/common/peripheral_device.d.ts +122 -96
- package/dist/common/peripheral_device.d.ts.map +1 -1
- package/dist/common/peripheral_device.js +147 -122
- package/dist/common/peripheral_device.js.map +1 -1
- package/dist/localdevice/local-launch.d.ts +62 -0
- package/dist/localdevice/local-launch.d.ts.map +1 -1
- package/dist/localdevice/local-launch.js +195 -1
- package/dist/localdevice/local-launch.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -1,29 +1,28 @@
|
|
|
1
1
|
import { grpc } from "@improbable-eng/grpc-web";
|
|
2
2
|
import { Empty } from "../google/protobuf/empty";
|
|
3
3
|
import _m0 from "protobufjs/minimal";
|
|
4
|
-
export interface
|
|
4
|
+
export interface ListFilesystemsReply {
|
|
5
5
|
/** 当前APP未挂载的磁盘列表 */
|
|
6
|
-
umounted:
|
|
6
|
+
umounted: Filesystem[];
|
|
7
7
|
/** 当前APP已挂载的磁盘列表。 */
|
|
8
|
-
mounted:
|
|
8
|
+
mounted: Filesystem[];
|
|
9
9
|
}
|
|
10
|
-
export interface
|
|
11
|
-
|
|
12
|
-
uuid: string;
|
|
13
|
-
/** size unit in bytes */
|
|
14
|
-
size: number;
|
|
10
|
+
export interface Filesystem {
|
|
11
|
+
source: string;
|
|
15
12
|
/** ntfs/fat32/ext4 ... */
|
|
16
13
|
fstype: string;
|
|
17
|
-
/** partion label name or other meaningful name for user */
|
|
18
|
-
name
|
|
14
|
+
/** partion label name or other meaningful name for user(eg. sda) */
|
|
15
|
+
name: string;
|
|
16
|
+
/** size unit in bytes */
|
|
17
|
+
size: number;
|
|
18
|
+
/** uuid of filesystem, maybe nil(eg. for fuse) */
|
|
19
|
+
uuid?: string | undefined;
|
|
20
|
+
/** mountpoint of filesystem, nil if it's not mounted */
|
|
21
|
+
mountpoint?: string | undefined;
|
|
19
22
|
}
|
|
20
|
-
export interface
|
|
23
|
+
export interface MountDiskRequest {
|
|
21
24
|
uuid: string;
|
|
22
25
|
}
|
|
23
|
-
export interface UmountFilesystemRequest {
|
|
24
|
-
uuid: string | undefined;
|
|
25
|
-
mountPoint: string | undefined;
|
|
26
|
-
}
|
|
27
26
|
export interface MountWebDavRequest {
|
|
28
27
|
url: string;
|
|
29
28
|
/** relative to webdav home root */
|
|
@@ -31,109 +30,124 @@ export interface MountWebDavRequest {
|
|
|
31
30
|
username: string;
|
|
32
31
|
password: string;
|
|
33
32
|
}
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
export interface UmountFilesystemRequest {
|
|
34
|
+
uuid: string | undefined;
|
|
35
|
+
mountpoint: string | undefined;
|
|
36
|
+
}
|
|
37
|
+
export declare const ListFilesystemsReply: {
|
|
38
|
+
encode(message: ListFilesystemsReply, writer?: _m0.Writer): _m0.Writer;
|
|
39
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListFilesystemsReply;
|
|
40
|
+
fromJSON(object: any): ListFilesystemsReply;
|
|
41
|
+
toJSON(message: ListFilesystemsReply): unknown;
|
|
39
42
|
fromPartial<I extends {
|
|
40
43
|
umounted?: {
|
|
41
|
-
|
|
42
|
-
size?: number;
|
|
44
|
+
source?: string;
|
|
43
45
|
fstype?: string;
|
|
44
|
-
name?: string
|
|
46
|
+
name?: string;
|
|
47
|
+
size?: number;
|
|
48
|
+
uuid?: string | undefined;
|
|
49
|
+
mountpoint?: string | undefined;
|
|
45
50
|
}[];
|
|
46
51
|
mounted?: {
|
|
47
|
-
|
|
48
|
-
size?: number;
|
|
52
|
+
source?: string;
|
|
49
53
|
fstype?: string;
|
|
50
|
-
name?: string
|
|
54
|
+
name?: string;
|
|
55
|
+
size?: number;
|
|
56
|
+
uuid?: string | undefined;
|
|
57
|
+
mountpoint?: string | undefined;
|
|
51
58
|
}[];
|
|
52
59
|
} & {
|
|
53
60
|
umounted?: {
|
|
54
|
-
|
|
55
|
-
size?: number;
|
|
61
|
+
source?: string;
|
|
56
62
|
fstype?: string;
|
|
57
|
-
name?: string
|
|
58
|
-
}[] & ({
|
|
59
|
-
uuid?: string;
|
|
63
|
+
name?: string;
|
|
60
64
|
size?: number;
|
|
65
|
+
uuid?: string | undefined;
|
|
66
|
+
mountpoint?: string | undefined;
|
|
67
|
+
}[] & ({
|
|
68
|
+
source?: string;
|
|
61
69
|
fstype?: string;
|
|
62
|
-
name?: string
|
|
63
|
-
} & {
|
|
64
|
-
uuid?: string;
|
|
70
|
+
name?: string;
|
|
65
71
|
size?: number;
|
|
72
|
+
uuid?: string | undefined;
|
|
73
|
+
mountpoint?: string | undefined;
|
|
74
|
+
} & {
|
|
75
|
+
source?: string;
|
|
66
76
|
fstype?: string;
|
|
67
|
-
name?: string
|
|
68
|
-
} & { [K in Exclude<keyof I["umounted"][number], keyof RemovableFilesystemPartion>]: never; })[] & { [K_1 in Exclude<keyof I["umounted"], keyof {
|
|
69
|
-
uuid?: string;
|
|
77
|
+
name?: string;
|
|
70
78
|
size?: number;
|
|
79
|
+
uuid?: string | undefined;
|
|
80
|
+
mountpoint?: string | undefined;
|
|
81
|
+
} & { [K in Exclude<keyof I["umounted"][number], keyof Filesystem>]: never; })[] & { [K_1 in Exclude<keyof I["umounted"], keyof {
|
|
82
|
+
source?: string;
|
|
71
83
|
fstype?: string;
|
|
72
|
-
name?: string
|
|
84
|
+
name?: string;
|
|
85
|
+
size?: number;
|
|
86
|
+
uuid?: string | undefined;
|
|
87
|
+
mountpoint?: string | undefined;
|
|
73
88
|
}[]>]: never; };
|
|
74
89
|
mounted?: {
|
|
75
|
-
|
|
76
|
-
size?: number;
|
|
90
|
+
source?: string;
|
|
77
91
|
fstype?: string;
|
|
78
|
-
name?: string
|
|
79
|
-
}[] & ({
|
|
80
|
-
uuid?: string;
|
|
92
|
+
name?: string;
|
|
81
93
|
size?: number;
|
|
94
|
+
uuid?: string | undefined;
|
|
95
|
+
mountpoint?: string | undefined;
|
|
96
|
+
}[] & ({
|
|
97
|
+
source?: string;
|
|
82
98
|
fstype?: string;
|
|
83
|
-
name?: string
|
|
84
|
-
} & {
|
|
85
|
-
uuid?: string;
|
|
99
|
+
name?: string;
|
|
86
100
|
size?: number;
|
|
101
|
+
uuid?: string | undefined;
|
|
102
|
+
mountpoint?: string | undefined;
|
|
103
|
+
} & {
|
|
104
|
+
source?: string;
|
|
87
105
|
fstype?: string;
|
|
88
|
-
name?: string
|
|
89
|
-
} & { [K_2 in Exclude<keyof I["mounted"][number], keyof RemovableFilesystemPartion>]: never; })[] & { [K_3 in Exclude<keyof I["mounted"], keyof {
|
|
90
|
-
uuid?: string;
|
|
106
|
+
name?: string;
|
|
91
107
|
size?: number;
|
|
108
|
+
uuid?: string | undefined;
|
|
109
|
+
mountpoint?: string | undefined;
|
|
110
|
+
} & { [K_2 in Exclude<keyof I["mounted"][number], keyof Filesystem>]: never; })[] & { [K_3 in Exclude<keyof I["mounted"], keyof {
|
|
111
|
+
source?: string;
|
|
92
112
|
fstype?: string;
|
|
93
|
-
name?: string
|
|
113
|
+
name?: string;
|
|
114
|
+
size?: number;
|
|
115
|
+
uuid?: string | undefined;
|
|
116
|
+
mountpoint?: string | undefined;
|
|
94
117
|
}[]>]: never; };
|
|
95
|
-
} & { [K_4 in Exclude<keyof I, keyof
|
|
118
|
+
} & { [K_4 in Exclude<keyof I, keyof ListFilesystemsReply>]: never; }>(object: I): ListFilesystemsReply;
|
|
96
119
|
};
|
|
97
|
-
export declare const
|
|
98
|
-
encode(message:
|
|
99
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
100
|
-
fromJSON(object: any):
|
|
101
|
-
toJSON(message:
|
|
120
|
+
export declare const Filesystem: {
|
|
121
|
+
encode(message: Filesystem, writer?: _m0.Writer): _m0.Writer;
|
|
122
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Filesystem;
|
|
123
|
+
fromJSON(object: any): Filesystem;
|
|
124
|
+
toJSON(message: Filesystem): unknown;
|
|
102
125
|
fromPartial<I extends {
|
|
103
|
-
|
|
104
|
-
size?: number;
|
|
126
|
+
source?: string;
|
|
105
127
|
fstype?: string;
|
|
106
|
-
name?: string
|
|
107
|
-
} & {
|
|
108
|
-
uuid?: string;
|
|
128
|
+
name?: string;
|
|
109
129
|
size?: number;
|
|
130
|
+
uuid?: string | undefined;
|
|
131
|
+
mountpoint?: string | undefined;
|
|
132
|
+
} & {
|
|
133
|
+
source?: string;
|
|
110
134
|
fstype?: string;
|
|
111
|
-
name?: string
|
|
112
|
-
|
|
135
|
+
name?: string;
|
|
136
|
+
size?: number;
|
|
137
|
+
uuid?: string | undefined;
|
|
138
|
+
mountpoint?: string | undefined;
|
|
139
|
+
} & { [K in Exclude<keyof I, keyof Filesystem>]: never; }>(object: I): Filesystem;
|
|
113
140
|
};
|
|
114
|
-
export declare const
|
|
115
|
-
encode(message:
|
|
116
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
117
|
-
fromJSON(object: any):
|
|
118
|
-
toJSON(message:
|
|
141
|
+
export declare const MountDiskRequest: {
|
|
142
|
+
encode(message: MountDiskRequest, writer?: _m0.Writer): _m0.Writer;
|
|
143
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MountDiskRequest;
|
|
144
|
+
fromJSON(object: any): MountDiskRequest;
|
|
145
|
+
toJSON(message: MountDiskRequest): unknown;
|
|
119
146
|
fromPartial<I extends {
|
|
120
147
|
uuid?: string;
|
|
121
148
|
} & {
|
|
122
149
|
uuid?: string;
|
|
123
|
-
} & { [K in Exclude<keyof I, "uuid">]: never; }>(object: I):
|
|
124
|
-
};
|
|
125
|
-
export declare const UmountFilesystemRequest: {
|
|
126
|
-
encode(message: UmountFilesystemRequest, writer?: _m0.Writer): _m0.Writer;
|
|
127
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): UmountFilesystemRequest;
|
|
128
|
-
fromJSON(object: any): UmountFilesystemRequest;
|
|
129
|
-
toJSON(message: UmountFilesystemRequest): unknown;
|
|
130
|
-
fromPartial<I extends {
|
|
131
|
-
uuid?: string | undefined;
|
|
132
|
-
mountPoint?: string | undefined;
|
|
133
|
-
} & {
|
|
134
|
-
uuid?: string | undefined;
|
|
135
|
-
mountPoint?: string | undefined;
|
|
136
|
-
} & { [K in Exclude<keyof I, keyof UmountFilesystemRequest>]: never; }>(object: I): UmountFilesystemRequest;
|
|
150
|
+
} & { [K in Exclude<keyof I, "uuid">]: never; }>(object: I): MountDiskRequest;
|
|
137
151
|
};
|
|
138
152
|
export declare const MountWebDavRequest: {
|
|
139
153
|
encode(message: MountWebDavRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -152,33 +166,45 @@ export declare const MountWebDavRequest: {
|
|
|
152
166
|
password?: string;
|
|
153
167
|
} & { [K in Exclude<keyof I, keyof MountWebDavRequest>]: never; }>(object: I): MountWebDavRequest;
|
|
154
168
|
};
|
|
169
|
+
export declare const UmountFilesystemRequest: {
|
|
170
|
+
encode(message: UmountFilesystemRequest, writer?: _m0.Writer): _m0.Writer;
|
|
171
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UmountFilesystemRequest;
|
|
172
|
+
fromJSON(object: any): UmountFilesystemRequest;
|
|
173
|
+
toJSON(message: UmountFilesystemRequest): unknown;
|
|
174
|
+
fromPartial<I extends {
|
|
175
|
+
uuid?: string | undefined;
|
|
176
|
+
mountpoint?: string | undefined;
|
|
177
|
+
} & {
|
|
178
|
+
uuid?: string | undefined;
|
|
179
|
+
mountpoint?: string | undefined;
|
|
180
|
+
} & { [K in Exclude<keyof I, keyof UmountFilesystemRequest>]: never; }>(object: I): UmountFilesystemRequest;
|
|
181
|
+
};
|
|
155
182
|
/** 外围设备管理服务 */
|
|
156
183
|
export interface PeripheralDeviceService {
|
|
157
|
-
/**
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
/** 挂载/卸载特定移动磁盘的某个分区到 $APPID/lzcapp/run/mnt/media/$partion_uuid目录下 */
|
|
163
|
-
MountFilesystem(request: DeepPartial<MountFilesystemRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
164
|
-
UmountFilesystem(request: DeepPartial<UmountFilesystemRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
184
|
+
/** 列出当前盒子已挂载和可以挂载但未挂载的文件系统 */
|
|
185
|
+
ListFilesystems(request: DeepPartial<Empty>, metadata?: grpc.Metadata): Promise<ListFilesystemsReply>;
|
|
186
|
+
/** 挂载/卸载特定移动磁盘的某个分区到 $APPID/lzcapp/run/mnt/media/$partition_uuid 目录上 */
|
|
187
|
+
MountDisk(request: DeepPartial<MountDiskRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
188
|
+
/** 挂载 WebDav 服务到 $APPID/lzcapp/run/mnt/home 目录下,具体路径可以指定 */
|
|
165
189
|
MountWebDav(request: DeepPartial<MountWebDavRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
190
|
+
/** 通过 uuid 或 mountpoint 卸载文件系统 */
|
|
191
|
+
UmountFilesystem(request: DeepPartial<UmountFilesystemRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
166
192
|
}
|
|
167
193
|
export declare class PeripheralDeviceServiceClientImpl implements PeripheralDeviceService {
|
|
168
194
|
private readonly rpc;
|
|
169
195
|
constructor(rpc: Rpc);
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
UmountFilesystem(request: DeepPartial<UmountFilesystemRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
196
|
+
ListFilesystems(request: DeepPartial<Empty>, metadata?: grpc.Metadata): Promise<ListFilesystemsReply>;
|
|
197
|
+
MountDisk(request: DeepPartial<MountDiskRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
173
198
|
MountWebDav(request: DeepPartial<MountWebDavRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
199
|
+
UmountFilesystem(request: DeepPartial<UmountFilesystemRequest>, metadata?: grpc.Metadata): Promise<Empty>;
|
|
174
200
|
}
|
|
175
201
|
export declare const PeripheralDeviceServiceDesc: {
|
|
176
202
|
serviceName: string;
|
|
177
203
|
};
|
|
178
|
-
export declare const
|
|
179
|
-
export declare const
|
|
180
|
-
export declare const PeripheralDeviceServiceUmountFilesystemDesc: UnaryMethodDefinitionish;
|
|
204
|
+
export declare const PeripheralDeviceServiceListFilesystemsDesc: UnaryMethodDefinitionish;
|
|
205
|
+
export declare const PeripheralDeviceServiceMountDiskDesc: UnaryMethodDefinitionish;
|
|
181
206
|
export declare const PeripheralDeviceServiceMountWebDavDesc: UnaryMethodDefinitionish;
|
|
207
|
+
export declare const PeripheralDeviceServiceUmountFilesystemDesc: UnaryMethodDefinitionish;
|
|
182
208
|
interface UnaryMethodDefinitionishR extends grpc.UnaryMethodDefinition<any, any> {
|
|
183
209
|
requestStream: any;
|
|
184
210
|
responseStream: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"peripheral_device.d.ts","sourceRoot":"","sources":["../../common/peripheral_device.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AAGjD,OAAO,GAAG,MAAM,oBAAoB,CAAC;AAErC,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"peripheral_device.d.ts","sourceRoot":"","sources":["../../common/peripheral_device.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AAGjD,OAAO,GAAG,MAAM,oBAAoB,CAAC;AAErC,MAAM,WAAW,oBAAoB;IACnC,oBAAoB;IACpB,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,qBAAqB;IACrB,OAAO,EAAE,UAAU,EAAE,CAAC;CACvB;AAED,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,0BAA0B;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,oEAAoE;IACpE,IAAI,EAAE,MAAM,CAAC;IACb,yBAAyB;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,kDAAkD;IAClD,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,wDAAwD;IACxD,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACjC;AAED,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,kBAAkB;IACjC,GAAG,EAAE,MAAM,CAAC;IACZ,mCAAmC;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;CAChC;AAMD,eAAO,MAAM,oBAAoB;oBAEpB,oBAAoB,WACrB,IAAI,MAAM,GACjB,IAAI,MAAM;kBAWJ,IAAI,MAAM,GAAG,UAAU,WACrB,MAAM,GACd,oBAAoB;qBAqBN,GAAG,GAAG,oBAAoB;oBAW3B,oBAAoB,GAAG,OAAO;;;qBAnFtC,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;qBAVvB,MAAM;qBAEN,MAAM;mBAER,MAAM;mBAEN,MAAM;mBAEL,MAAM,GAAG,SAAS;yBAEZ,MAAM,GAAG,SAAS;;uFA8F5B,oBAAoB;CAQxB,CAAC;AAaF,eAAO,MAAM,UAAU;oBAEV,UAAU,WACX,IAAI,MAAM,GACjB,IAAI,MAAM;kBAsBC,IAAI,MAAM,GAAG,UAAU,WAAW,MAAM,GAAG,UAAU;qBAiClD,GAAG,GAAG,UAAU;oBAajB,UAAU,GAAG,OAAO;;iBArM5B,MAAM;iBAEN,MAAM;eAER,MAAM;eAEN,MAAM;eAEL,MAAM,GAAG,SAAS;qBAEZ,MAAM,GAAG,SAAS;;iBAVvB,MAAM;iBAEN,MAAM;eAER,MAAM;eAEN,MAAM;eAEL,MAAM,GAAG,SAAS;qBAEZ,MAAM,GAAG,SAAS;2EAwM5B,UAAU;CAUd,CAAC;AAMF,eAAO,MAAM,gBAAgB;oBAEhB,gBAAgB,WACjB,IAAI,MAAM,GACjB,IAAI,MAAM;kBAOC,IAAI,MAAM,GAAG,UAAU,WAAW,MAAM,GAAG,gBAAgB;qBAkBxD,GAAG,GAAG,gBAAgB;oBAMvB,gBAAgB,GAAG,OAAO;;eAvPpC,MAAM;;eAAN,MAAM;iEA+PT,gBAAgB;CAKpB,CAAC;AAMF,eAAO,MAAM,kBAAkB;oBAElB,kBAAkB,WACnB,IAAI,MAAM,GACjB,IAAI,MAAM;kBAgBC,IAAI,MAAM,GAAG,UAAU,WAAW,MAAM,GAAG,kBAAkB;qBA2B1D,GAAG,GAAG,kBAAkB;oBASzB,kBAAkB,GAAG,OAAO;;cA9TvC,MAAM;qBAEC,MAAM;mBACR,MAAM;mBACN,MAAM;;cAJX,MAAM;qBAEC,MAAM;mBACR,MAAM;mBACN,MAAM;mFAqUb,kBAAkB;CAQtB,CAAC;AAMF,eAAO,MAAM,uBAAuB;oBAEvB,uBAAuB,WACxB,IAAI,MAAM,GACjB,IAAI,MAAM;kBAWJ,IAAI,MAAM,GAAG,UAAU,WACrB,MAAM,GACd,uBAAuB;qBAqBT,GAAG,GAAG,uBAAuB;oBAS9B,uBAAuB,GAAG,OAAO;;eA9X3C,MAAM,GAAG,SAAS;qBACZ,MAAM,GAAG,SAAS;;eADxB,MAAM,GAAG,SAAS;qBACZ,MAAM,GAAG,SAAS;wFAsY3B,uBAAuB;CAM3B,CAAC;AAEF,eAAe;AACf,MAAM,WAAW,uBAAuB;IACtC,8BAA8B;IAC9B,eAAe,CACb,OAAO,EAAE,WAAW,CAAC,KAAK,CAAC,EAC3B,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,oBAAoB,CAAC,CAAC;IACjC,wEAAwE;IACxE,SAAS,CACP,OAAO,EAAE,WAAW,CAAC,gBAAgB,CAAC,EACtC,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,KAAK,CAAC,CAAC;IAClB,4DAA4D;IAC5D,WAAW,CACT,OAAO,EAAE,WAAW,CAAC,kBAAkB,CAAC,EACxC,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,KAAK,CAAC,CAAC;IAClB,kCAAkC;IAClC,gBAAgB,CACd,OAAO,EAAE,WAAW,CAAC,uBAAuB,CAAC,EAC7C,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,KAAK,CAAC,CAAC;CACnB;AAED,qBAAa,iCACX,YAAW,uBAAuB;IAElC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAM;gBAEd,GAAG,EAAE,GAAG;IAQpB,eAAe,CACb,OAAO,EAAE,WAAW,CAAC,KAAK,CAAC,EAC3B,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,oBAAoB,CAAC;IAQhC,SAAS,CACP,OAAO,EAAE,WAAW,CAAC,gBAAgB,CAAC,EACtC,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,KAAK,CAAC;IAQjB,WAAW,CACT,OAAO,EAAE,WAAW,CAAC,kBAAkB,CAAC,EACxC,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,KAAK,CAAC;IAQjB,gBAAgB,CACd,OAAO,EAAE,WAAW,CAAC,uBAAuB,CAAC,EAC7C,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,GACvB,OAAO,CAAC,KAAK,CAAC;CAOlB;AAED,eAAO,MAAM,2BAA2B;;CAEvC,CAAC;AAEF,eAAO,MAAM,0CAA0C,EAAE,wBAqBtD,CAAC;AAEJ,eAAO,MAAM,oCAAoC,EAAE,wBAoBlD,CAAC;AAEF,eAAO,MAAM,sCAAsC,EAAE,wBAqBlD,CAAC;AAEJ,eAAO,MAAM,2CAA2C,EAAE,wBAqBvD,CAAC;AAEJ,UAAU,yBACR,SAAQ,IAAI,CAAC,qBAAqB,CAAC,GAAG,EAAE,GAAG,CAAC;IAC5C,aAAa,EAAE,GAAG,CAAC;IACnB,cAAc,EAAE,GAAG,CAAC;CACrB;AAED,aAAK,wBAAwB,GAAG,yBAAyB,CAAC;AAE1D,UAAU,GAAG;IACX,KAAK,CAAC,CAAC,SAAS,wBAAwB,EACtC,UAAU,EAAE,CAAC,EACb,OAAO,EAAE,GAAG,EACZ,QAAQ,EAAE,IAAI,CAAC,QAAQ,GAAG,SAAS,GAClC,OAAO,CAAC,GAAG,CAAC,CAAC;CACjB;AAED,qBAAa,WAAW;IACtB,OAAO,CAAC,IAAI,CAAS;IACrB,OAAO,CAAC,OAAO,CAMb;gBAGA,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE;QACP,SAAS,CAAC,EAAE,IAAI,CAAC,gBAAgB,CAAC;QAElC,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,QAAQ,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC;QACzB,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAC;KAC/B;IAMH,KAAK,CAAC,CAAC,SAAS,wBAAwB,EACtC,UAAU,EAAE,CAAC,EACb,QAAQ,EAAE,GAAG,EACb,QAAQ,EAAE,IAAI,CAAC,QAAQ,GAAG,SAAS,GAClC,OAAO,CAAC,GAAG,CAAC;CA+BhB;AAaD,aAAK,OAAO,GACR,IAAI,GACJ,QAAQ,GACR,UAAU,GACV,MAAM,GACN,MAAM,GACN,OAAO,GACP,SAAS,CAAC;AAEd,aAAK,WAAW,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,GACnC,CAAC,GACD,CAAC,SAAS,KAAK,CAAC,MAAM,CAAC,CAAC,GACxB,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,GACrB,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,CAAC,GAChC,aAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,GAC7B,CAAC,SAAS,EAAE,GACZ;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GACtC,OAAO,CAAC,CAAC,CAAC,CAAC;AAyBf,qBAAa,YAAa,SAAQ,KAAK;IAG5B,IAAI,EAAE,IAAI,CAAC,IAAI;IACf,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBAF9B,OAAO,EAAE,MAAM,EACR,IAAI,EAAE,IAAI,CAAC,IAAI,EACf,QAAQ,EAAE,IAAI,CAAC,QAAQ;CAIjC"}
|