@misofm/sdk 0.12.4 → 0.13.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/README.md +48 -1
- package/dist/cover.d.ts +2 -2
- package/dist/cover.d.ts.map +1 -1
- package/dist/cover.js +5 -2
- package/dist/cover.js.map +1 -1
- package/dist/credits.d.ts +9 -9
- package/dist/credits.d.ts.map +1 -1
- package/dist/credits.js +8 -5
- package/dist/credits.js.map +1 -1
- package/dist/execute.d.ts +13 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +8 -2
- package/dist/execute.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/publication.d.ts +207 -0
- package/dist/publication.d.ts.map +1 -0
- package/dist/publication.js +666 -0
- package/dist/publication.js.map +1 -0
- package/dist/recording-extensions.d.ts +2 -2
- package/dist/recording-extensions.d.ts.map +1 -1
- package/dist/recording-extensions.js +8 -5
- package/dist/recording-extensions.js.map +1 -1
- package/dist/release-extensions.d.ts +2 -2
- package/dist/release-extensions.d.ts.map +1 -1
- package/dist/release-extensions.js +10 -7
- package/dist/release-extensions.js.map +1 -1
- package/dist/vault.d.ts +7 -1
- package/dist/vault.d.ts.map +1 -1
- package/dist/vault.js +8 -0
- package/dist/vault.js.map +1 -1
- package/package.json +5 -1
- package/src/cover.ts +9 -4
- package/src/credits.ts +18 -14
- package/src/execute.ts +17 -4
- package/src/index.ts +1 -0
- package/src/publication.ts +949 -0
- package/src/recording-extensions.ts +12 -8
- package/src/release-extensions.ts +14 -9
- package/src/vault.ts +20 -2
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
import type { MisoPlatformDeployment } from "./deployments.ts";
|
|
2
|
+
import type { TxThunk } from "./transactions.ts";
|
|
3
|
+
import { type ShareRecipient } from "./transactions.ts";
|
|
4
|
+
import { type CompositionRole, type RecordingRole, type ReleaseRole } from "./credits.ts";
|
|
5
|
+
import { type DspLink } from "./release-extensions.ts";
|
|
6
|
+
import { type AdminCapAuthority } from "./vault.ts";
|
|
7
|
+
import { type ListingPrice, type PressingRunState } from "./pressing.ts";
|
|
8
|
+
import { type PlatformExecResult } from "./execute.ts";
|
|
9
|
+
export declare const MAX_ATOMIC_PUBLICATION_COMMANDS = 900;
|
|
10
|
+
export declare const MAX_ATOMIC_PUBLICATION_INPUTS = 2048;
|
|
11
|
+
export interface PublicationCustody {
|
|
12
|
+
readonly kind: "direct" | "vault";
|
|
13
|
+
readonly owner: string;
|
|
14
|
+
}
|
|
15
|
+
export type PublicationParty = {
|
|
16
|
+
readonly ref: string;
|
|
17
|
+
readonly id: string;
|
|
18
|
+
} | {
|
|
19
|
+
readonly ref: string;
|
|
20
|
+
readonly create: "individual" | "group";
|
|
21
|
+
readonly name: string;
|
|
22
|
+
readonly custody: PublicationCustody;
|
|
23
|
+
/** Defaults to true with Vault custody. */
|
|
24
|
+
readonly installWallet?: boolean;
|
|
25
|
+
};
|
|
26
|
+
export interface PublicationCompositionCredit {
|
|
27
|
+
readonly party: string;
|
|
28
|
+
readonly displayName: string;
|
|
29
|
+
readonly roles: CompositionRole[];
|
|
30
|
+
}
|
|
31
|
+
export interface PublicationRecordingCredit {
|
|
32
|
+
readonly party: string;
|
|
33
|
+
readonly displayName: string;
|
|
34
|
+
readonly roles: RecordingRole[];
|
|
35
|
+
readonly primaryArtist?: boolean;
|
|
36
|
+
}
|
|
37
|
+
export interface PublicationReleaseCredit {
|
|
38
|
+
readonly party: string;
|
|
39
|
+
readonly displayName: string;
|
|
40
|
+
readonly role: ReleaseRole;
|
|
41
|
+
}
|
|
42
|
+
export interface PublicationComposition {
|
|
43
|
+
readonly ref: string;
|
|
44
|
+
readonly shareType: string;
|
|
45
|
+
readonly shareCurrencyId: string;
|
|
46
|
+
readonly shareTreasuryCapId: string;
|
|
47
|
+
readonly title: string;
|
|
48
|
+
readonly royaltyRateBps: number;
|
|
49
|
+
readonly shareRecipients: ShareRecipient[];
|
|
50
|
+
readonly custody: PublicationCustody;
|
|
51
|
+
readonly credits?: PublicationCompositionCredit[];
|
|
52
|
+
readonly royaltyPool?: {
|
|
53
|
+
readonly currencyType: string;
|
|
54
|
+
};
|
|
55
|
+
readonly routedStake?: boolean;
|
|
56
|
+
}
|
|
57
|
+
type PublicationRecordingParent = {
|
|
58
|
+
readonly parentCompositionIndex: number;
|
|
59
|
+
readonly parentCompositionId?: never;
|
|
60
|
+
} | {
|
|
61
|
+
readonly parentCompositionIndex?: never;
|
|
62
|
+
readonly parentCompositionId: string;
|
|
63
|
+
};
|
|
64
|
+
export type PublicationRecordingLanguages = {
|
|
65
|
+
readonly kind: "instrumental";
|
|
66
|
+
} | {
|
|
67
|
+
readonly kind: "languages";
|
|
68
|
+
readonly codes: string[];
|
|
69
|
+
};
|
|
70
|
+
export type PublicationRecording = PublicationRecordingParent & {
|
|
71
|
+
readonly ref: string;
|
|
72
|
+
readonly shareType: string;
|
|
73
|
+
readonly shareCurrencyId: string;
|
|
74
|
+
readonly shareTreasuryCapId: string;
|
|
75
|
+
readonly compositionShareType: string;
|
|
76
|
+
readonly shareRecipients: ShareRecipient[];
|
|
77
|
+
readonly custody: PublicationCustody;
|
|
78
|
+
readonly credits?: PublicationRecordingCredit[];
|
|
79
|
+
readonly royaltyPool?: {
|
|
80
|
+
readonly currencyType: string;
|
|
81
|
+
};
|
|
82
|
+
readonly advisory?: "Explicit" | "NotExplicit" | "Cleaned";
|
|
83
|
+
readonly languages?: PublicationRecordingLanguages;
|
|
84
|
+
readonly masterReferenceBlobId?: bigint | string;
|
|
85
|
+
readonly previewBlobId?: bigint | string;
|
|
86
|
+
};
|
|
87
|
+
export interface PublicationFreshTrack {
|
|
88
|
+
readonly recordingIndex: number;
|
|
89
|
+
readonly splitBps: number;
|
|
90
|
+
}
|
|
91
|
+
export interface PublicationExistingTrack {
|
|
92
|
+
readonly recordingId: string;
|
|
93
|
+
readonly recordingShareType: string;
|
|
94
|
+
readonly compositionShareType: string;
|
|
95
|
+
readonly splitBps: number;
|
|
96
|
+
readonly authority: AdminCapAuthority;
|
|
97
|
+
}
|
|
98
|
+
export type PublicationTrack = PublicationFreshTrack | PublicationExistingTrack;
|
|
99
|
+
export interface PublicationRelease {
|
|
100
|
+
readonly title: string;
|
|
101
|
+
readonly nonce: string;
|
|
102
|
+
readonly tracks: PublicationTrack[];
|
|
103
|
+
readonly custody: PublicationCustody;
|
|
104
|
+
readonly credits?: PublicationReleaseCredit[];
|
|
105
|
+
readonly kind?: string;
|
|
106
|
+
readonly description?: string;
|
|
107
|
+
readonly genres?: {
|
|
108
|
+
readonly primaryGenreId: string;
|
|
109
|
+
readonly secondaryGenreIds?: string[];
|
|
110
|
+
readonly tracks?: {
|
|
111
|
+
readonly trackIndex: number;
|
|
112
|
+
readonly genreId: string;
|
|
113
|
+
}[];
|
|
114
|
+
};
|
|
115
|
+
readonly dspLinks?: {
|
|
116
|
+
readonly release?: DspLink[];
|
|
117
|
+
readonly tracks?: {
|
|
118
|
+
readonly trackIndex: number;
|
|
119
|
+
readonly link: DspLink;
|
|
120
|
+
}[];
|
|
121
|
+
};
|
|
122
|
+
readonly cover?: {
|
|
123
|
+
readonly stillBlobId?: bigint | string;
|
|
124
|
+
readonly animatedBlobId?: bigint | string;
|
|
125
|
+
readonly tracks?: {
|
|
126
|
+
readonly trackIndex: number;
|
|
127
|
+
readonly stillBlobId: bigint | string;
|
|
128
|
+
readonly animatedBlobId?: bigint | string;
|
|
129
|
+
}[];
|
|
130
|
+
};
|
|
131
|
+
readonly revenueDistribution?: boolean;
|
|
132
|
+
}
|
|
133
|
+
export interface PublicationPressing {
|
|
134
|
+
readonly state?: PressingRunState;
|
|
135
|
+
readonly listings: {
|
|
136
|
+
readonly currencyType: string;
|
|
137
|
+
readonly price: ListingPrice;
|
|
138
|
+
readonly enabled?: boolean;
|
|
139
|
+
}[];
|
|
140
|
+
readonly custody: PublicationCustody;
|
|
141
|
+
}
|
|
142
|
+
export interface AtomicPublicationParams {
|
|
143
|
+
readonly deployment: MisoPlatformDeployment;
|
|
144
|
+
readonly parties: PublicationParty[];
|
|
145
|
+
readonly compositions: PublicationComposition[];
|
|
146
|
+
readonly recordings: PublicationRecording[];
|
|
147
|
+
readonly release?: PublicationRelease;
|
|
148
|
+
readonly pressing?: PublicationPressing;
|
|
149
|
+
}
|
|
150
|
+
/** Build the complete post-share catalog graph as one atomic PTB. */
|
|
151
|
+
export declare function publishAtomicCatalog(p: AtomicPublicationParams): TxThunk;
|
|
152
|
+
export interface AtomicPublicationInspection {
|
|
153
|
+
commands: number;
|
|
154
|
+
inputs: number;
|
|
155
|
+
}
|
|
156
|
+
/** Assemble without RPC access so callers can fail before publishing share packages. */
|
|
157
|
+
export declare function inspectAtomicPublication(p: AtomicPublicationParams): AtomicPublicationInspection;
|
|
158
|
+
export declare function assertAtomicPublicationBounds(p: AtomicPublicationParams): AtomicPublicationInspection;
|
|
159
|
+
export type PublicationAuthorityOut = {
|
|
160
|
+
kind: "direct";
|
|
161
|
+
adminCapId: string;
|
|
162
|
+
} | {
|
|
163
|
+
kind: "vault";
|
|
164
|
+
vaultId: string;
|
|
165
|
+
vaultAdminCapId: string;
|
|
166
|
+
capType: string;
|
|
167
|
+
vaultPackageId: string;
|
|
168
|
+
};
|
|
169
|
+
export interface AtomicPublicationResult {
|
|
170
|
+
digest: string;
|
|
171
|
+
gasUsed: number;
|
|
172
|
+
parties: Record<string, {
|
|
173
|
+
id: string;
|
|
174
|
+
adminCapId: string;
|
|
175
|
+
created: boolean;
|
|
176
|
+
authority?: PublicationAuthorityOut;
|
|
177
|
+
}>;
|
|
178
|
+
compositions: Record<string, {
|
|
179
|
+
id: string;
|
|
180
|
+
adminCapId: string;
|
|
181
|
+
shareType: string;
|
|
182
|
+
authority: PublicationAuthorityOut;
|
|
183
|
+
royaltyPoolId?: string;
|
|
184
|
+
}>;
|
|
185
|
+
recordings: Record<string, {
|
|
186
|
+
id: string;
|
|
187
|
+
adminCapId: string;
|
|
188
|
+
shareType: string;
|
|
189
|
+
compositionShareType: string;
|
|
190
|
+
authority: PublicationAuthorityOut;
|
|
191
|
+
royaltyPoolId?: string;
|
|
192
|
+
}>;
|
|
193
|
+
release?: {
|
|
194
|
+
id: string;
|
|
195
|
+
adminCapId: string;
|
|
196
|
+
authority: PublicationAuthorityOut;
|
|
197
|
+
};
|
|
198
|
+
pressing?: {
|
|
199
|
+
id: string;
|
|
200
|
+
adminCapId: string;
|
|
201
|
+
authority: PublicationAuthorityOut;
|
|
202
|
+
};
|
|
203
|
+
}
|
|
204
|
+
/** Parse one atomic publication using type identity plus lifecycle event payloads. */
|
|
205
|
+
export declare function parseAtomicPublicationResult(p: AtomicPublicationParams, result: PlatformExecResult): AtomicPublicationResult;
|
|
206
|
+
export {};
|
|
207
|
+
//# sourceMappingURL=publication.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publication.d.ts","sourceRoot":"","sources":["../src/publication.ts"],"names":[],"mappings":"AAsBA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAC/D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAyC,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAC/F,OAAO,EAKL,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,WAAW,EACjB,MAAM,cAAc,CAAC;AAQtB,OAAO,EAKL,KAAK,OAAO,EACb,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAaL,KAAK,iBAAiB,EAEvB,MAAM,YAAY,CAAC;AACpB,OAAO,EAGL,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACtB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAwC,KAAK,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAM7F,eAAO,MAAM,+BAA+B,MAAM,CAAC;AACnD,eAAO,MAAM,6BAA6B,OAAO,CAAC;AAElD,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC;IAClC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,MAAM,gBAAgB,GACxB;IAAE,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;CAAE,GAC7C;IACE,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CAAC;IACxC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAC;IACrC,2CAA2C;IAC3C,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC;CAClC,CAAC;AAEN,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,KAAK,EAAE,eAAe,EAAE,CAAC;CACnC;AAED,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,KAAK,EAAE,aAAa,EAAE,CAAC;IAChC,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC;CAClC;AAED,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC;CAC5B;AAED,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,kBAAkB,EAAE,MAAM,CAAC;IACpC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,eAAe,EAAE,cAAc,EAAE,CAAC;IAC3C,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAC;IACrC,QAAQ,CAAC,OAAO,CAAC,EAAE,4BAA4B,EAAE,CAAC;IAClD,QAAQ,CAAC,WAAW,CAAC,EAAE;QAAE,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;KAAE,CAAC;IACzD,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC;CAChC;AAED,KAAK,0BAA0B,GAC3B;IAAE,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,KAAK,CAAA;CAAE,GACjF;IAAE,QAAQ,CAAC,sBAAsB,CAAC,EAAE,KAAK,CAAC;IAAC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;CAAE,CAAC;AAEtF,MAAM,MAAM,6BAA6B,GACrC;IAAE,QAAQ,CAAC,IAAI,EAAE,cAAc,CAAA;CAAE,GACjC;IAAE,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC;IAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC;AAE7D,MAAM,MAAM,oBAAoB,GAAG,0BAA0B,GAAG;IAC9D,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,kBAAkB,EAAE,MAAM,CAAC;IACpC,QAAQ,CAAC,oBAAoB,EAAE,MAAM,CAAC;IACtC,QAAQ,CAAC,eAAe,EAAE,cAAc,EAAE,CAAC;IAC3C,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAC;IACrC,QAAQ,CAAC,OAAO,CAAC,EAAE,0BAA0B,EAAE,CAAC;IAChD,QAAQ,CAAC,WAAW,CAAC,EAAE;QAAE,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;KAAE,CAAC;IACzD,QAAQ,CAAC,QAAQ,CAAC,EAAE,UAAU,GAAG,aAAa,GAAG,SAAS,CAAC;IAC3D,QAAQ,CAAC,SAAS,CAAC,EAAE,6BAA6B,CAAC;IACnD,QAAQ,CAAC,qBAAqB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACjD,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC1C,CAAC;AAEF,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,kBAAkB,EAAE,MAAM,CAAC;IACpC,QAAQ,CAAC,oBAAoB,EAAE,MAAM,CAAC;IACtC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,SAAS,EAAE,iBAAiB,CAAC;CACvC;AAED,MAAM,MAAM,gBAAgB,GAAG,qBAAqB,GAAG,wBAAwB,CAAC;AAEhF,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,MAAM,EAAE,gBAAgB,EAAE,CAAC;IACpC,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAC;IACrC,QAAQ,CAAC,OAAO,CAAC,EAAE,wBAAwB,EAAE,CAAC;IAC9C,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,MAAM,CAAC,EAAE;QAChB,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;QAChC,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAC;QACtC,QAAQ,CAAC,MAAM,CAAC,EAAE;YAAE,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;YAAC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;SAAE,EAAE,CAAC;KAC/E,CAAC;IACF,QAAQ,CAAC,QAAQ,CAAC,EAAE;QAClB,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC;QAC7B,QAAQ,CAAC,MAAM,CAAC,EAAE;YAAE,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;YAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAA;SAAE,EAAE,CAAC;KAC7E,CAAC;IACF,QAAQ,CAAC,KAAK,CAAC,EAAE;QACf,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QACvC,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QAC1C,QAAQ,CAAC,MAAM,CAAC,EAAE;YAChB,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;YAC5B,QAAQ,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAAC;YACtC,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;SAC3C,EAAE,CAAC;KACL,CAAC;IACF,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC;CACxC;AAED,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC;IAClC,QAAQ,CAAC,QAAQ,EAAE;QACjB,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;QAC9B,QAAQ,CAAC,KAAK,EAAE,YAAY,CAAC;QAC7B,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC;KAC5B,EAAE,CAAC;IACJ,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAC;CACtC;AAED,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,UAAU,EAAE,sBAAsB,CAAC;IAC5C,QAAQ,CAAC,OAAO,EAAE,gBAAgB,EAAE,CAAC;IACrC,QAAQ,CAAC,YAAY,EAAE,sBAAsB,EAAE,CAAC;IAChD,QAAQ,CAAC,UAAU,EAAE,oBAAoB,EAAE,CAAC;IAC5C,QAAQ,CAAC,OAAO,CAAC,EAAE,kBAAkB,CAAC;IACtC,QAAQ,CAAC,QAAQ,CAAC,EAAE,mBAAmB,CAAC;CACzC;AAyPD,qEAAqE;AACrE,wBAAgB,oBAAoB,CAAC,CAAC,EAAE,uBAAuB,GAAG,OAAO,CA6SxE;AAED,MAAM,WAAW,2BAA2B;IAC1C,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,wFAAwF;AACxF,wBAAgB,wBAAwB,CAAC,CAAC,EAAE,uBAAuB,GAAG,2BAA2B,CAKhG;AAED,wBAAgB,6BAA6B,CAAC,CAAC,EAAE,uBAAuB,GAAG,2BAA2B,CAerG;AAED,MAAM,MAAM,uBAAuB,GAC/B;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,GACtC;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,eAAe,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,cAAc,EAAE,MAAM,CAAA;CAAE,CAAC;AAEzG,MAAM,WAAW,uBAAuB;IACtC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,SAAS,CAAC,EAAE,uBAAuB,CAAA;KAAE,CAAC,CAAC;IACnH,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,uBAAuB,CAAC;QAAC,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAChJ,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,oBAAoB,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,uBAAuB,CAAC;QAAC,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC5K,OAAO,CAAC,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,uBAAuB,CAAA;KAAE,CAAC;IACjF,QAAQ,CAAC,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,uBAAuB,CAAA;KAAE,CAAC;CACnF;AA4CD,sFAAsF;AACtF,wBAAgB,4BAA4B,CAC1C,CAAC,EAAE,uBAAuB,EAC1B,MAAM,EAAE,kBAAkB,GACzB,uBAAuB,CA2FzB"}
|