@mohamedatia/fly-design-system 2.11.0 → 2.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.
@@ -1213,16 +1213,135 @@ declare class FlyRemoteRouter {
1213
1213
  * In embedded mode: push a real browser history entry (so back/forward work)
1214
1214
  * and update the internal signal synchronously.
1215
1215
  *
1216
- * The state object carries `flyRemoteUrl` so the popstate listener can
1217
- * restore the exact URL without relying on window.location.pathname (which
1218
- * could be the shell's route, not the remote's logical URL).
1216
+ * The browser address bar is written as the shell's **canonical deep-link
1217
+ * form** `<shell-path>?app=<appId>&route=<remote-url>` NOT the bare remote
1218
+ * URL. This is what makes a hard reload work: on reload the shell's
1219
+ * `DeepLinkService` captures `?app=&route=` in its APP_INITIALIZER, re-opens
1220
+ * this app, and replays the route through the pending-launch pipeline
1221
+ * (`ShellLauncherService.launch` → `FLYOS_LAUNCH_EVENT` / pending registry →
1222
+ * the remote's root applies `ctx.route`). Writing the bare remote URL (e.g.
1223
+ * `/trends/abc`) instead would leave a host-unroutable path in the bar — on
1224
+ * reload the shell router falls through to its `**` wildcard, redirects to
1225
+ * `/desktop`, and the deep link is silently lost. See
1226
+ * skills/cross-app-deep-linking.md.
1227
+ *
1228
+ * `flyRemoteUrl` is still stashed in the history state so the popstate
1229
+ * listener restores the exact remote URL for back/forward without re-parsing
1230
+ * the query string.
1219
1231
  */
1220
1232
  private _pushEmbedded;
1233
+ /**
1234
+ * Build the browser-address-bar URL for an embedded navigation: the shell's
1235
+ * current path plus the canonical `?app=&route=` deep-link query (the same
1236
+ * contract `DeepLinkService.captureFromCurrentUrl` parses on cold load).
1237
+ *
1238
+ * The path is left untouched — only the query string carries the remote's
1239
+ * logical route — so the shell's own Angular Router (anchored at e.g.
1240
+ * `/desktop`) is never handed a path it cannot match.
1241
+ *
1242
+ * Fallback: when `appId` is unknown (WINDOW_DATA not injected — the Native
1243
+ * Federation token-split case where only `__FLYOS_SHELL__` proves embedding)
1244
+ * we cannot build a shareable link, so we return the shell path query-less.
1245
+ * Back/forward still work via the `flyRemoteUrl` history state; only
1246
+ * reload-restore is unavailable — no regression over leaving the bar as-is.
1247
+ */
1248
+ private _buildEmbeddedHistoryUrl;
1221
1249
  private buildUrl;
1222
1250
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyRemoteRouter, never>;
1223
1251
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<FlyRemoteRouter>;
1224
1252
  }
1225
1253
 
1254
+ /**
1255
+ * A federated remote's current navigation context, as published to the shell.
1256
+ *
1257
+ * `params` are the remote's **resolved route params** (e.g. `{ id: 'abc' }` for a
1258
+ * `trends/:id` match) — the remote owns its route table, so it resolves these and
1259
+ * the shell never has to know the remote's route patterns.
1260
+ */
1261
+ interface FlyRemoteContext {
1262
+ /** Owning app id — matches the shell's app registry and `AgentCommandScope.appId`. */
1263
+ readonly appId: string;
1264
+ /** Logical remote URL, e.g. `/trends/abc`. Query/hash stripped by the publisher. */
1265
+ readonly url: string;
1266
+ /** `url` split into path segments, e.g. `['trends', 'abc']`. */
1267
+ readonly segments: readonly string[];
1268
+ /** Resolved route params, e.g. `{ id: 'abc' }`. Empty when no param route matched. */
1269
+ readonly params: Readonly<Record<string, string>>;
1270
+ }
1271
+ /**
1272
+ * Shared cross-bundle store key + sync event. **Public contract** — a remote that
1273
+ * cannot consume a DS new enough to back {@link FlyRemoteContextService.publish} on
1274
+ * `globalThis` itself may write this slot directly (same shape, keyed by appId) and
1275
+ * dispatch {@link FLY_REMOTE_CONTEXT_EVENT} to notify the shell. Keep these literals
1276
+ * stable; they are an integration boundary, not an implementation detail.
1277
+ */
1278
+ declare const FLY_REMOTE_CONTEXT_STORE_KEY = "__flyRemoteContext__";
1279
+ declare const FLY_REMOTE_CONTEXT_EVENT = "fly:remote-context";
1280
+ /**
1281
+ * Remote → shell route/context channel.
1282
+ *
1283
+ * Why this exists
1284
+ * ---------------
1285
+ * A federated remote (e.g. Circles) renders inside a desktop-shell window and
1286
+ * keeps its own internal Angular route (`/trends/:id`). The shell cannot see that
1287
+ * route: the remote provides {@link FlyRemoteRouter} at its **component** injector
1288
+ * (so it can read per-window `WINDOW_DATA`), which makes the route state invisible
1289
+ * to the host. Shell-side features that need "what is the user looking at right
1290
+ * now" — most importantly Category-B slash commands whose `contextBindings` include
1291
+ * a `lookup`/`route` entity id — had no way to resolve the current entity id, and
1292
+ * degraded to "ask the user".
1293
+ *
1294
+ * The channel — why `globalThis`, not the DI singleton
1295
+ * ----------------------------------------------------
1296
+ * This service is `providedIn: 'root'`, but a root instance is **NOT** reliably
1297
+ * shared across the federation boundary. The shell builds the design system from
1298
+ * workspace SOURCE while remotes consume the PUBLISHED npm package; Native
1299
+ * Federation only collapses those two physical builds into one runtime instance if
1300
+ * version negotiation succeeds perfectly (matching advertised `mappingVersion`,
1301
+ * `singleton`, compatible ranges). That negotiation has silently split before —
1302
+ * giving the shell and a remote *separate* `providedIn:'root'` instances, so a
1303
+ * value published on one was invisible to the other.
1304
+ *
1305
+ * `globalThis` is the one substrate guaranteed shared across every federated bundle
1306
+ * in the same realm (there are no iframes), so the channel stores its state there
1307
+ * (see {@link FLY_REMOTE_CONTEXT_STORE_KEY}). {@link context} / {@link param} read
1308
+ * it directly — split-proof, synchronous, no injector-token gymnastics. A per-
1309
+ * instance signal mirrors the store for reactive consumers and is re-synced from a
1310
+ * `globalThis` event whenever any copy of the service (or a remote writing the slot
1311
+ * directly) mutates it. The same pattern already backs the shell's app-launch
1312
+ * context bridge, so this is an established boundary, not a new hack.
1313
+ *
1314
+ * Contract
1315
+ * --------
1316
+ * - Remote: call {@link publish} whenever its embedded route changes, and
1317
+ * {@link clear} on teardown (window close / component destroy).
1318
+ * - Shell: call {@link context} (or {@link param}) for an app id to resolve bindings.
1319
+ *
1320
+ * Keyed by `appId` (last publisher wins) — a single live window per app is the v1
1321
+ * assumption; a windowId key is the natural extension if multi-window-per-app
1322
+ * dispatch is ever needed.
1323
+ */
1324
+ declare class FlyRemoteContextService {
1325
+ private readonly _byApp;
1326
+ /** All currently-published contexts, keyed by app id. Reactive. */
1327
+ readonly contexts: _angular_core.Signal<ReadonlyMap<string, FlyRemoteContext>>;
1328
+ constructor();
1329
+ /** Publish (or replace) the active route context for an app. */
1330
+ publish(ctx: FlyRemoteContext): void;
1331
+ /** Drop an app's context (remote unmounted / window closed). No-op if absent. */
1332
+ clear(appId: string): void;
1333
+ /** Current context for an app, or `null` when nothing is published. */
1334
+ context(appId: string): FlyRemoteContext | null;
1335
+ /**
1336
+ * Resolve a single route param for an app, e.g. `param('circles', 'id')`.
1337
+ * Returns `null` when the app has no published context or the param is absent —
1338
+ * the caller then degrades (the skill asks for the missing id).
1339
+ */
1340
+ param(appId: string, path: string): string | null;
1341
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyRemoteContextService, never>;
1342
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<FlyRemoteContextService>;
1343
+ }
1344
+
1226
1345
  /**
1227
1346
  * Minimal adapter the shell (or any host) provides so design-system services can
1228
1347
  * look up apps without depending on `AppRegistryService` directly. Keeps the
@@ -1280,54 +1399,47 @@ declare class SourceAppResolver {
1280
1399
  }
1281
1400
 
1282
1401
  /**
1283
- * Publishes a {@link WindowHelpHint} for the current window so the shell's
1284
- * titlebar Help button deeplinks the help-center reader to the article most
1285
- * relevant to where the user is.
1286
- *
1287
- * This is the **publisher twin** of the shell's `WindowHelpHintService`
1288
- * (the listener). It exists in the design system so that **any app — and
1289
- * especially a federated remote publishes hints the same way**, without
1402
+ * Per-window publisher handle returned by {@link FlyWindowHelpService.forWindow}.
1403
+ * Bound to a single window id; keep the handle and call {@link setHint} as the
1404
+ * active view changes.
1405
+ */
1406
+ interface FlyWindowHelpPublisher {
1407
+ /**
1408
+ * Set the active hint for this window (or null to clear — the shell then
1409
+ * reverts to the window's own `appId`). Safe to call repeatedly.
1410
+ */
1411
+ setHint(hint: WindowHelpHint | null): void;
1412
+ }
1413
+ /**
1414
+ * Publishes a {@link WindowHelpHint} for a window so the shell's titlebar Help
1415
+ * button deeplinks the help-center reader to the article most relevant to where
1416
+ * the user is. The **publisher twin** of the shell's `WindowHelpHintService`
1417
+ * (the listener): it exists in the design system so that **any app — in-shell
1418
+ * OS-Core app or federated remote — publishes hints the same way**, without
1290
1419
  * hand-rolling the cross-bundle CustomEvent contract.
1291
1420
  *
1292
1421
  * **Why a `window` CustomEvent and not the `WINDOW_HELP_HINT` DI token?**
1293
- * Native Federation can split an `InjectionToken` instance across the host and
1294
- * remote bundles, so a remote that injects `WINDOW_HELP_HINT` may get a
1422
+ * Native Federation can split an `InjectionToken` instance across host and
1423
+ * remote bundles, so a remote that injects `WINDOW_HELP_HINT` may receive a
1295
1424
  * different token than the one the shell provides. The string-keyed
1296
- * {@link FLY_WINDOW_HELP_HINT_EVENT} crosses bundles reliably; the shell
1297
- * mirrors it into the matching per-window hint signal. In-shell (OS-Core) apps
1298
- * may still use the DI token directly, but this service works for them too.
1299
- *
1300
- * **Imperative by design.** The service holds no signals and runs no effect —
1301
- * the *app* owns its reactivity (route + state → resolved hint) and pushes the
1302
- * result via {@link setHint}. The design system owns only the wire format. A
1303
- * hint set before {@link bindWindow} is buffered and emitted once the window id
1304
- * arrives, so call order doesn't matter.
1425
+ * {@link FLY_WINDOW_HELP_HINT_EVENT} crosses bundles reliably; the shell mirrors
1426
+ * it into the matching per-window hint signal.
1305
1427
  *
1306
- * Usage (typically from the remote root + its feature components):
1307
- * ```ts
1308
- * private help = inject(FlyWindowHelpService);
1309
- * constructor() {
1310
- * this.help.bindWindow(inject(WINDOW_DATA, { optional: true })?.id);
1311
- * effect(() => this.help.setHint(this.resolvedHint())); // app-specific
1312
- * }
1313
- * ```
1428
+ * **Why a per-window handle and not `bindWindow`/`setHint` state?**
1429
+ * This service is `providedIn: 'root'` and the design system is a shared
1430
+ * Native-Federation singleton, so a *single* instance is shared across the
1431
+ * shell and every concurrently-open window (multiple in-shell apps, multiple
1432
+ * remotes). A handle closes over its window id, so two windows never clobber a
1433
+ * shared "current window" — each handle targets only its own titlebar.
1314
1434
  */
1315
1435
  declare class FlyWindowHelpService {
1316
- private windowId;
1317
- private hint;
1318
1436
  /**
1319
- * Bind (or clear) the host window id typically once, from the app root,
1320
- * with `WINDOW_DATA.id`. Re-emits the current hint for the (new) window.
1321
- * Passing null/undefined (standalone, no shell) makes publishing a no-op.
1437
+ * Returns a publisher bound to a single window. Call once per window (e.g.
1438
+ * from the app root with `WINDOW_DATA.id`) and keep the handle. A
1439
+ * null/undefined id (standalone, no shell) yields a handle whose `setHint`
1440
+ * is a no-op.
1322
1441
  */
1323
- bindWindow(windowId: string | null | undefined): void;
1324
- /**
1325
- * Set the active hint (or null to clear — the shell then reverts to the
1326
- * window's own `appId`). Emits immediately when a window is bound; otherwise
1327
- * the value is buffered and emitted on the next {@link bindWindow}.
1328
- */
1329
- setHint(hint: WindowHelpHint | null): void;
1330
- private publish;
1442
+ forWindow(windowId: string | null | undefined): FlyWindowHelpPublisher;
1331
1443
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyWindowHelpService, never>;
1332
1444
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<FlyWindowHelpService>;
1333
1445
  }
@@ -1989,6 +2101,60 @@ interface AgentCommand {
1989
2101
  readonly executeOn: 'send';
1990
2102
  /** Optional client-side gate. Return false to hide the command in this scope. */
1991
2103
  readonly isVisible?: () => boolean;
2104
+ /**
2105
+ * Category B (PR3): when present, selecting this command invokes a
2106
+ * manifest-declared app skill instead of sending the composed text as a plain
2107
+ * message. The host dispatches a Twin message carrying
2108
+ * `system_context.slash_command_key = slashCommand.key` plus resolved context.
2109
+ * See {@link AgentCommandSlashSpec}.
2110
+ */
2111
+ readonly slashCommand?: AgentCommandSlashSpec;
2112
+ }
2113
+ /**
2114
+ * A context binding that resolves one `system_context` value for a Category B
2115
+ * command at dispatch. Pure data so it travels app-agnostically in the
2116
+ * Controller's app federation metadata (no callbacks). Discriminated by `from`:
2117
+ *
2118
+ * - `route` — value from the owning app's current route param `path`. The
2119
+ * shell cannot read a federated remote's internal route, so route
2120
+ * bindings **degrade** in v1 (the skill asks for the missing id);
2121
+ * resolved only once a remote→shell route channel exists.
2122
+ * - `lookup` — the host opens the `/lookup` entity picker for `entity` and
2123
+ * writes the picked id into `system_context[key]` (picker-during-
2124
+ * dispatch is a v1 follow-up — degrades to "ask" until then).
2125
+ * - `constant` — a literal value written into `system_context[key]`.
2126
+ */
2127
+ type AgentCommandContextBinding = {
2128
+ readonly key: string;
2129
+ readonly from: 'route';
2130
+ readonly path: string;
2131
+ } | {
2132
+ readonly key: string;
2133
+ readonly from: 'lookup';
2134
+ readonly entity: string;
2135
+ readonly exclude?: readonly string[];
2136
+ readonly promptKey?: string;
2137
+ } | {
2138
+ readonly key: string;
2139
+ readonly from: 'constant';
2140
+ readonly value: string;
2141
+ };
2142
+ /**
2143
+ * Category B slash-command dispatch metadata (PR3). Travels app-agnostically in
2144
+ * the Controller's app federation metadata and is registered by the shell's
2145
+ * `RemoteManifestService` (the same path that registers `/lookup` descriptors) —
2146
+ * remotes do NOT self-register. When an {@link AgentCommand} carries this,
2147
+ * selecting it dispatches a Twin message with `system_context.slash_command_key
2148
+ * = key`, merged with the resolved `contextBindings`.
2149
+ */
2150
+ interface AgentCommandSlashSpec {
2151
+ /** Dispatched as `system_context.slash_command_key`; matches the agents-side
2152
+ * skill's `slash_command_key` (= its manifest_key). */
2153
+ readonly key: string;
2154
+ /** Reserved: a future confirm step before dispatch (manifest `requiresConfirmation`). */
2155
+ readonly requiresConfirmation?: boolean;
2156
+ /** Parameter sources resolved into `system_context` at dispatch. */
2157
+ readonly contextBindings?: readonly AgentCommandContextBinding[];
1992
2158
  }
1993
2159
  /** What hosts pass to {@link AgentCommandRegistry.register}. Adds the scope to {@link AgentCommand}. */
1994
2160
  interface AgentCommandRegistration extends AgentCommand {
@@ -2028,6 +2194,20 @@ interface LookupSearch {
2028
2194
  readonly displayField: string;
2029
2195
  /** Optional response-item field for the chip's secondary line (status, category). */
2030
2196
  readonly secondaryField?: string;
2197
+ /**
2198
+ * Optional response-item field whose value is a *row-level* app id — i.e. the
2199
+ * app that owns this individual entity, distinct from the descriptor's
2200
+ * {@link LookupDescriptor.appId} (which only names the app exposing the
2201
+ * lookup endpoint). Help articles are the motivating case: every article is
2202
+ * exposed by `help-center`, but each one was seeded by a *source* app's
2203
+ * manifest (Circles, Trends, …). Surfacing that per-row appId lets the
2204
+ * picker render a second source-app tag so the user can tell two
2205
+ * similarly-titled rows from different source apps apart at a glance.
2206
+ *
2207
+ * Resolved through {@link LookupResult.appId} and the shell's app registry
2208
+ * with the same fallback chain used for {@link LookupDescriptor.appId}.
2209
+ */
2210
+ readonly appIdField?: string;
2031
2211
  /**
2032
2212
  * Dotted path to the results array within the response body when it is
2033
2213
  * wrapped, e.g. `items` for `{ items: [...], total }`. Omit when the response
@@ -2056,17 +2236,80 @@ interface LookupDescriptor {
2056
2236
  /** Optional PrimeIcons class for the picker row + chip. */
2057
2237
  readonly icon?: string;
2058
2238
  /**
2059
- * Route globs where this lookup is offered (matched against the shell's
2060
- * router url), e.g. `['/scenarios/*', '/trends/*']`. Omit / empty = offered
2061
- * everywhere the owning app is live.
2239
+ * Stable id of the app that exposes this lookup, e.g. `notes`, `calendar`,
2240
+ * `circles`. The picker resolves it to the app's display name via the shell's
2241
+ * app registry and renders an "exposed by …" badge so the user can see which
2242
+ * app owns the entity they're browsing (helps disambiguate when two apps
2243
+ * register a similar-sounding entity, e.g. both Tasks and Notes one day).
2244
+ *
2245
+ * Populated automatically by the shell's registration paths:
2246
+ * - `CORE_APP_LOOKUPS` stamps it per descriptor at hand-edit time.
2247
+ * - `RemoteManifestService` stamps it from the manifest entry's `id` so
2248
+ * federation remotes don't have to repeat the id in every descriptor.
2249
+ *
2250
+ * Falls back to {@link appBadgeKey} (a locale-resolved literal) when an
2251
+ * entity has no first-class home in the shell's app registry — e.g. `user`,
2252
+ * `app-agent`, `robot`. When neither is set the picker omits the badge.
2253
+ */
2254
+ readonly appId?: string;
2255
+ /**
2256
+ * Optional i18n key the picker uses for the "exposed by …" badge **when
2257
+ * {@link appId} is absent or unknown to the shell's app registry**. Lets
2258
+ * entities that don't map to a single app (Users, Robots, App Agents) still
2259
+ * surface a meaningful badge instead of silently omitting it. The picker
2260
+ * resolves the key via the shared i18n service so the badge follows the
2261
+ * user's locale.
2062
2262
  */
2063
- readonly pages?: readonly string[];
2263
+ readonly appBadgeKey?: string;
2264
+ /**
2265
+ * Advisory MCP tool-key prefixes the agent should prefer when the user
2266
+ * references this entity via `/lookup` (e.g. `['dashboard.reports']`). The
2267
+ * shell folds these into the turn's `mcp_scope` so the Twin self-serves the
2268
+ * owning app's tools — fetching and analysing the referenced entity itself —
2269
+ * instead of defaulting to a specialist-Robot consult for "tell me more"
2270
+ * style prompts. Same dot-namespaced prefix vocabulary as
2271
+ * {@link AgentMcpScope.apis}. Omit for entities with no first-class MCP tool
2272
+ * family (e.g. `user`, `robot`).
2273
+ */
2274
+ readonly mcpApis?: readonly string[];
2275
+ /**
2276
+ * Optional in-app deep-link route TEMPLATE for this entity's detail page,
2277
+ * e.g. `'/signals/{id}'`. When present, the desktop shell turns an agent's
2278
+ * inline reference to this entity — the `flyos:<appId>.<entity>/<id>`
2279
+ * anchors the agents backend emits in chat answers — into a launchable
2280
+ * link: the single `{id}` placeholder is substituted with the referenced
2281
+ * entity's id (URL-encoded) and the owning {@link appId} is launched on
2282
+ * that route via the shell launcher.
2283
+ *
2284
+ * Omit for entities with no standalone detail page — their references then
2285
+ * render as plain text (graceful degrade; never a dead link). The owning
2286
+ * app declares this once in its `lookups[]` manifest entry, so a remote
2287
+ * becomes agent-deep-linkable without any shell or design-system change.
2288
+ * Only `{id}` is substituted here — richer parameterisation rides the
2289
+ * deep-link `params` channel, not this template.
2290
+ */
2291
+ readonly deepLinkRoute?: string;
2064
2292
  /** How to fetch + map candidates. */
2065
2293
  readonly search: LookupSearch;
2066
2294
  }
2067
2295
  /** What hosts pass to the lookup registry. Adds the scope to {@link LookupDescriptor}. */
2068
2296
  interface LookupRegistration extends LookupDescriptor {
2069
- /** Same scoping semantics as {@link AgentCommandScope}. */
2297
+ /**
2298
+ * Affinity hint, NOT a visibility gate.
2299
+ *
2300
+ * Unlike {@link AgentCommandScope} — where `{appId}` HIDES a command unless the
2301
+ * app is live — lookup scope is a *priority hint*. Every registered lookup is
2302
+ * always offered in `/lookup`; when the app named by `{appId}` is in the host's
2303
+ * live app set, that lookup sorts to the **top** of the entity picker so the
2304
+ * "what am I working on right now?" entities surface first. `'global'` lookups
2305
+ * have no affinity and sort after app-affinity matches.
2306
+ *
2307
+ * Rationale: OS-core entities (note, calendar event, file) are always
2308
+ * referenceable — there's no "open the app first" condition the way there is
2309
+ * for federated remotes — so a visibility gate would just produce a confusing
2310
+ * empty state. Affinity-as-sort preserves the "Circles is open → prefer
2311
+ * scenarios/trends/signals" intuition without hiding the rest.
2312
+ */
2070
2313
  readonly scope: AgentCommandScope;
2071
2314
  }
2072
2315
  /** One resolved row the picker returns once the user selects a candidate. */
@@ -2079,6 +2322,14 @@ interface LookupResult {
2079
2322
  readonly label: string;
2080
2323
  /** Optional secondary detail (status / category). */
2081
2324
  readonly secondary?: string;
2325
+ /**
2326
+ * Row-level source app id (e.g. `circles` for an article seeded by Circles'
2327
+ * manifest). Populated when the descriptor sets {@link LookupSearch.appIdField}
2328
+ * and the response item carries a non-empty value. The picker renders it as
2329
+ * a second app tag alongside the descriptor-level badge so the user can see
2330
+ * "this Help-Center article was contributed by Circles" without opening it.
2331
+ */
2332
+ readonly appId?: string;
2082
2333
  }
2083
2334
  /** Disposable handle returned by the lookup registry. Idempotent `dispose()`. */
2084
2335
  interface LookupHandle {
@@ -2402,12 +2653,18 @@ declare class AgentCommandRegistry {
2402
2653
  /**
2403
2654
  * Singleton registry of entity lookups offered by the `/lookup` typeahead.
2404
2655
  *
2405
- * Mirrors {@link AgentCommandRegistry} exactly — same federation-singleton story
2406
- * (`sharedMappings: ['@mohamedatia/fly-design-system']`), same id-collision
2407
- * "latest wins" contract, same disposable-handle ergonomics. Federated remotes
2408
- * register their lookupable entities at boot (Circles: scenario / trend / signal)
2409
- * and dispose on window close, so the picker only ever offers entities whose app
2410
- * is currently live.
2656
+ * Mirrors {@link AgentCommandRegistry}'s federation-singleton story
2657
+ * (`sharedMappings: ['@mohamedatia/fly-design-system']`), id-collision
2658
+ * "latest wins" contract, and disposable-handle ergonomics. OS-core entities
2659
+ * (note / calendar event / file) register once at shell bootstrap via
2660
+ * `CORE_APP_LOOKUPS`; federated remotes (Circles: scenario / trend / signal)
2661
+ * register at remote-component boot and dispose on window close.
2662
+ *
2663
+ * **Scope semantics diverge from commands.** Commands HIDE when their `appId`
2664
+ * isn't in `liveAppIds`. Lookups DO NOT — they're always offered, and
2665
+ * `{appId}` is just a *priority hint* that bumps that lookup to the top of
2666
+ * the entity picker when the app is live. See {@link LookupRegistration.scope}
2667
+ * for the rationale.
2411
2668
  *
2412
2669
  * Storage is a signal store keyed on {@link LookupRegistration.entity}. Because
2413
2670
  * `entity` is the collision key, an app re-registering the same entity replaces
@@ -2418,10 +2675,18 @@ declare class AgentLookupRegistry {
2418
2675
  /** All currently-registered lookups, in insertion order. */
2419
2676
  readonly all: Signal<readonly LookupRegistration[]>;
2420
2677
  /**
2421
- * Lookups whose scope is `'global'` OR whose `scope.appId` is in the live app
2422
- * set. Recomputes when either the registry or `liveAppIds` changes — pass a
2678
+ * All registered lookups, sorted by affinity to `liveAppIds`:
2679
+ *
2680
+ * 1. Lookups whose `scope.appId` is in the live app set (in registration
2681
+ * order within that bucket).
2682
+ * 2. Then everything else — `'global'` lookups AND scoped lookups whose
2683
+ * app isn't currently live — in registration order.
2684
+ *
2685
+ * Recomputes when either the registry or `liveAppIds` changes. Pass a
2423
2686
  * `Signal<ReadonlySet<string>>` from the host's app-registry for reactive
2424
- * filtering, exactly like {@link AgentCommandRegistry.visible}.
2687
+ * re-sorting. **Always returns the full registry** — see the type doc on
2688
+ * {@link LookupRegistration.scope} for why this differs from
2689
+ * {@link AgentCommandRegistry.visible}.
2425
2690
  */
2426
2691
  visible(liveAppIds: ReadonlySet<string> | Signal<ReadonlySet<string>>): Signal<readonly LookupRegistration[]>;
2427
2692
  /**
@@ -2436,6 +2701,27 @@ declare class AgentLookupRegistry {
2436
2701
  * follow the standard "latest wins" rule and do NOT trigger rollback.
2437
2702
  */
2438
2703
  registerAll(lookups: readonly LookupRegistration[]): LookupHandle;
2704
+ /**
2705
+ * Resolve a deep-link anchor to a concrete launch target.
2706
+ *
2707
+ * `kind` is the dotted `<appId>.<entity>` token the agents backend emits
2708
+ * inside `flyos:<kind>/<id>` chat-answer anchors — the same entity-kind
2709
+ * vocabulary as drag-payload kinds and `ref` parts. Returns
2710
+ * `{ appId, route }` when a registered lookup for that `(appId, entity)`
2711
+ * pair carries a {@link LookupDescriptor.deepLinkRoute} template; `null`
2712
+ * otherwise (unknown entity, app mismatch, or no template — e.g. the
2713
+ * owning app isn't installed) so the caller renders plain text rather than
2714
+ * a dead link.
2715
+ *
2716
+ * `appId` and `entity` are both dot-free by their own grammars, so the
2717
+ * FIRST dot is the unambiguous split point; a dotless `kind` can't carry an
2718
+ * app and never resolves. The template's single `{id}` placeholder is
2719
+ * substituted URL-encoded.
2720
+ */
2721
+ resolveDeepLink(kind: string, id: string): {
2722
+ readonly appId: string;
2723
+ readonly route: string;
2724
+ } | null;
2439
2725
  /** Tear down by entity. Idempotent. */
2440
2726
  unregister(entity: string): void;
2441
2727
  /** Monotonic counter; identifies which registration call currently owns each entity. */
@@ -2982,6 +3268,6 @@ declare const AUDIENCE_ERROR_CODES: {
2982
3268
  };
2983
3269
  type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
2984
3270
 
2985
- export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DialogResult, FLYOS_LAUNCH_EVENT, FLY_LOCALE_CATALOG, FLY_REMOTE_BASE_PATH, FLY_REMOTE_ROUTES, FLY_THEME_MODE_IDS, FLY_WINDOW_HELP_HINT_EVENT, FlyAgentDraggableDirective, FlyBlockUiComponent, FlyFileUploadComponent, FlyImageUploadComponent, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySecureSrcDirective, FlyThemeService, FlyWindowHelpService, FlyosPendingLaunchesGlobalKey, I18nService, LAUNCH_CONTEXT, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowManagerService, findLocaleByDialect, findLocaleByPrefix, isRtlLocale, isRtlLocaleEntry, loadRemoteStyles, matchFlyRoutePattern, normalizeFlyTheme, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload };
2986
- export type { AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, ChartTerm, ChildWindowData, ContextMenuItem, ContextMenuSection, DesktopApp, DesktopAppKind, DialogResultWithAcknowledgement, FlyFileInfo, FlyLaunchEventDetail, FlyLocaleEntry, FlyRemoteMatch, FlyRemoteRoute, FlyThemeMode, FlyWindowHelpHintEventDetail, FlyosPendingLaunches, LaunchContext, LoadBundleOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, PresetTerm, RemoteAppDef, RoleOuLookupRow, RolePrincipal, RolesTerm, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
3271
+ export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DialogResult, FLYOS_LAUNCH_EVENT, FLY_LOCALE_CATALOG, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_THEME_MODE_IDS, FLY_WINDOW_HELP_HINT_EVENT, FlyAgentDraggableDirective, FlyBlockUiComponent, FlyFileUploadComponent, FlyImageUploadComponent, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySecureSrcDirective, FlyThemeService, FlyWindowHelpService, FlyosPendingLaunchesGlobalKey, I18nService, LAUNCH_CONTEXT, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowManagerService, findLocaleByDialect, findLocaleByPrefix, isRtlLocale, isRtlLocaleEntry, loadRemoteStyles, matchFlyRoutePattern, normalizeFlyTheme, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload };
3272
+ export type { AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, ChartTerm, ChildWindowData, ContextMenuItem, ContextMenuSection, DesktopApp, DesktopAppKind, DialogResultWithAcknowledgement, FlyFileInfo, FlyLaunchEventDetail, FlyLocaleEntry, FlyRemoteContext, FlyRemoteMatch, FlyRemoteRoute, FlyThemeMode, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyosPendingLaunches, LaunchContext, LoadBundleOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, PresetTerm, RemoteAppDef, RoleOuLookupRow, RolePrincipal, RolesTerm, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
2987
3273
  //# sourceMappingURL=mohamedatia-fly-design-system.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mohamedatia-fly-design-system.d.ts","sources":["../../../projects/design-system/src/lib/models/app.model.ts","../../../projects/design-system/src/lib/models/window.model.ts","../../../projects/design-system/src/lib/models/user.model.ts","../../../projects/design-system/src/lib/models/share-panel.model.ts","../../../projects/design-system/src/lib/models/audience.model.ts","../../../projects/design-system/src/lib/components/share-panel/share-panel.component.ts","../../../projects/design-system/src/lib/components/audience-builder/audience-builder.component.ts","../../../projects/design-system/src/lib/models/remote-app.model.ts","../../../projects/design-system/src/lib/services/auth.service.ts","../../../projects/design-system/src/lib/services/i18n.service.ts","../../../projects/design-system/src/lib/services/fly-theme.service.ts","../../../projects/design-system/src/lib/services/window-manager.service.ts","../../../projects/design-system/src/lib/services/fly-remote-router.types.ts","../../../projects/design-system/src/lib/services/fly-remote-router.service.ts","../../../projects/design-system/src/lib/services/source-app-resolver.service.ts","../../../projects/design-system/src/lib/services/fly-window-help.service.ts","../../../projects/design-system/src/lib/services/fly-remote-styles.ts","../../../projects/design-system/src/lib/components/fly-remote-router-outlet/fly-remote-router-outlet.component.ts","../../../projects/design-system/src/lib/pipes/translate.pipe.ts","../../../projects/design-system/src/lib/services/auth.service.mock.ts","../../../projects/design-system/src/lib/components/context-menu/context-menu.component.ts","../../../projects/design-system/src/lib/components/message-box/message-box.service.ts","../../../projects/design-system/src/lib/components/message-box/message-box.component.ts","../../../projects/design-system/src/lib/components/block-ui/block-ui.component.ts","../../../projects/design-system/src/lib/models/file.model.ts","../../../projects/design-system/src/lib/components/image-upload/fly-image-upload.component.ts","../../../projects/design-system/src/lib/components/file-upload/fly-file-upload.component.ts","../../../projects/design-system/src/lib/models/agent-input.model.ts","../../../projects/design-system/src/lib/services/agent-input/agent-command-registry.service.ts","../../../projects/design-system/src/lib/services/agent-input/agent-lookup-registry.service.ts","../../../projects/design-system/src/lib/services/agent-input/agent-drop-registry.service.ts","../../../projects/design-system/src/lib/models/agent-action.model.ts","../../../projects/design-system/src/lib/services/agent-input/agent-action-bus.service.ts","../../../projects/design-system/src/lib/services/agent-input/agent-flight-animator.service.ts","../../../projects/design-system/src/lib/directives/fly-agent-draggable.directive.ts","../../../projects/design-system/src/lib/directives/fly-secure-src.directive.ts","../../../projects/design-system/src/lib/utils/agent-payload-guards.ts","../../../projects/design-system/src/lib/models/fly-locale-catalog.model.ts","../../../projects/design-system/src/lib/models/fly-locale-catalog.ts","../../../projects/design-system/src/public-api.ts"],"mappings":"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","names":[]}
1
+ {"version":3,"file":"mohamedatia-fly-design-system.d.ts","sources":["../../../projects/design-system/src/lib/models/app.model.ts","../../../projects/design-system/src/lib/models/window.model.ts","../../../projects/design-system/src/lib/models/user.model.ts","../../../projects/design-system/src/lib/models/share-panel.model.ts","../../../projects/design-system/src/lib/models/audience.model.ts","../../../projects/design-system/src/lib/components/share-panel/share-panel.component.ts","../../../projects/design-system/src/lib/components/audience-builder/audience-builder.component.ts","../../../projects/design-system/src/lib/models/remote-app.model.ts","../../../projects/design-system/src/lib/services/auth.service.ts","../../../projects/design-system/src/lib/services/i18n.service.ts","../../../projects/design-system/src/lib/services/fly-theme.service.ts","../../../projects/design-system/src/lib/services/window-manager.service.ts","../../../projects/design-system/src/lib/services/fly-remote-router.types.ts","../../../projects/design-system/src/lib/services/fly-remote-router.service.ts","../../../projects/design-system/src/lib/services/fly-remote-context.service.ts","../../../projects/design-system/src/lib/services/source-app-resolver.service.ts","../../../projects/design-system/src/lib/services/fly-window-help.service.ts","../../../projects/design-system/src/lib/services/fly-remote-styles.ts","../../../projects/design-system/src/lib/components/fly-remote-router-outlet/fly-remote-router-outlet.component.ts","../../../projects/design-system/src/lib/pipes/translate.pipe.ts","../../../projects/design-system/src/lib/services/auth.service.mock.ts","../../../projects/design-system/src/lib/components/context-menu/context-menu.component.ts","../../../projects/design-system/src/lib/components/message-box/message-box.service.ts","../../../projects/design-system/src/lib/components/message-box/message-box.component.ts","../../../projects/design-system/src/lib/components/block-ui/block-ui.component.ts","../../../projects/design-system/src/lib/models/file.model.ts","../../../projects/design-system/src/lib/components/image-upload/fly-image-upload.component.ts","../../../projects/design-system/src/lib/components/file-upload/fly-file-upload.component.ts","../../../projects/design-system/src/lib/models/agent-input.model.ts","../../../projects/design-system/src/lib/services/agent-input/agent-command-registry.service.ts","../../../projects/design-system/src/lib/services/agent-input/agent-lookup-registry.service.ts","../../../projects/design-system/src/lib/services/agent-input/agent-drop-registry.service.ts","../../../projects/design-system/src/lib/models/agent-action.model.ts","../../../projects/design-system/src/lib/services/agent-input/agent-action-bus.service.ts","../../../projects/design-system/src/lib/services/agent-input/agent-flight-animator.service.ts","../../../projects/design-system/src/lib/directives/fly-agent-draggable.directive.ts","../../../projects/design-system/src/lib/directives/fly-secure-src.directive.ts","../../../projects/design-system/src/lib/utils/agent-payload-guards.ts","../../../projects/design-system/src/lib/models/fly-locale-catalog.model.ts","../../../projects/design-system/src/lib/models/fly-locale-catalog.ts","../../../projects/design-system/src/public-api.ts"],"mappings":";;;;;;;AAEA;;;AAGG;AACG,KAAM,cAAc;UAET,UAAU;;;;;;yBAMJ,OAAO,CAAC,IAAI;AACjC;;;;AACA;;;;;;;WAIO,cAAc;;AAEtB;;ACpBK,KAAM,WAAW;UAEN,eAAe;AAC9B,oBAAgB,IAAI;AACpB;AACD;UAEgB,cAAc;;;;;;WAMtB,WAAW;AAClB;;;;AACA;;;;;;;;;;;;gBASY,eAAe;;;;;;;AAO5B;AAED,cAAa,WAAW,EAAA,cAAA,CAAA,cAAA;AAExB;;;;;AAKG;UACc,aAAa;AAC5B;AACA,qBAAiB,QAAQ,CAAC,MAAM;AAChC;AACD;AAED;;;;;;;;;;;AAWG;AACH,cAAa,cAAc,EAAA,cAAA,CAAA,MAAA,CAAA,aAAA;AAE3B;;;;;AAKG;UACc,oBAAoB;;AAEnC;;AAEA,kBAAc,aAAa;AAC5B;AAED;;;;;AAKG;AACH,cAAa,kBAAkB;AAE/B;;;;;;;AAOG;AACH,cAAa,6BAA6B;AAE1C;AACM,KAAM,oBAAoB,GAAG,MAAM,SAAS,aAAa;AAE/D;;;;;;;;;;;;;;AAcG;UACc,cAAc;;AAE7B;;AAEA;AACD;AAED;;;;;;;;;;;AAWG;AACH,cAAa,gBAAgB,EAAA,cAAA,CAAA,cAAA,CAAA,cAAA;AAI7B;;;;;;;;AAQG;AACH,cAAa,0BAA0B;AAEvC;;;;AAIG;UACc,4BAA4B;;AAE3C;;AAEA,mBAAe,cAAc;AAC9B;;UC5JgB,IAAI;;AAEnB;;;;;;;;AAQA;;;;;;gBAMY,IAAI;AACjB;;ACjBD;;;;;;;;AAQG;AAEH;;;;;;;;AAQG;AACG,KAAM,cAAc,GACtB,aAAa,GACb,aAAa,GACb,WAAW,GACX,oBAAoB;UAEP,aAAa;;;;;;;;AAQ7B;UAEgB,aAAa;;;;;;;AAO7B;UAEgB,WAAW;;;;AAI1B;;AAED;UAEgB,oBAAoB;;;;;AAKpC;AAED;KACY,kBAAkB,GAAG,cAAc;AAE/C;;;;AAIG;UACc,oBAAoB;;eAExB,cAAc;;;AAGzB;;;;;AAKG;;AAEJ;UAEgB,eAAe;;;;;AAK/B;UAEgB,WAAW;;;;;AAK3B;AAED;UACiB,mBAAmB;AAClC;;AAEA;;;;;AAKG;AACH;AACD;AAED;;;AAGG;AACH,cAAa,kCAAkC;AAC/C,cAAa,+BAA+B;UAE3B,qBAAqB;;;AAGrC;;ACtHD;;;;;;;;;;;;;;AAcG;UACc,cAAc;;cAEnB,YAAY;;AAEtB,eAAW,YAAY;;cAEb,eAAe;AAC1B;AAED;AACM,KAAM,YAAY,GACpB,SAAS,GACT,SAAS,GACT,MAAM,GACN,eAAe,GACf,SAAS,GACT,UAAU;KAEF,gBAAgB,GAAG,YAAY;AAE3C;AACA,cAAa,mBAAmB;AAShC;;;AAGG;AACH,cAAa,gBAAgB;AAM7B;UACiB,SAAS;;;;AAIzB;AAED;;;;AAIG;UACc,SAAS;;;;;;AAMzB;AAED;;;;;;;;;AASG;UACc,MAAM;;;AAGrB;;;AAGG;AACH;;AAED;AAED;;;;AAIG;UACc,eAAe;;;AAG/B;AAED;;;AAGG;UACc,SAAS;;;AAGzB;AAED;;;AAGG;UACc,UAAU;;YAEjB,kBAAkB;;AAE3B;AAED;;AAEG;AACG,KAAM,kBAAkB;UAEb,eAAe;;;;;AAK/B;AAED;;;AAGG;AACH,cAAa,eAAe;;;;;;;;AClH5B;AACA,cAAa,+BAA+B,EAAE,qBAAqB;AAOnE,cAQa,mBAAoB,YAAW,MAAM;;AAEvC;;AAGA;;AAGkB,2BAAwB,UAAU,CAAC,oBAAoB;oCAEtB,UAAU,CAAC,eAAe;AAEtF;;;AAGG;AAEH,4CAAyC,UAAU,CAAC,WAAW;;AAGpC,4BAAyB,UAAU,CAAC,mBAAmB;AAElF;;;;;;;AAOG;AACM;;AAGA;AAET;;;AAGG;0BAC+C,UAAU,CAAC,MAAM;+FAGyB,UAAU;2FAGd,UAAU;AAEvE,qDAAkD,UAAU;sCAEzB,UAAU;;AAG/D;AAET;;;;AAIG;AACM;;AAGA,uBAAmB,qBAAqB;;AAGxC;AAET;;;;;;;;;;;;AAYG;wBAC0B,UAAU,CAAC,eAAe;AAE7C,WAAK,YAAA;;;AAKf,iBAAW,aAAA,CAAA,cAAA,CAAA,oBAAA;AACX,aAAO,aAAA,CAAA,cAAA;AACP;AACA;AACA;;AAGA,aAAO,aAAA,CAAA,cAAA,CAAA,eAAA;;AAEP;;AAGA;;AAEA,oBAAc,aAAA,CAAA,cAAA;AACd;;;;AAIG;AACH;AACA,mBAAa,aAAA,CAAA,cAAA,CAAA,eAAA;AACb,YAAM,aAAA,CAAA,cAAA,CAAA,WAAA;AACN,kBAAY,aAAA,CAAA,cAAA;AACZ,kBAAY,aAAA,CAAA,cAAA,CAAA,mBAAA;AACZ,wBAAkB,aAAA,CAAA,cAAA;;AAElB;;;AAIA;AAEA;AAwDA;;;;AAIG;AACH;AAaA;AAKA,wBAAoB,qBAAqB;AAKzC;AAgBA;AAkBA,wBAAoB,eAAe;AAgBnC,oBAAgB,WAAW;AAY3B;;;;AAIG;AACH,wBAAoB,eAAe;;qBAclB,eAAe;wBAYZ,oBAAoB;AAMxC,6BAAyB,oBAAoB;AAM7C,sBAAkB,oBAAoB;;AAatC,oCAAgC,cAAc;;AAU9C,wBAAoB,WAAW;AAK/B,uBAAmB,oBAAoB;oDAjV5B,mBAAmB;sDAAnB,mBAAmB;AA2W/B;AAED;;;;AAIG;UACc,eAAe;;;;;;;AAO/B;;AC/WD;KACY,kBAAkB;AAc9B;;;;;;;;;;;;;;;;AAgBG;AACH,cAoBa,wBACX,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,oBAAoB,EAAE,SAAS;;AAE/D,WAAO,cAAc;;AAGrB;AAET;;;AAGG;AACM,6BAAyB,gBAAgB;AASlD;;;AAGG;AACM;;AAGA;;;AAA0D;oCAIP,UAAU,CAAC,eAAe;AAGtF,4CAAyC,UAAU,CAAC,WAAW;AAEpC,4BAAyB,UAAU,CAAC,mBAAmB;AAElF;;;;;;;;;;;AAWG;AACM;AAET;;;;AAIG;AACM;AAET;;;;AAIG;wBAC0B,UAAU,CAAC,eAAe;;AAK7C,oBAAc,YAAA,CAAA,cAAA;AAExB;;;AAGG;AACO,oBAAc,YAAA;AAIxB;AACA;uBAEiB,aAAA,CAAA,cAAA,CAAA,YAAA;uBACA,aAAA,CAAA,cAAA,CAAA,YAAA;yBAEE,aAAA,CAAA,cAAA,CAAA,kBAAA;yBACA,aAAA,CAAA,cAAA;yBACA,aAAA,CAAA,cAAA;8BAKK,aAAA,CAAA,cAAA;gCACE,aAAA,CAAA,cAAA,CAAA,eAAA;AAC1B;sBAGgB,aAAA,CAAA,cAAA,CAAA,eAAA;8BACQ,aAAA,CAAA,cAAA;AACxB;;;AAGG;4BACmB,aAAA,CAAA,MAAA,CAAA,eAAA;qBAaP,aAAA,CAAA,cAAA,CAAA,WAAA;2BACM,aAAA,CAAA,cAAA,CAAA,mBAAA;8BACG,aAAA,CAAA,cAAA;mCACK,aAAA,CAAA,cAAA;AAC7B;;;;AAIG;+BACsB,aAAA,CAAA,MAAA,CAAA,mBAAA;AAGzB;;uBAMiB,aAAA,CAAA,cAAA;;uBAGA,aAAA,CAAA,cAAA;;;;AAajB;AA+DA,yBAAqB,aAAa;AAkBlC;AAIA;;;;AAIG;AACH;AAQA,uBAAmB,kBAAkB;AAOrC;AAOA,qBAAiB,gBAAgB;AAOjC;AAYA,mBAAe,eAAe;AAQ9B,mBAAe,eAAe;AAO9B;AAKA,eAAW,WAAW;AAQtB,wBAAoB,WAAW;AAK/B;;;;;;AAMG;AACH;AAeA;AAMA;AAUA,uBAAmB,kBAAkB;uBAWlB,kBAAkB;AASrC,yBAAqB,kBAAkB;AAQvC,0BAAsB,kBAAkB;AAQxC,uBAAmB,kBAAkB;;AAWrC,gBAAY,cAAc;AAM1B;;;;AAIG;sBACe,cAAc;iCAIH,cAAc;AAI3C;AAIA;AAOA;;;;;;;;AAQG;AACH,gBAAY,eAAe,GAAG,gBAAgB;AAI9C;AASA;AAMA;;AAUA;AAMA;AAKA;;;AAGG;AACH,wBAAoB,gBAAgB;;AAKpC,4BAAwB,kBAAkB;;AAK1C,wBAAoB,gBAAgB;AAapC;AAeA;AAkBA;AAMA;AAiBA;AAqBA;AAgCA;AAOA;AAOA;AAaA;AAUA;AAUA;;;;;;AAMG;AACH;AAMA;oDAnqBW,wBAAwB;sDAAxB,wBAAwB;AAwqBpC;;AC/wBD;;;;AAIG;UACc,YAAY;;;;;;;;;;;;AAY3B;;;;AACA;;;;;AAEA,cAAU,UAAU;;AAEpB,WAAO,OAAO,CAAC,UAAU;;AAE1B;;ACjBD;;;;;;;;;;;;;;AAcG;AACH,cACa,WAAW;;0BAGF,aAAA,CAAA,MAAA,CAAA,IAAA;0BACA,aAAA,CAAA,MAAA;8BACI,aAAA,CAAA,MAAA;AAKxB;;;;;AAKG;AACG,YAAQ,OAAO;AAErB;;;AAGG;AACH,qBAAiB,IAAI;;AAKrB;AAIA;;;AAGG;AACH;oDAnCW,WAAW;wDAAX,WAAW;AAsEvB;;AC7FD;AACA,cAAa,cAAc,EAAE,WAAW;AAExC,iBAAgB,WAAW;AA8B3B;UACiB,iBAAiB;;;;;;;aAOvB,WAAW;AACpB;;;AAGG;;AAEJ;AAED;;;;;;;AAOG;AACH,cACa,WAAW;AACtB;AAEA;AACA;AACA;AACA;AACA;AAEA;qBAYe,aAAA,CAAA,MAAA;sBACC,aAAA,CAAA,MAAA;oBACF,aAAA,CAAA,MAAA;wBACI,aAAA,CAAA,MAAA;AAElB;;AAKA,+BAA2B,MAAM;AAMjC;AAKA;;;AAGG;qBACoB,iBAAiB,GAAG,OAAO;AAqBlD;AAUA;AAMA,4BAAwB,MAAM;oDAnFnB,WAAW;wDAAX,WAAW;AA2FvB;;ACpJD;AACA,cAAa,kBAAkB;AAEzB,KAAM,YAAY,WAAW,kBAAkB;AAErD;AACA,cAAa,sBAAsB,EAAE,YAAqB;AAE1D;AACA,iBAAgB,iBAAiB,kBAAkB,YAAY;AAO/D;;;AAGG;AACH,cACa,eAAe;AAC1B;oBAEc,aAAA,CAAA,cAAA;AAEd,qBAAiB,YAAY;oDALlB,eAAe;wDAAf,eAAe;AAkB3B;;ACxCD;UACiB,iBAAiB;;;;;;;;;;;;;;;;;AAiBjC;AAED;;;;;AAKG;AACH,uBAAsB,oBAAoB;AACxC,sCAAkC,iBAAiB;AACnD;AACA;AAEA;;;AAGG;;;AAIH;AACD;AAED;;;;AAIG;AACH,cACa,8BAA+B,SAAQ,oBAAoB;AACtE,6BAAyB,iBAAiB;AAI1C;AAIA;oDATW,8BAA8B;wDAA9B,8BAA8B;AAY1C;;AC3DD;;;;;;;;;;;;AAYG;UACc,cAAc;AAC7B;AACA,wBAAoB,IAAI;AACxB,oBAAgB,QAAQ,CAAC,MAAM;AAChC;AAED;;;;AAIG;UACc,cAAc;AAC7B,oBAAgB,cAAc;AAC9B,qBAAiB,QAAQ,CAAC,MAAM;AACjC;AAED;;;;;;;;;;;;;;;;;;AAkBG;AACH,cAAa,iBAAiB,EAAA,cAAA,UAAA,cAAA;AAI9B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCG;AACH,cAAa,oBAAoB,EAAA,cAAA;AAIjC;;;;;;;AAOG;AACH,iBAAgB,oBAAoB,gDAGjC,MAAM;;ACvFT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0DG;AACH,cACa,eAAe;AAC1B;AACA;AACA;;;;AAIG;AACH;AACA;;;;;;;AAOG;AACH;AAEA;;;;;;;;;;;;AAYG;AACH;AAKA;AAEA;;;;;AAKG;kBACS,aAAA,CAAA,MAAA;AAEZ;;;AAGG;uBACc,aAAA,CAAA,MAAA;AAKjB;;;;;;;AAOG;2BACkB,aAAA,CAAA,MAAA,CAAA,cAAA;AASrB;;;;;;;;;;AAUG;qBACY,aAAA,CAAA,MAAA,CAAA,QAAA,CAAA,MAAA;AAIf;;AA8CA;;;;AAIG;AACH,oDAAgD,gBAAgB,GAAG,OAAO;AAU1E;;AAEG;AACH,wCAAoC,gBAAgB,GAAG,OAAO;AAS9D;;;;AAIG;AACH;AASA;;;;;;;;;;;AAWG;AACH;AAiBA;;;;;;;;;;;;;;;;;;;AAmBG;AACH;AAOA;;;;;;;;;;;;;;AAcG;AACH;AASA;oDA/PW,eAAe;wDAAf,eAAe;AAsQ3B;;AC/UD;;;;;;AAMG;UACc,gBAAgB;;AAE/B;;AAEA;;AAEA;;AAEA,qBAAiB,QAAQ,CAAC,MAAM;AACjC;AAED;;;;;;AAMG;AACH,cAAa,4BAA4B;AACzC,cAAa,wBAAwB;AAwBrC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CG;AACH,cACa,uBAAuB;AAClC;;uBAGiB,aAAA,CAAA,MAAA,CAAA,WAAA,SAAA,gBAAA;;;AAUjB,iBAAa,gBAAgB;;AAO7B;;AASA,4BAAwB,gBAAgB;AAIxC;;;;AAIG;;oDAtCQ,uBAAuB;wDAAvB,uBAAuB;AA2CnC;;AC1ID;;;;;;;;;;;;AAYG;UACc,cAAc;AAC7B;AACA;AACD;UAEgB,SAAS;yBACH,cAAc;AACpC;AAED,cAAa,UAAU,EAAA,cAAA,CAAA,SAAA;AAEvB;;;;;;;;;;;;;;;;;AAiBG;AACH,cACa,iBAAiB;AAC5B;;;AAWA;;;;;AAKG;;;AAUH;oDA3BW,iBAAiB;wDAAjB,iBAAiB;AA8B7B;;ACpED;;;;AAIG;UACc,sBAAsB;AACrC;;;AAGG;kBACW,cAAc;AAC7B;AAED;;;;;;;;;;;;;;;;;;;;;AAqBG;AACH,cACa,oBAAoB;AAC/B;;;;;AAKG;oDAC6C,sBAAsB;oDAP3D,oBAAoB;wDAApB,oBAAoB;AAmBhC;;AC9DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+FG;AAwJH;;;;;;;;;;;;;;;;;;;;;;;;AAwBG;AACH,iBAAsB,gBAAgB,wCAAwC,OAAO;AAmErF;;;;;;;AAOG;AACH,iBAAgB,kBAAkB;;ACvVlC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmCG;AACH,cAWa,8BAA8B;AACzC;AAEA;;;AAGG;sBACa,aAAA,CAAA,MAAA,CAAA,8BAAA,CAAA,cAAA;oDAPL,8BAA8B;sDAA9B,8BAA8B;AAQ1C;;ACxDD;;;;;;AAMG;AACH,cAKa,aAAc,YAAW,aAAa;AACjD;AAEA,oCAAgC,MAAM;oDAH3B,aAAa;kDAAb,aAAa;AAQzB;;UClBgB,cAAc;UACvB,IAAI;;AAEV;AACA;AACD;AAED,UAAU,WAAW;;UAEb,IAAI;;AAEX;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BG;AACH,cACa,eAAe;AAC1B;AAEA,iCAA6B,UAAU,QAAQ,MAAM,CAAC,WAAW;AAEjE;AAEA,8BAA0B,MAAM;0BACV,MAAM,CAAC,IAAI;0BACX,MAAM;;AAE5B,kCAA8B,MAAM;;AAEpC,2BAAuB,MAAM;AAE7B;;;AAGG;;;;2BA4BoB,cAAc;AAgB/B,YAAQ,OAAO;AAIrB;AAIA,oDAAgD,UAAU,CAAC,IAAI;AAIzD,oBAAgB,OAAO;AAI7B;;AAOA,sBAAkB,IAAI;AAItB;oDAzFW,eAAe;wDAAf,eAAe;AA6F3B;;UCtIgB,eAAe;;;;AAI/B;UAEgB,kBAAkB;;WAE1B,eAAe;AACvB;AAED,cAQa,oBAAqB,YAAW,aAAa,EAAE,SAAS;;AAGnE;AACA;AAEA,OAAC,aAAA,CAAA,WAAA;AACD,OAAC,aAAA,CAAA,WAAA;AACD,cAAQ,aAAA,CAAA,WAAA,CAAA,kBAAA;AACR,YAAM,aAAA,CAAA,gBAAA;AACN,YAAM,aAAA,CAAA,gBAAA;;;;gBAWI,aAAA,CAAA,MAAA;;;AAWP;AAEH;AAgBA;AAOA;AAMA,0BAAsB,UAAU;AAOhC;AAKA,yBAAqB,UAAU;AAO/B,qBAAiB,aAAa;AAqB9B;AAKA;AAMA;AAKA;oDAvHW,oBAAoB;sDAApB,oBAAoB;AA6HhC;;ACnJD,aAAY,iBAAiB;AAC3B;AACA;AACA;AACA;AACA;AACA;AACD;AAED,aAAY,cAAc;AACxB;AACA;AACA;AACA;AACA;AACD;AAED,aAAY,YAAY;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACD;UAEgB,iBAAiB;;;cAGtB,iBAAiB;WACpB,cAAc;AACtB;AAED;;;;;;;AAOG;UACc,4BAA4B;;;;;AAK5C;AAED;;;AAGG;AACG,UAAW,oCAAqC,SAAQ,iBAAiB;kBAC/D,4BAA4B;AAC3C;UAEgB,gBAAgB;;YAEvB,YAAY;AACpB;AACD;AAED;UACiB,+BAA+B;AAC9C,qBAAiB,YAAY;AAC7B;AACD;AAED,cACa,iBAAiB;AAC5B;sBAEgB,aAAA,CAAA,cAAA;oBACF,aAAA,CAAA,cAAA;sBACE,aAAA,CAAA,cAAA;mBACH,aAAA,CAAA,cAAA,CAAA,cAAA;sBACG,aAAA,CAAA,cAAA,CAAA,gBAAA;AAChB;;;;AAIG;2BACkB,aAAA,CAAA,cAAA,CAAA,4BAAA;AAErB;;;;;;AAMG;kCACyB,aAAA,CAAA,cAAA;;kBAId,iBAAiB,GAAG,OAAO,CAAC,YAAY;AAItD;;;;;;AAMG;8BAEQ,oCAAoC,GAC5C,OAAO,CAAC,+BAA+B;oBAS1B,YAAY;AAQ5B;AA4BA;oDApFW,iBAAiB;wDAAjB,iBAAiB;AA2H7B;;AC9LD,cAQa,mBAAoB,YAAW,aAAa;AACvD,aAAO,iBAAA;;oCAGgB,cAAA;kCACF,YAAA;;iCAGM,aAAA,CAAA,MAAA,CAAA,8BAAA,CAAA,4BAAA;AAC3B;;;AAGG;kCACyB,aAAA,CAAA,cAAA;AAC5B;;;;AAIG;8BACqB,aAAA,CAAA,MAAA;;AAMxB;AAOA;AAOA;AAKA,0BAAsB,YAAY;AAKlC,6BAAyB,KAAK;AAK9B;AAUA;AAOA;oDAvEW,mBAAmB;sDAAnB,mBAAmB;AA6E/B;;ACzFD;AACA,cAQa,mBAAmB;;AAE9B,YAAM,aAAA,CAAA,WAAA;;AAGN,gBAAU,aAAA,CAAA,WAAA;iCAEiB,aAAA,CAAA,MAAA;oDAPhB,mBAAmB;sDAAnB,mBAAmB;AAW/B;;ACvBD;;;AAGG;UACc,WAAW;;;;;;;;;;;;;;;;AAgB3B;;ACAD;;;;;;;;;;;;;;AAcG;AACH,cAgIa,uBAAuB;;;AAKlC,iBAAW,aAAA,CAAA,WAAA;AACX,kBAAY,aAAA,CAAA,WAAA;AACZ,oBAAc,aAAA,CAAA,WAAA;AACd,eAAS,aAAA,CAAA,WAAA;AACT,sBAAgB,aAAA,CAAA,WAAA;AAChB,oBAAc,aAAA,CAAA,WAAA;AAGd,cAAQ,aAAA,CAAA,gBAAA,CAAA,WAAA;AACR,aAAO,aAAA,CAAA,gBAAA;AAGP,eAAS,aAAA,CAAA,cAAA;AACT,WAAK,aAAA,CAAA,cAAA;AACL,iBAAW,aAAA,CAAA,cAAA;AACX,iBAAW,aAAA,CAAA,cAAA;AACX,eAAS,aAAA,CAAA,cAAA;AAET,eAAS,aAAA,CAAA,MAAA,CAAA,UAAA,CAAA,gBAAA;AACT,eAAS,aAAA,CAAA,MAAA,CAAA,UAAA,CAAA,gBAAA;;;;AAMT,gBAAU,aAAA,CAAA,cAAA;;AAmBV,cAAQ,aAAA,CAAA,MAAA;AAKR;AAIA,kBAAc,SAAS;AAKvB,cAAU,SAAS;AAOnB,sBAAkB,KAAK;AAOvB;AAOA;AAOA;AAgBA;AA0BA;AAaA;AAKA;oDAvJW,uBAAuB;sDAAvB,uBAAuB;AA8KnC;;AChUD,UAAU,UAAU;UACZ,IAAI;;AAEV;WACO,WAAW;;AAEnB;AAyBD;;;;;;;;;;;;;;;AAeG;AACH,cAsHa,sBAAsB;;AAIjC,cAAQ,aAAA,CAAA,WAAA;AACR,sBAAgB,aAAA,CAAA,WAAA;AAChB,YAAM,aAAA,CAAA,WAAA;AACN,eAAS,aAAA,CAAA,WAAA;AACT,sBAAgB,aAAA,CAAA,WAAA;AAChB,oBAAc,aAAA,CAAA,WAAA;;AAGd,qBAAe,aAAA,CAAA,WAAA;;AAGf,WAAK,aAAA,CAAA,WAAA,CAAA,WAAA;AAGL,kBAAY,aAAA,CAAA,gBAAA,CAAA,WAAA;AAGZ,WAAK,aAAA,CAAA,cAAA;AACL,cAAQ,aAAA,CAAA,cAAA;AACR,WAAK,aAAA,CAAA,cAAA,CAAA,UAAA;;AAGL,mBAAa,aAAA,CAAA,cAAA,CAAA,WAAA;AAEb,eAAS,aAAA,CAAA,MAAA,CAAA,UAAA,CAAA,gBAAA;;AA2BT,cAAQ,aAAA,CAAA,MAAA,CAAA,UAAA;AAER,gBAAU,aAAA,CAAA,MAAA;AAKV,eAAS,aAAA,CAAA,MAAA;AAKT;AAIA,kBAAc,SAAS;AAMvB,mBAAe,SAAS;AAKxB,cAAU,SAAS;AAQnB,uBAAmB,KAAK;AAMxB,qBAAiB,UAAU;AAQ3B,sBAAkB,WAAW;AAM7B,kBAAc,UAAU;AACxB,mBAAe,WAAW;AAC1B;AAEA;AAyBA;oDA3IW,sBAAsB;sDAAtB,sBAAsB;AA8KlC;;AClWD;;;;;;;;;;;;;;;;AAgBG;AAEH;AACA,cAAa,eAAe;AAE5B;;;;;;;;;;;AAWG;AACH,cAAa,qBAAqB;AAElC;;;;AAIG;AACH,cAAa,gCAAgC;AAI7C;;;;;AAKG;AACG,KAAM,iBAAiB;AAAgB;;AAE7C;;;;;AAKG;UACc,YAAY;;AAE3B;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;;;;;;AAMG;AACH,4BAAwB,qBAAqB;AAC9C;AAED;;;;;;;;;;;;;AAaG;AACG,KAAM,0BAA0B;AAChC;AAAsB;AAAwB;;AAE9C;AACA;AACA;AACA;AACA;;AAEA;AAAsB;AAA2B;;AAEvD;;;;;;;AAOG;UACc,qBAAqB;AACpC;AACwD;AACxD;;AAEA;;AAEA,wCAAoC,0BAA0B;AAC/D;AAED;AACM,UAAW,wBAAyB,SAAQ,YAAY;AAC5D,oBAAgB,iBAAiB;AAClC;AAED;UACiB,kBAAkB;;AAElC;AAID;;;;;;;;;;;;AAYG;UACc,YAAY;AAC3B;;;;AAIG;AACH;;AAEA;;AAEA,2BAAuB,QAAQ,CAAC,MAAM;;AAEtC;;AAEA;;AAEA;AACA;;;;;;;;;;;;AAYG;AACH;AACA;;;;AAIG;AACH;AACD;AAED;;;;;;;;AAQG;UACc,gBAAgB;AAC/B;;;;AAIG;AACH;;AAEA;;AAEA;AACA;;;;;;;;;;;;;;;AAeG;AACH;AACA;;;;;;;AAOG;AACH;AACA;;;;;;;;;AASG;AACH;AACA;;;;;;;;;;;;;;;AAeG;AACH;;AAEA,qBAAiB,YAAY;AAC9B;AAED;AACM,UAAW,kBAAmB,SAAQ,gBAAgB;AAC1D;;;;;;;;;;;;;;;AAeG;AACH,oBAAgB,iBAAiB;AAClC;AAED;UACiB,YAAY;;AAE3B;;AAEA;;AAEA;;AAEA;AACA;;;;;;AAMG;AACH;AACD;AAED;UACiB,YAAY;;AAE5B;AAID;;;;;;;;;;;;;;;;;;;;;;;;AAwBG;AACG,UAAW,gBAAgB;;AAE/B;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;AAIA;;;;;;;;AAQG;AACH;AAEA;;;;;;;;;;;;;;AAcG;AACH,6BAAyB,QAAQ,CAAC,MAAM;AAExC;;;;;;;;;;;;;AAaG;AACH,oCAAgC,uBAAuB;AAEvD;;;;;;;;;;;AAWG;AACH,wBAAoB,aAAa;AAEjC;;;;;;;;;;;;;;;;;;;;;;;;;;AA0BG;AACH;AACD;AAED;;;;;AAKG;AACG,KAAM,oBAAoB,gBAAgB,gBAAgB;AAEhE;;;;;;;;;;;;;AAaG;AACG,KAAM,uBAAuB;AAE7B;AACA;AACA;;AAGA;AACA;AACA;AACA;;AAGA;AACA;;AAEA;AACA;;AAGA;AACA;AACA;AACA;AACA;;AAGN;UACiB,aAAa;AAC5B;;;;AAIG;AACH;AACD;AAED;;;AAGG;KACS,iBAAiB;AAE7B;;;AAGG;AACG,UAAW,mBAAmB;AAClC,aAAS,gBAAgB;UACnB,iBAAiB;;AAEvB;AACD;AAED;;;;AAIG;AACG,UAAW,kBAAkB;;AAEjC;AACA;AACA;;AAEA,aAAS,gBAAgB;AAC1B;AAED;AACM,UAAW,6BAA6B;AAC5C;AACA;wBACoB,IAAI,CAAC,mBAAmB;AAC7C;AAID;;;;AAIG;UACc,kBAAkB;;AAEjC;;AAEA;;AAEA;;AAKA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;;;;AAIG;AACH;AACD;AAED,cAAa,4BAA4B,EAAE,kBAezC;AAEF;;;;;;;AAOG;AACG,KAAM,4BAA4B;AAClC;;AAEA;AACA;;AAqBA;AACA;AACA;;;ACjoBN;;;;;;;;;;;;;AAaG;AACH,cACa,oBAAoB;AAC/B;;kBAEc,MAAM,UAAU,wBAAwB;AAEtD;;;;;AAKG;wBACiB,WAAW,WAAW,MAAM,CAAC,WAAW,YAAY,MAAM,UAAU,wBAAwB;AAWhH;;;;AAIG;AACH,kBAAc,wBAAwB,GAAG,kBAAkB;AAc3D;;;;;;AAMG;AACH,+BAA2B,wBAAwB,KAAK,kBAAkB;;AAoB1E;;;;AASA;oDA7EW,oBAAoB;wDAApB,oBAAoB;AA8EhC;;AC7FD;;;;;;;;;;;;;;;;;;;AAmBG;AACH,cACa,mBAAmB;AAC9B;;kBAEc,MAAM,UAAU,kBAAkB;AAEhD;;;;;;;;;;;;;AAaG;wBAEW,WAAW,WAAW,MAAM,CAAC,WAAW,YACnD,MAAM,UAAU,kBAAkB;AAoBrC;;;;AAIG;AACH,qBAAiB,kBAAkB,GAAG,YAAY;AAmBlD;;;;AAIG;AACH,kCAA8B,kBAAkB,KAAK,YAAY;AAqBjE;;;;;;;;;;;;;;;;AAgBG;;AAIE;AAAwB;AAAwB;;AAcrD;;;;AASA;oDAtIW,mBAAmB;wDAAnB,mBAAmB;AAuI/B;;AC1JD;;;;;;;;;;;;;AAaG;AACH,cACa,iBAAiB;AAC5B;;AAEA;AAEA;;;;;;;AAOG;+BACwB,IAAI,CAAC,mBAAmB;AAQnD;;;;;;;AAOG;AACH,+BAA2B,6BAA6B,MAAM,kBAAkB;AAkBhF;;;;AAIG;qDAC8C,kBAAkB;AASnE;;;;AAIG;kCAC2B,MAAM,UAAU,kBAAkB;;AAKhE;;AAUA;oDAjFW,iBAAiB;wDAAjB,iBAAiB;AAkF7B;;ACvGD;;;;;;;;;AASG;AACG,KAAM,eAAe;AAQ3B;;;;;;;;AAQG;KACS,mBAAmB;AAEzB,UAAW,WAAW;;AAE1B,mBAAe,eAAe;AAC9B;AAC4C;AAC5C,sBAAkB,gBAAgB;AAClC;;;AAG+D;AAC/D;;AAEA,uBAAmB,mBAAmB;AACtC;AAC4E;AAC5E,0BAAsB,OAAO;AAC7B;;;AAGsD;AACtD;AACD;AAED;;;;;AAKG;AACH,cAAa,mCAAoC,SAAQ,KAAK;AAChC,uBAAU,mBAAmB;AAA7B,0BAAU,mBAAmB;AAI1D;;AC3DD;;;;;;;;;;;;;;;;;AAiBG;AACH,cACa,cAAc;AACzB;AACA;;AAEqE;AACrE,uBAAmB,UAAU,CAAC,WAAW;AAEzC;AAC0D;yBACvC,aAAA,CAAA,cAAA,CAAA,WAAA;AAEnB;;;;;;;;;;;;;;;;;AAiBG;uBACc,aAAA,CAAA,cAAA,CAAA,WAAA;AAEjB;;;;;;;;;;;;;AAaG;wBACiB,WAAW;AAiB/B;;;;;;AAMG;AACH,mBAAe,WAAW;AAM1B;;;;;;;;;;AAUG;AACH,mBAAe,WAAW;oDAtFf,cAAc;wDAAd,cAAc;AA2F1B;;AClHD;;;;;;;;;;;;;;;;;;;;;;;;;AAyBG;AACH,cACa,mBAAmB;;AAE9B;AACA;AACA;AACwE;AACxE;;AAIA;;AAEmC;AACnC,uBAAmB,WAAW;AAI9B;;;;;;;;;;;AAWG;AACH,kBAAc,OAAO;;AAAqC;oDA7B/C,mBAAmB;wDAAnB,mBAAmB;AA8F/B;;AC3GD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BG;AACH,cAOa,0BAA0B;AACrC;;;AAGG;AACH,gCAA0B,aAAA,CAAA,WAAA,CAAA,gBAAA,aAA+C,gBAAgB;AAEzF;;;;;;;AAOG;uCAC8B,aAAA,CAAA,WAAA;AAEjC;AAGA,oBAAgB,SAAS;AAmCzB;oDAvDW,0BAA0B;sDAA1B,0BAA0B;AA2DtC;;ACrGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyCG;AACH,cAIa,qBAAsB,YAAW,SAAS;AACrD;;;;AAIG;2BACkB,aAAA,CAAA,WAAA;AAErB;AACA;AACA;AAEA;;;;AAIG;;;AAmCH;AAIA;oDAvDW,qBAAqB;sDAArB,qBAAqB;AA6DjC;;AC7GD;;;;;;;;;;;;;;;;AAgBG;AAEH;;;;;;;AAOG;AACH,cAAa,yBAA0B,SAAQ,UAAU;;;AACvD;;AASD;AAiBD;AACA,iBAAgB,cAAc;AAI9B;;;;;;;;;;AAUG;AACH,iBAAgB,eAAe;AAkC/B;;;;;;;;;;;;;;;;;AAiBG;AACH,iBAAgB,oBAAoB,UACzB,gBAAgB,oBAChB,OAAO,CAAC,kBAAkB,IAClC,4BAA4B;AAgQ/B;;;;;;;;;AASG;AACH,iBAAgB,gBAAgB,aACrB,gBAAgB,cAChB,OAAO,CAAC,kBAAkB,IAClC,gBAAgB;;AClZnB;;;;;;;;;;;;;;;AAeG;UACc,cAAc;;AAE7B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACD;;AC/BD;;;;;;;;;;;;;;;AAeG;AACH,cAAa,kBAAkB,WAAW,cAAc;AAodxD;;;;;;;AAOG;AACH,iBAAgB,mBAAmB,mBAAmB,cAAc;AAMpE;;;;AAIG;AACH,iBAAgB,kBAAkB,kBAAkB,cAAc;AAMlE;;;;;;AAMG;AACH,iBAAgB,gBAAgB,QACvB,cAAc,YACX,cAAc;;;;ACtU1B;;;;AAIG;AACH,cAAa,oBAAoB;;;;;;AAM3B,KAAM,iBAAiB,WACnB,oBAAoB,eAAe,oBAAoB;;;;","names":[]}